/* ================================================================
   ROBIN $HOOD — The Fox That Named The Chain
   electric green #CCFF00 · eternity black #1C180D · white · cream
   Die-cut sticker energy. Saturday-morning cartoon meets degen.
   ================================================================ */

:root {
  --green: #CCFF00;
  --green-deep: #b9e800;
  --ink: #1C180D;
  --ink-deep: #14110a;
  --white: #FFFFFF;
  --cream: #f4eddc;
  --ink-dim: rgba(28, 24, 13, 0.62);
  --ink-line: rgba(28, 24, 13, 0.28);
  --cream-dim: rgba(244, 237, 220, 0.55);
  --green-line: rgba(204, 255, 0, 0.18);
  --font-display: "Grenze Gotisch", "Bricolage Grotesque", serif;
  --font-body: "Bricolage Grotesque", sans-serif;
  --font-gothic: "Grenze Gotisch", serif;
  --font-mono: "Spline Sans Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { overflow-x: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  overflow-x: hidden;
  cursor: none;
}

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

a { color: inherit; text-decoration: none; }
a, button { cursor: none; }
img, video { max-width: 100%; display: block; }

/* die-cut sticker text: thick white outline + chunky shadow */
.stick,
.hero__mega,
.chapter__title,
.community__title,
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 800;
  -webkit-text-stroke: 0.085em var(--white);
  paint-order: stroke fill;
  text-shadow: 0.045em 0.06em 0 rgba(28, 24, 13, 0.28);
  letter-spacing: 0.01em;
}

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -12%;
  width: 124%; height: 124%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1.5%, 2%); }
  50% { transform: translate(2%, -1.5%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(1.5%, 1.5%); }
}

