:root {
  --lime: #cbfb07;
  --ink: #111111;
  --paper: #f3f3ec;
  --muted: #5a5a52;
  --line: rgba(17, 17, 17, 0.12);
  --line-on-ink: rgba(243, 243, 236, 0.14);
  --display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --sans: "Instrument Sans", "Segoe UI", sans-serif;
  --nav-h: 72px;
  --wrap: 1120px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--lime);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}

p {
  margin: 0;
}

button,
.btn {
  font-family: inherit;
}

::selection {
  background: var(--ink);
  color: var(--lime);
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--lime);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus {
  top: 12px;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.wrap {
  width: min(100% - 32px, var(--wrap));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  background: color-mix(in srgb, var(--lime) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.nav-links {
  display: none;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  opacity: 0.72;
}
.nav-links a:hover {
  opacity: 1;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--lime);
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--lime);
  border-radius: 1px;
}

.mobile-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 29;
  display: grid;
  gap: 8px;
  padding: 16px 24px 20px;
  background: var(--lime);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  font-weight: 600;
  padding: 8px 0;
}
.mobile-nav[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-sm {
  padding: 9px 14px;
  font-size: 0.88rem;
}
.btn-ink {
  background: var(--ink);
  color: var(--lime);
}
.btn-lime {
  background: var(--lime);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: start;
  gap: 24px;
  padding: 28px 20px 42vh;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(3.6rem, 16vw, 8.4rem);
  margin-bottom: 20px;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 42ch;
  color: var(--ink);
  opacity: 0.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ca-copy {
  font-variant-ligatures: none;
}
.ca-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.55;
}
.ca-value {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.pills li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-art {
  display: grid;
  place-items: end center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6%;
  pointer-events: none;
}

.mascot {
  width: min(92%, 400px);
  height: auto;
  animation: float 5.5s var(--ease) infinite;
  filter: drop-shadow(0 18px 0 rgba(17, 17, 17, 0.08));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.marquee {
  overflow: hidden;
  width: 100%;
  background: var(--ink);
  color: var(--lime);
  border-block: 1px solid var(--ink);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.marquee-track span + span::before {
  content: "·";
  margin-right: 40px;
  opacity: 0.45;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section[id],
#top {
  scroll-margin-top: var(--nav-h);
}

.band {
  padding: 88px 0;
}

.band-paper {
  background: var(--paper);
}
.band-lime {
  background: var(--lime);
}
.band-ink {
  background: var(--ink);
  color: var(--paper);
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.62;
}
.section-kicker.lime {
  color: var(--lime);
  opacity: 1;
}

.story h2,
.anatomy h2,
.ledger h2,
.buy h2,
.dump h2 {
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  max-width: 16ch;
  margin-bottom: 22px;
}

.story-quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.4vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 0 22px;
}
.story-body {
  max-width: 46ch;
  font-size: 1.15rem;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}
.card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 22px;
  padding: 28px 24px 32px;
}
.card-sticker {
  width: 100%;
  height: 168px;
  object-fit: contain;
  margin: 0 0 18px;
  background: var(--lime);
  border-radius: 16px;
  padding: 8px;
}
.card-num {
  display: block;
  font-family: var(--display);
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 28px;
}
.card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.card p {
  opacity: 0.78;
  max-width: 32ch;
}

.stats {
  padding: 56px 0;
  border-top: 1px solid var(--line-on-ink);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 16px;
  text-align: center;
}
.stat-value {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.05em;
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  opacity: 0.7;
  font-size: 0.92rem;
}

.lede-ink {
  max-width: 42ch;
  opacity: 0.72;
  margin-bottom: 40px;
}

.ledger-table {
  margin: 0;
  display: grid;
  border-top: 1px solid var(--line-on-ink);
}
.ledger-table > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-on-ink);
}
.ledger-table dt {
  opacity: 0.55;
  font-size: 0.92rem;
}
.ledger-table dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 22px 22px 78px;
  position: relative;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
}
.steps h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.steps p {
  color: var(--muted);
}

