:root {
  --ink: #090909;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --line: rgba(9, 9, 9, 0.16);
  --muted: rgba(9, 9, 9, 0.62);
  --green: #23c768;
  --green-soft: #ddffea;
  --yellow: #ffe66b;
  --shadow: 0 28px 70px rgba(9, 9, 9, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(9, 9, 9, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(35, 199, 104, 0.12), transparent 24rem),
    #fbfbf8;
  background-size: 34px 34px, 34px 34px, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--ink);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-ticker {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link,
.mini-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-link:hover,
.mini-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--green-soft);
}

.hero {
  padding: 28px 0 72px;
}

.hero-board {
  --shift-x: 0px;
  --shift-y: 0px;
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  overflow: hidden;
  display: grid;
  align-items: end;
  border: 4px solid var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.68) 42%, rgba(255, 255, 255, 0.1) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, transparent 40%);
  pointer-events: none;
}

.hero-board::after {
  content: "$WOJAKCAT";
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  z-index: 1;
  color: rgba(9, 9, 9, 0.045);
  font-size: clamp(4.8rem, 14vw, 13rem);
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(var(--shift-x), var(--shift-y)) scale(1.02);
  transition: transform 120ms ease-out;
  filter: contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(28px, 5.2vw, 70px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: "Courier New", monospace;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 12vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(9, 9, 9, 0.7);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.ghost-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  color: var(--ink);
  background: var(--green);
}

.ghost-button {
  color: var(--ink);
  background: var(--paper);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.quote-card {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(20px, 5vw, 64px);
  z-index: 2;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  border: 4px solid var(--ink);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 8px 8px 0 var(--ink);
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.7rem;
  line-height: 1.05;
}

.ticker-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.ticker-item {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px;
  border: 4px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.ticker-item span:first-child {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  font-weight: 950;
  line-height: 1;
}

.ticker-item span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 74px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.poster {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 4px solid var(--ink);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.poster img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 18px;
}

.poster-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-family: "Courier New", monospace;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
}

.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 6.5vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy {
  margin: 22px 0 0;
  color: rgba(9, 9, 9, 0.68);
  font-size: 1.04rem;
}

.board-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.board-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 4px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.board-card:nth-child(2) {
  background: var(--green-soft);
}

.board-card:nth-child(3) {
  background: var(--yellow);
}

.card-no {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-weight: 950;
}

.board-card h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.05;
}

.board-card p {
  margin: 0;
  color: rgba(9, 9, 9, 0.66);
}

.token-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 26px;
  align-items: end;
  padding: clamp(28px, 6vw, 58px);
  border: 4px solid var(--ink);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(35, 199, 104, 0.14), transparent 42%),
    var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.token-panel::before {
  content: "UP ONLY";
  position: absolute;
  right: -0.08em;
  top: -0.1em;
  color: rgba(9, 9, 9, 0.055);
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 950;
  line-height: 1;
}

.token-panel > * {
  position: relative;
}

.token-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
}

.token-panel p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(9, 9, 9, 0.68);
  font-size: 1.04rem;
}

.facts {
  padding: 22px;
  border: 4px solid var(--ink);
  border-radius: 20px;
  background: var(--soft);
  box-shadow: 6px 6px 0 var(--ink);
}

.facts dl {
  margin: 0;
}

.facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(9, 9, 9, 0.12);
}

.facts div:last-child {
  border-bottom: 0;
}

.facts dt {
  color: var(--muted);
}

.facts dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
  font-weight: 950;
}

.footer {
  padding: 34px 0 46px;
  border-top: 3px solid var(--ink);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 940px) {
  .hero-board {
    min-height: 720px;
    align-items: start;
  }

  .hero-board::before {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.7) 54%, rgba(255, 255, 255, 0.1) 100%);
  }

  .hero-content {
    padding-bottom: 220px;
  }

  .quote-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
  }

  .ticker-row,
  .split,
  .board-cards,
  .token-panel {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 16px;
  }

  .hero-board,
  .poster,
  .token-panel {
    border-radius: 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-content {
    padding: 22px;
    padding-bottom: 240px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .nav-link,
  .mini-button {
    min-height: 38px;
    padding: 0 12px;
  }
}