/* ---------- cursor: flying arrow ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.05s linear;
}
.cursor span {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  transform: translate(-50%, -50%);
  transition: font-size 0.2s;
  text-shadow: 0 0 6px rgba(204, 255, 0, 0.9);
}
.cursor.is-hover span { font-size: 2.4rem; }
@media (hover: none) {
  .cursor { display: none; }
  body, a, button { cursor: auto; }
}

/* ---------- loader: fox prepping the heist ---------- */
.loader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__fox {
  width: 92px; height: 92px;
  border-radius: 26px;
  border: 4px solid var(--green);
  object-fit: cover;
  animation: loaderBounce 0.9s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
@keyframes loaderBounce {
  from { transform: translateY(0) rotate(-4deg); }
  to { transform: translateY(-16px) rotate(4deg); }
}
.loader__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--green);
  min-height: 1.4em;
  text-align: center;
  padding: 0 1.5rem;
}
.loader__bar {
  width: min(300px, 70vw);
  height: 12px;
  border: 3px solid var(--green);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(204, 255, 0, 0.1);
}
.loader__fill {
  width: 0%;
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- journey rail ---------- */
.rail {
  position: fixed;
  left: 1.3rem; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 1.6rem;
  padding: 1.1rem 0.9rem;
  background: rgba(28, 24, 13, 0.9);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.rail.is-active { opacity: 1; pointer-events: auto; }
.rail__line {
  position: absolute; left: calc(0.9rem + 8px); top: 1.4rem; bottom: 1.4rem;
  width: 2px;
  background: rgba(204, 255, 0, 0.15);
}
.rail__fill {
  width: 100%; height: 0%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(204, 255, 0, 0.7);
}
.rail__stop { position: relative; display: flex; align-items: center; z-index: 1; }
.rail__stop i {
  font-style: normal;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  font-size: 0.7rem;
  color: var(--ink);
  background: rgba(244, 237, 220, 0.25);
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.rail__stop span {
  position: absolute; left: calc(100% + 0.9rem);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--green);
  background: rgba(28, 24, 13, 0.9);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.rail__stop:hover span { opacity: 1; transform: translateX(0); }
.rail__stop.is-current i {
  background: var(--green);
  transform: scale(1.25) rotate(-45deg);
  box-shadow: 0 0 14px rgba(204, 255, 0, 0.8);
}
.rail__stop.is-current span { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .rail { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  transition: transform 0.22s cubic-bezier(0.3, 1.6, 0.5, 1), box-shadow 0.22s, background 0.22s, color 0.22s;
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--green); box-shadow: 5px 5px 0 rgba(28, 24, 13, 0.35); }
.btn--solid:hover { transform: translate(-2px, -4px) rotate(-1.5deg); box-shadow: 8px 10px 0 rgba(28, 24, 13, 0.35); }
.btn--ghost { background: var(--cream); color: var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.btn--ghost:hover { background: var(--white); transform: translate(-2px, -4px) rotate(1.5deg); box-shadow: 8px 10px 0 var(--ink); }
/* squashed organic blob — the CRAV "ORDER NOW" shape */
.btn--blob {
  font-size: 1.25rem;
  padding: 1.3rem 2.6rem;
  border-radius: 48% 52% 46% 54% / 62% 58% 42% 38%;
  border-width: 4px;
}
.btn--blob:hover { animation: blobWobble 0.5s ease-in-out; }
@keyframes blobWobble {
  0%, 100% { border-radius: 48% 52% 46% 54% / 62% 58% 42% 38%; }
  50% { border-radius: 54% 46% 52% 48% / 42% 38% 62% 58%; }
}
.btn__gmgn { width: 24px; height: 24px; }
.btn__axiom { width: 24px; height: 24px; border-radius: 7px; object-fit: cover; }
.btn__x { width: 19px; height: 19px; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 2rem;
  background: rgba(204, 255, 0, 0.92);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; }
.nav__logo {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.3, 1.6, 0.5, 1);
}
.nav__brand:hover .nav__logo { transform: rotate(-12deg) scale(1.12); }
.nav__name { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.04em; color: var(--ink); }
.nav__name em {
  font-style: normal;
  color: var(--green);
  background: var(--ink);
  padding: 0.1em 0.4em;
  border-radius: 10px;
  margin-left: 0.15em;
  display: inline-block;
  transform: rotate(-2deg);
}
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__social {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.nav__social svg { width: 17px; height: 17px; }
.nav__social:hover { background: var(--ink); color: var(--green); transform: rotate(-10deg) scale(1.08); }
.nav__buy { font-size: 0.95rem; padding: 0.6rem 1.3rem; box-shadow: 4px 4px 0 rgba(28, 24, 13, 0.35); }
.nav__buy .btn__gmgn { width: 18px; height: 18px; }
.nav__buy .btn__axiom { width: 18px; height: 18px; border-radius: 5px; }

/* ================================================================
   HERO — giant type behind the fox, CRAV-style
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 6.5rem 1.5rem 0;
  overflow: visible;
  z-index: 1;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__glow {
  position: absolute;
  width: 95vw; height: 95vw;
  max-width: 1200px; max-height: 1200px;
  top: 55%; left: 50%;
  transform: translate(-50%, -45%);
  background: radial-gradient(circle, rgba(28, 24, 13, 0.07) 0%, rgba(28, 24, 13, 0.02) 40%, transparent 70%);
}
.hero__rays {
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg at 50% 62%,
    transparent 0deg 14deg, rgba(28, 24, 13, 0.06) 14deg 18deg,
    transparent 18deg 32deg, rgba(28, 24, 13, 0.06) 32deg 36deg,
    transparent 36deg 50deg, rgba(28, 24, 13, 0.06) 50deg 54deg,
    transparent 54deg 68deg, rgba(28, 24, 13, 0.06) 68deg 72deg,
    transparent 72deg 86deg, rgba(28, 24, 13, 0.06) 86deg 90deg,
    transparent 90deg 360deg);
  will-change: transform;
}

.hero__eyebrow {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink);
}
.blink { animation: blinkPulse 1.4s ease-in-out infinite; display: inline-block; margin-right: 0.5em; }
@keyframes blinkPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }

/* the mega word — edge to edge, sits behind the fox */
.hero__mega {
  position: absolute;
  top: 24%;
  left: 0; right: 0;
  text-align: center;
  rotate: -2deg;
  z-index: 1;
  font-size: clamp(6rem, 26vw, 24rem);
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

/* die-cut sticker chips */
.sticker {
  position: absolute;
  z-index: 4;
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.05;
  pointer-events: none;
  user-select: none;
}
.sticker--robin {
  top: 17%; left: 10%;
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
  color: var(--green);
  background: var(--ink);
  border: 4px solid var(--white);
  padding: 0.35em 0.7em;
  border-radius: 18px;
  transform: rotate(-9deg);
  box-shadow: 6px 7px 0 rgba(28, 24, 13, 0.35);
  animation: stickerBob 3.6s ease-in-out infinite;
}
.sticker--est {
  top: 16%; right: 11%;
  font-size: clamp(0.95rem, 1.7vw, 1.4rem);
  color: var(--ink);
  background: var(--cream);
  border: 4px solid var(--white);
  outline: 3px solid var(--ink);
  padding: 0.75em 0.85em;
  border-radius: 50%;
  transform: rotate(10deg);
  box-shadow: 5px 6px 0 rgba(28, 24, 13, 0.3);
  animation: stickerBob 4.2s 0.5s ease-in-out infinite;
}
.sticker--oode {
  bottom: 30%; left: 7%;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.9vw, 1.6rem);
  color: var(--ink);
  background: var(--green);
  border: 3.5px solid var(--ink);
  padding: 0.6em 0.9em;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-7deg);
  box-shadow: 5px 5px 0 var(--ink);
  animation: stickerBob 3.2s 1s ease-in-out infinite;
}
.sticker--arrow1 {
  top: 42%; right: 7%;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--ink);
  opacity: 0.75;
  transform: rotate(20deg);
  animation: stickerBob 3s 0.3s ease-in-out infinite;
}
@keyframes stickerBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.sticker--wow {
  top: 8%; right: 8%;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  color: var(--green);
  background: var(--ink);
  padding: 1.2em 0.9em;
  clip-path: polygon(50% 0%, 61% 12%, 76% 6%, 79% 22%, 95% 24%, 89% 39%, 100% 50%, 89% 61%, 95% 76%, 79% 78%, 76% 94%, 61% 88%, 50% 100%, 39% 88%, 24% 94%, 21% 78%, 5% 76%, 11% 61%, 0% 50%, 11% 39%, 5% 24%, 21% 22%, 24% 6%, 39% 12%);
  transform: rotate(10deg);
  animation: stickerSpinBob 6s ease-in-out infinite;
}
@keyframes stickerSpinBob {
  0%, 100% { translate: 0 0; rotate: 10deg; }
  50% { translate: 0 -10px; rotate: -4deg; }
}

/* bottom corners — tagline left, CTAs right */
.hero__tag {
  position: absolute;
  bottom: 9%;
  left: clamp(1.5rem, 5vw, 5rem);
  max-width: 300px;
  z-index: 5;
  text-align: left;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}
.hero__tag strong { background: var(--white); padding: 0 0.25em; border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

.hero__cta {
  position: absolute;
  bottom: 9%;
  right: clamp(1.5rem, 5vw, 5rem);
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 1.1rem;
  z-index: 5;
}

/* the fox — bottom-anchored, feet under the ticker */
.hero__fox {
  position: absolute;
  bottom: clamp(-90px, -6vw, -40px);
  left: 0; right: 0;
  margin-inline: auto; /* centered without transform, so GSAP owns transforms */
  z-index: 3;
  width: clamp(300px, 36vw, 500px);
  filter: drop-shadow(0 24px 50px rgba(28, 24, 13, 0.35));
  will-change: transform;
  pointer-events: auto;
}

/* oo-de-lally click burst */
.burst {
  position: fixed;
  z-index: 9000;
  font-family: var(--font-gothic);
  font-weight: 700;
  color: var(--ink);
  background: var(--green);
  border: 3px solid var(--ink);
  border-radius: 50% 50% 50% 6px;
  padding: 0.5em 0.8em;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--ink);
}
.burst--arrow { background: none; border: none; box-shadow: none; font-size: 1.8rem; padding: 0; }

/* ================================================================
   TICKER — black band, covers fox feet
   ================================================================ */
.ticker {
  overflow: hidden;
  background: var(--ink);
  padding: 1.05rem 0;
  position: relative;
  z-index: 10;
}
.ticker__track { display: flex; width: max-content; animation: tickerScroll 30s linear infinite; }
.ticker--reverse .ticker__track { animation-direction: reverse; }
.ticker__track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--green);
  white-space: nowrap;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================================
   WAVES — section color transitions
   ================================================================ */
.wave {
  display: block;
  width: 100%;
  height: clamp(46px, 8vw, 95px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 6;
}
.wave--ink-cream {
  background-color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0,45 C180,90 360,5 720,40 C1080,75 1260,15 1440,50 L1440,90 L0,90 Z' fill='%23f4eddc'/%3E%3C/svg%3E");
}
.wave--cream-green {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C240,10 480,85 720,45 C960,5 1200,70 1440,35 L1440,90 L0,90 Z' fill='%23CCFF00'/%3E%3C/svg%3E");
}
.wave--green-ink {
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C200,85 460,10 720,45 C980,80 1240,15 1440,55 L1440,90 L0,90 Z' fill='%231C180D'/%3E%3C/svg%3E");
}

/* ================================================================
   MANIFESTO — black interlude
   ================================================================ */
.manifesto {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 4rem clamp(1.5rem, 8vw, 8rem);
  background: var(--ink);
  overflow: hidden;
}
.manifesto__text {
  max-width: 1050px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.22;
  text-align: center;
  color: var(--green);
  -webkit-text-stroke-width: 0.06em;
  -webkit-text-stroke-color: var(--ink-deep);
  text-shadow: 0.04em 0.055em 0 rgba(0, 0, 0, 0.55);
}
.manifesto__text .w { opacity: 0.1; display: inline-block; }
.manifesto__arrow {
  position: absolute;
  bottom: 8%; right: 8%;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--green);
  opacity: 0.25;
  transform: rotate(-30deg);
}

/* ================================================================
   CHAPTERS — shared
   ================================================================ */
.chapter { position: relative; padding: clamp(7rem, 13vw, 11rem) clamp(1.5rem, 7vw, 7rem); overflow: hidden; }

.chapter__head { position: relative; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.chapter__head--center { text-align: center; }
.chapter__act {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--green);
  background: var(--ink);
  border: 3px solid var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(28, 24, 13, 0.3);
}
.chapter__year {
  position: absolute;
  right: -2%; top: -25%;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: clamp(7rem, 22vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(28, 24, 13, 0.25);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.chapter__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.9rem, 7.5vw, 6rem);
  line-height: 1.02;
  color: var(--ink);
}
.chapter__title em {
  font-family: var(--font-gothic);
  font-style: normal;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow: none;
}
.chapter__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  height: 0.18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 15 2, 30 7 T 60 6 T 90 8 T 118 5' fill='none' stroke='%231C180D' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.chapter__body { position: relative; z-index: 1; max-width: 1100px; }
.chapter__lede {
  max-width: 780px;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.chapter__lede em { color: var(--ink); font-style: italic; }
.chapter__lede strong { color: var(--ink); }

.chapter__quote { margin-top: clamp(3rem, 6vw, 5rem); max-width: 820px; }
.chapter__quote p {
  font-family: var(--font-gothic);
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.chapter__quote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}

/* facts rows — tilted comic cards */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}
.fact {
  padding: 2rem 1.7rem;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1), box-shadow 0.3s;
}
.fact--tilt-l { transform: rotate(-1.6deg); }
.fact--tilt-r { transform: rotate(1.6deg); }
.fact:hover { transform: rotate(0deg) translate(-2px, -6px) scale(1.02); box-shadow: 11px 13px 0 var(--ink); }
.fact__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.7rem;
}
.fact__label { display: block; font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.45rem; }
.fact__note { display: block; font-family: var(--font-gothic); font-size: 1.05rem; line-height: 1.5; color: var(--ink-dim); }