.buy-panel {
  margin-top: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 18px;
}
.buy-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}
.ca-full {
  display: block;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: clamp(0.82rem, 2.6vw, 1.05rem);
  color: var(--lime);
  overflow-wrap: anywhere;
}
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dump {
  overflow: hidden;
}
.dump-lede {
  margin-bottom: 36px;
}
.sticker-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 2px 12px;
}
.sticker {
  margin: 0;
  background: var(--lime);
  color: var(--ink);
  border-radius: 22px;
  padding: 10px 10px 12px;
  text-align: center;
  transform: rotate(var(--tilt, -3deg));
  transition: transform 0.25s var(--ease);
}
.sticker:nth-child(2n) {
  --tilt: 4deg;
}
.sticker:nth-child(3n) {
  --tilt: -6deg;
}
.sticker:nth-child(4n) {
  --tilt: 2deg;
}
.sticker:hover,
.sticker:focus-within {
  transform: rotate(0deg) scale(1.05);
  z-index: 2;
}
.sticker img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-inline: auto;
  background: var(--lime);
  border-radius: 14px;
}
.sticker figcaption {
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.story,
.buy,
.growing {
  position: relative;
}
.floater {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  width: min(42vw, 200px);
  height: auto;
}
.f-sit {
  display: none;
  right: -28px;
  bottom: -18px;
  transform: rotate(14deg);
}
.f-thumbs {
  left: -40px;
  bottom: 24px;
  width: min(34vw, 180px);
  transform: rotate(-18deg);
  display: none;
}

.growing {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.growing-word {
  font-family: var(--display);
  font-size: clamp(4.2rem, 16vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 8px 0 18px;
}
.growing-sub {
  max-width: 36ch;
  font-size: 1.1rem;
  opacity: 0.8;
}
.growing-mascot {
  display: none;
}

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px 0 28px;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-on-ink);
}
.footer-tag {
  margin-top: 10px;
  opacity: 0.6;
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  opacity: 0.8;
}
.footer-legal {
  padding-top: 20px;
  display: grid;
  gap: 12px;
  font-size: 0.78rem;
  opacity: 0.5;
  max-width: 72ch;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--lime);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.band-ink :focus-visible {
  outline-color: var(--lime);
}

@media (min-width: 720px) {
  .nav {
    padding: 0 24px;
  }
  .nav-links {
    display: flex;
  }
  .menu-btn,
  .mobile-nav {
    display: none !important;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .sticker-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .sticker img {
    height: 168px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .buy-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .ledger-table > div {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px 0;
  }
  .ledger-table dd {
    text-align: right;
  }
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}

@media (max-width: 719px) {
  .nav-end .btn {
    display: none;
  }
}

@media (min-width: 960px) {
  .hero {
    align-items: center;
    grid-template-columns: 1.05fr 0.95fr;
    width: min(100% - 48px, 1200px);
    margin-inline: auto;
    padding: 12px 0 24px;
    gap: 40px;
  }
  .hero-art {
    position: static;
    place-items: center;
    pointer-events: auto;
  }
  .mascot {
    width: min(100%, 520px);
  }
  .growing-inner {
    position: relative;
    z-index: 1;
    padding-right: min(38%, 420px);
  }
  .growing-mascot {
    display: block;
    position: absolute;
    right: 4%;
    bottom: 12px;
    width: min(34vw, 420px);
    height: auto;
    pointer-events: none;
    opacity: 0.95;
    transform: rotate(8deg);
  }
  .f-thumbs,
  .f-sit {
    display: block;
  }
  .f-sit {
    width: 240px;
    right: 4%;
    bottom: -28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .mascot,
  .marquee-track {
    animation: none;
  }
  .sticker:hover,
  .sticker:focus-within {
    transform: none;
  }
}