/* chapter tints: 1973 is a cream storybook page */
.chapter--1973 { background: var(--cream); }
.chapter--1973 .fact { background: var(--white); }

/* ghost footage on the right half of the 1973 page — multiplied into the parchment,
   monochrome, barely there, feathered on every edge so it has no hard border */
.chapter__bgvid {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  opacity: 0.22;
  filter: grayscale(1) contrast(1.15);
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 60% 50%, #000 25%, rgba(0,0,0,0.55) 50%, transparent 78%);
          mask-image: radial-gradient(ellipse 62% 58% at 60% 50%, #000 25%, rgba(0,0,0,0.55) 50%, transparent 78%);
}
.chapter--1973 .chapter__inner { position: relative; }
.chapter--2013 { background: var(--green); }

/* ---------- THE LINEAGE — inspiration diagram ---------- */
.lineage {
  position: relative;
  margin: 0 0 clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2.4rem, 4.5vw, 3.4rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--ink);
  border: 4px solid var(--white);
  border-radius: 30px;
  box-shadow: 10px 10px 0 rgba(28, 24, 13, 0.35);
  transform: rotate(-0.6deg);
}
.lineage__label {
  position: absolute;
  top: -1.2rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: var(--green);
  border: 3px solid var(--ink);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  transform: rotate(2deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.lineage__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}
.lineage__node {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.lineage__node img {
  width: clamp(64px, 8vw, 100px);
  height: clamp(64px, 8vw, 100px);
  object-fit: cover;
  border-radius: 22px;
  border: 4px solid var(--white);
  background: var(--green);
  transition: transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1);
}
.lineage__node:hover img { transform: scale(1.12) rotate(-5deg); }
.lineage__node strong { font-family: var(--font-display); color: var(--green); font-size: 1.15rem; margin-top: 0.5rem; letter-spacing: 0.04em; }
.lineage__node span { color: var(--cream-dim); font-family: var(--font-gothic); font-size: 1rem; }
.lineage__node--hood img { box-shadow: 0 0 30px rgba(204, 255, 0, 0.6); }
.lineage__arrow {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--green);
  animation: arrowNudge 1.6s ease-in-out infinite;
}
@keyframes arrowNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(7px); } }

/* receipt card */
.receipt {
  max-width: 640px;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding: 2.2rem 2.4rem;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-1.2deg);
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
}
.receipt::before {
  content: "";
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 110px; height: 28px;
  background: rgba(204, 255, 0, 0.8);
  border: 1px dashed rgba(28, 24, 13, 0.4);
}
.receipt__head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.8rem;
  margin-bottom: 1.4rem;
}
.receipt__source { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; }
.receipt__stamp {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #b3261e;
  border: 2px solid #b3261e;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  transform: rotate(6deg);
}
.receipt__quote {
  font-family: var(--font-gothic);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.receipt__note { font-size: 0.95rem; line-height: 1.65; color: rgba(28, 24, 13, 0.7); margin-bottom: 1.2rem; }
.receipt__link { font-weight: 700; font-size: 0.95rem; border-bottom: 2px solid var(--ink); transition: opacity 0.2s; }
.receipt__link:hover { opacity: 0.6; }

/* ================================================================
   CHAIN — black act, horizontal timeline
   ================================================================ */
.chain { position: relative; background: var(--ink); overflow: hidden; }
.chain__pin {
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.chain__head { padding: 0 clamp(1.5rem, 7vw, 7rem); margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.chain__head .chapter__act { background: var(--green); color: var(--ink); border-color: var(--white); }
.chain__head .chapter__title { color: var(--green); text-shadow: 0.045em 0.06em 0 rgba(0, 0, 0, 0.6); }
.chain__head .chapter__title em { color: var(--green); }
.chain__head .chapter__title em::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 15 2, 30 7 T 60 6 T 90 8 T 118 5' fill='none' stroke='%23CCFF00' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.chain__hint {
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
}
.chain__track {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.5rem);
  padding: 0 clamp(1.5rem, 7vw, 7rem);
  width: max-content;
  will-change: transform;
}
.chain__panel {
  width: clamp(300px, 38vw, 520px);
  flex-shrink: 0;
  padding: clamp(2rem, 3.5vw, 3rem);
  border: 3px solid rgba(244, 237, 220, 0.35);
  border-radius: 26px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(204, 255, 0, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.02);
}
.chain__panel:nth-child(odd) { transform: rotate(0.7deg); }
.chain__panel:nth-child(even) { transform: rotate(-0.7deg); }
.chain__date {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  transform: rotate(-2deg);
}
.chain__panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.chain__panel h3 [data-counter] { color: var(--green); }
.chain__panel p { color: var(--cream-dim); line-height: 1.7; font-size: clamp(0.95rem, 1.4vw, 1.08rem); }
.chain__panel--last {
  border: 4px solid var(--green);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(204, 255, 0, 0.16), transparent 60%),
    rgba(204, 255, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.chain__reveal { font-size: clamp(1.3rem, 2.2vw, 1.7rem) !important; color: var(--cream) !important; }
.chain__reveal strong { color: var(--green); }
.chain__fox {
  width: 65%;
  margin: 1rem auto -30%;
  filter: drop-shadow(0 0 35px rgba(204, 255, 0, 0.35));
}

/* ================================================================
   TOKEN — green act
   ================================================================ */
.token {
  position: relative;
  background: var(--green);
  padding: clamp(7rem, 13vw, 11rem) clamp(1.5rem, 7vw, 7rem);
  overflow: hidden;
}
.token__inner { max-width: 1150px; margin: 0 auto; }

.tokenomics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.stat {
  padding: 2.4rem 1.6rem;
  text-align: center;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1), box-shadow 0.3s;
}
.stat--tilt-l { transform: rotate(-1.4deg); }
.stat--tilt-r { transform: rotate(1.4deg); }
.stat:hover { transform: rotate(0deg) translate(-2px, -6px) scale(1.02); box-shadow: 11px 13px 0 var(--ink); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat__num i { font-style: normal; color: var(--ink-dim); }
.stat__label { display: block; margin-top: 0.6rem; font-weight: 700; font-size: 1rem; color: var(--ink); }
.stat__note { display: block; margin-top: 0.45rem; font-family: var(--font-gothic); font-size: 1.05rem; color: var(--ink-dim); }

/* ---------- LAUNCHED ON PONS — one wide plaque instead of the stat grid ---------- */
.launchpad {
  position: relative;
  display: grid;
  grid-template-columns: auto 1.4fr 1fr;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  max-width: 1150px;
  margin: 0 auto 2.8rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3.2rem);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(-0.7deg);
  transition: transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1), box-shadow 0.3s;
}
.launchpad:hover { transform: rotate(0deg) translate(-2px, -5px); box-shadow: 13px 14px 0 var(--ink); }
.launchpad__ribbon {
  position: absolute;
  top: -1.1rem; left: 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--green);
  background: var(--ink);
  border: 3px solid var(--white);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
.launchpad__badge {
  display: grid; place-items: center;
  width: clamp(120px, 14vw, 170px);
  height: clamp(120px, 14vw, 170px);
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: inset 0 0 0 4px var(--green);
}
.launchpad__badge img { width: 62%; height: 62%; object-fit: contain; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.45)); }
.launchpad__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.launchpad__line { margin-top: 0.8rem; color: var(--ink-dim); line-height: 1.6; font-size: 1.02rem; max-width: 34ch; }
.launchpad__line strong { color: var(--ink); }
.launchpad__tax {
  text-align: center;
  padding: 1.4rem 1.2rem 1.5rem;
  border: 3px dashed var(--ink);
  border-radius: 22px;
  background: var(--cream);
  transform: rotate(1.2deg);
}
.launchpad__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.launchpad__num i { font-style: normal; color: var(--green); -webkit-text-stroke: 2px var(--ink); padding: 0 0.1em; }
.launchpad__label { display: block; margin-top: 0.5rem; font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink); }
.launchpad__note { display: block; margin-top: 0.6rem; font-family: var(--font-gothic); font-size: 1.05rem; line-height: 1.45; color: var(--ink-dim); }
.launchpad__note strong { color: var(--ink); background: var(--green); padding: 0 0.3em; border-radius: 4px; }
@media (max-width: 860px) {
  .launchpad { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .launchpad__line { max-width: none; }
  .launchpad__tax { width: 100%; }
}

.token__ca {
  display: flex; align-items: center; gap: 0.8rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 0.95rem 1.5rem;
  background: var(--white);
  border: 3px dashed var(--ink);
  border-radius: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  transition: color 0.25s, transform 0.25s, box-shadow 0.25s;
  max-width: 100%;
  box-shadow: 5px 5px 0 rgba(28, 24, 13, 0.3);
}
.token__ca:hover { color: var(--ink); transform: translate(-2px, -3px) rotate(-0.5deg); box-shadow: 7px 8px 0 rgba(28, 24, 13, 0.3); }
.token__ca-label { background: var(--ink); color: var(--green); font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 5px; flex-shrink: 0; }
.token__ca-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.token__ca-icon { width: 15px; height: 15px; flex-shrink: 0; }

.howto {
  max-width: 860px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--cream);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(0.5deg);
}
.howto__title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--ink); margin-bottom: 2rem; letter-spacing: 0.02em; }
.howto__steps { list-style: none; display: grid; gap: 1.6rem; }
.howto__steps li { display: flex; gap: 1.4rem; align-items: flex-start; }
.howto__n {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  background: var(--ink);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  flex-shrink: 0;
  transform: rotate(-3deg);
}
.howto__steps strong { display: block; font-size: 1.12rem; color: var(--ink); margin-bottom: 0.3rem; }
.howto__steps p { color: var(--ink-dim); line-height: 1.65; font-size: 0.95rem; }

/* ================================================================
   MEMES — polaroid wall on green
   ================================================================ */
.memes {
  background: var(--green);
  padding: clamp(7rem, 13vw, 11rem) clamp(1.5rem, 7vw, 7rem);
}
.memes__sub { max-width: 560px; color: var(--ink-dim); line-height: 1.7; margin-top: 1.4rem; font-size: 1.15rem; font-family: var(--font-gothic); }

.memes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.8rem;
}
.meme {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--cream);
  padding: 0.7rem 0.7rem 2.6rem;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1), box-shadow 0.3s;
}
.meme:nth-child(6n+1) { transform: rotate(-2deg); }
.meme:nth-child(6n+2) { transform: rotate(1.6deg); }
.meme:nth-child(6n+3) { transform: rotate(-1.2deg); }
.meme:nth-child(6n+4) { transform: rotate(2.2deg); }
.meme:nth-child(6n+5) { transform: rotate(-1.8deg); }
.meme:nth-child(6n+6) { transform: rotate(1.1deg); }
.meme:hover { transform: rotate(0deg) translate(-2px, -8px) scale(1.03); box-shadow: 11px 15px 0 var(--ink); z-index: 5; }
.meme::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px; height: 22px;
  background: rgba(204, 255, 0, 0.85);
  border: 1px dashed rgba(28, 24, 13, 0.35);
  z-index: 2;
}
.meme::after {
  content: "oo-de-lally ~";
  position: absolute;
  bottom: 0.55rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-gothic);
  font-size: 1rem;
  color: var(--ink-dim);
}
.meme:nth-child(3n)::after { content: "steal this ➳"; }
.meme:nth-child(3n+1)::after { content: "golly, what a day"; }
.meme > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border: 2px solid var(--ink-line);
}

.meme--video { grid-column: span 2; padding-bottom: 2.6rem; }
.meme--video::after { content: "official transmission 📺"; }
.meme--video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ink-line);
}
.meme--video figcaption {
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  border: 2px solid var(--ink);
  z-index: 2;
}
.meme__sound {
  position: absolute; bottom: 3.2rem; right: 1.2rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--green);
  font-size: 1.1rem;
  display: grid; place-items: center;
  transition: transform 0.2s;
  z-index: 2;
}
.meme__sound:hover { transform: scale(1.15) rotate(-8deg); }
.meme__pause {
  position: absolute; bottom: 3.2rem; right: 4.4rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  display: grid; place-items: center;
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
}
.meme__pause:hover { transform: scale(1.15) rotate(8deg); background: var(--white); }
.meme__pause[aria-pressed="true"] { background: var(--ink); color: var(--green); }

/* ================================================================
   COMMUNITY / FINALE — black
   ================================================================ */
.community {
  text-align: center;
  padding: clamp(6rem, 11vw, 10rem) clamp(1.5rem, 6vw, 6rem);
  background:
    radial-gradient(70% 90% at 50% 100%, rgba(204, 255, 0, 0.14), transparent 65%),
    var(--ink);
}
.community__badge {
  width: 92px; height: 92px;
  border-radius: 26px;
  border: 4px solid var(--white);
  object-fit: cover;
  margin: 0 auto 1.8rem;
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.4);
  transform: rotate(-4deg);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
.community__title {
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  color: var(--green);
  text-shadow: 0.045em 0.06em 0 rgba(0, 0, 0, 0.6);
}
.community__title em {
  font-family: var(--font-gothic);
  font-style: normal;
  font-weight: 700;
  color: var(--green);
  -webkit-text-stroke: 0;
  paint-order: normal;
  text-shadow: none;
}
.community__sub {
  margin: 1.6rem auto 2.6rem;
  max-width: 560px;
  color: var(--cream-dim);
  font-size: 1.1rem;
  line-height: 1.7;
}
.community__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; }
.community__pill {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  padding: 1.05rem 2.2rem;
  border-radius: 48% 52% 46% 54% / 62% 58% 42% 38%;
  border: 3.5px solid var(--cream);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: transform 0.25s cubic-bezier(0.3, 1.6, 0.5, 1), background 0.25s, color 0.25s, box-shadow 0.25s;
}
.community__pill:hover { animation: blobWobble 0.5s ease-in-out; }
.community__pill svg { width: 20px; height: 20px; }
.community__pill img { width: 24px; height: 24px; }
.community__pill:hover { background: var(--white); color: var(--ink); transform: translateY(-4px) rotate(-1.5deg); }
.community__pill--green { border-color: var(--green); color: var(--green); }
.community__pill--green:hover { background: var(--green); color: var(--ink); box-shadow: 0 12px 45px rgba(204, 255, 0, 0.4); }

/* ================================================================
   FOOTER — black
   ================================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--green-line);
  padding: 3rem clamp(1.5rem, 6vw, 6rem) 2.5rem;
  text-align: center;
}
.footer__top {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.footer__brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); letter-spacing: 0.04em; }
.footer__brand em { font-style: normal; color: var(--green); }
.footer__oodelally { font-family: var(--font-gothic); color: var(--cream-dim); font-size: 1.05rem; }
.footer__disclaimer {
  max-width: 720px;
  margin: 0 auto 1.4rem;
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(244, 237, 220, 0.4);
}
.footer__copy { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(244, 237, 220, 0.35); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .chapter__year { right: 0; top: -12%; font-size: clamp(6rem, 26vw, 9rem); }
  .lineage__row { gap: 0.7rem; }
  .lineage__arrow { display: none; }
  .lineage__node { flex: 1 1 40%; }
  .sticker--est { top: 12%; right: 4%; }
  .sticker--robin { top: 13%; left: 4%; }
  .sticker--arrow1 { display: none; }
}
@media (max-width: 900px) {
  /* ---- nav: one line, compact, so it never grows over the hero ---- */
  .nav { padding: 0.7rem 0.9rem; gap: 0.6rem; }
  .nav__brand { gap: 0.45rem; }
  .nav__logo { width: 36px; height: 36px; border-radius: 11px; }
  .nav__name { font-size: 1rem; white-space: nowrap; }
  .nav__actions { gap: 0.6rem; }
  .nav__social { width: 38px; height: 38px; }
  .nav__buy { font-size: 0.78rem; padding: 0.5rem 0.85rem; white-space: nowrap; }

  /* ---- hero: a single column — title, fox, copy, buttons — nothing overlaps the character ---- */
  .hero {
    display: flex; flex-direction: column; align-items: center;
    min-height: auto;
    padding: 6rem 1.2rem 2.6rem; /* clears the 66px nav even at the top of the sticker's 12px bob */
  }
  .hero__eyebrow { display: none; }
  .hero__mega {
    position: relative; top: auto; left: auto; right: auto;
    order: 1;
    margin-top: 0.4rem;
    font-size: clamp(4.4rem, 27vw, 7.2rem);
    rotate: -2deg;
  }
  .sticker--robin {
    position: relative; top: auto; left: auto;
    order: 0;
    align-self: flex-start;
    margin-left: 4%;
    font-size: 1.4rem;
  }
  .sticker--oode {
    position: relative; bottom: auto; left: auto;
    order: 2;
    align-self: flex-end;
    margin: -0.9rem 8% 0 0;
    font-size: 1rem;
  }
  .sticker--est, .sticker--arrow1 { display: none; }
  .hero__fox {
    position: relative; bottom: auto; left: auto; right: auto;
    order: 3;
    width: min(74vw, 330px);
    margin-top: -0.6rem;
  }
  .hero__tag {
    position: relative; left: auto; bottom: auto;
    order: 4;
    max-width: 34ch;
    margin: 1.1rem auto 0;
    text-align: center;
    font-size: 1rem;
  }
  .hero__cta {
    position: relative; right: auto; bottom: auto;
    order: 5;
    flex-direction: column; align-items: stretch;
    width: min(100%, 340px);
    gap: 0.75rem;
    margin: 1.2rem auto 0;
  }
  .hero__cta .btn--blob { font-size: 1.02rem; padding: 0.95rem 1.4rem; justify-content: center; }
}

@media (max-width: 720px) {
  .meme--video { grid-column: span 1; }
  .howto__steps li { gap: 1rem; }
  .chain__panel { width: 82vw; }
  .receipt { padding: 1.8rem 1.5rem; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .manifesto__text .w { opacity: 1; }
}

/* Grenze Gotisch display cut — the old face had one bold weight, so pin the heavy one everywhere it's used */
.btn, .sticker, .ticker__track span, .fact__num, .lineage__label, .lineage__node strong,
.loader__text, .nav__name, .howto__title, .community__pill { font-weight: 700; }

/* two buy buttons don't fit a phone nav — Axiom stays in the hero, loot and finale on small screens */
@media (max-width: 720px) {
  .nav__buy--axiom { display: none; }
}
