﻿:root {
  --blue: #087bd3;
  --blue-hot: #14a4ff;
  --blue-deep: #06172a;
  --blue-ink: #081424;
  --blue-card: #0b2440;
  --cream: #fff3ce;
  --white: #f8fbff;
  --muted: #d7e9fa;
  --yellow: #55f08a;
  --pink: #25c9f5;
  --green: #55f08a;
  --line: rgba(255,255,255,.13);
  --shadow: 0 28px 90px rgba(0,0,0,.38);
  --max: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  font-family: "Nunito", sans-serif;
  background: var(--blue);
}

body::before {
  content: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background: linear-gradient(90deg, rgba(255,255,255,.025), transparent 34%, rgba(255,255,255,.018));
  z-index: -2;
}

body::after {
  content: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .19;
  z-index: 20;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.12) 0 1px, transparent 1.4px),
    radial-gradient(circle at 76% 40%, rgba(0,0,0,.18) 0 1px, transparent 1.2px),
    linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.08) 49%, transparent 51%);
  background-size: 18px 18px, 23px 23px, 160px 160px;
}

main { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, video { max-width: 100%; height: auto; display: block; }

#growth,
#collection,
#ecosystem,
#roadmap,
#links,
#join {
  scroll-margin-top: 120px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  color: #081424;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  text-decoration: none;
  background: var(--green);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.page-glow {
  display: none;
  position: fixed;
  pointer-events: none;
  filter: blur(8px);
  z-index: -1;
}
.page-glow-a {
  width: 36rem; height: 36rem; border-radius: 999px;
  left: -18rem; top: 16rem;
  background: radial-gradient(circle, rgba(85,240,138,.15), transparent 68%);
}
.page-glow-b {
  width: 30rem; height: 30rem; border-radius: 999px;
  right: -14rem; top: 48rem;
  background: radial-gradient(circle, rgba(37,201,245,.16), transparent 68%);
}

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 12px 12px 12px 14px;
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid #05080d;
  border-radius: 999px;
  background: rgba(4, 12, 22, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 0 rgba(0,0,0,.28), 0 24px 58px rgba(0,0,0,.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; border-radius: 14px; object-fit: cover; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  font-family: "Fredoka", sans-serif;
  font-size: .92rem;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 12px;
  color: rgba(248,251,255,.74);
  font-weight: 900;
  font-size: .92rem;
  text-decoration: none;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.08); transform: translateY(-1px); }
.nav-stats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(8,123,211,.78), rgba(4,18,32,.82));
  box-shadow: 5px 6px 0 rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.08);
}
.nav-stat {
  min-width: 66px;
  padding: 5px 8px 6px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  display: grid;
  gap: 1px;
  text-align: center;
  background: rgba(255,255,255,.07);
}
.nav-stat strong {
  font-family: "Fredoka", sans-serif;
  font-size: .86rem;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 0 #05080d;
}
.nav-stat span {
  font-size: .56rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
}
.nav-stats:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(19,165,255,.86), rgba(4,18,32,.86));
}
.nav-cta {
  padding: 11px 16px;
  border: 2px solid #05080d;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  color: white;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 5px 6px 0 rgba(0,0,0,.28), 0 0 26px rgba(18,132,255,.28);
}

.section-shell { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: clamp(64px, 9vw, 116px) 0 70px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.eyebrow, .mini-label, .section-kicker {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  font-size: .84rem;
}
.eyebrow span {
  width: 34px; height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue-hot));
}
.hero-base-badge {
  width: fit-content;
  margin: -4px 0 16px;
  padding: 7px 10px 7px 7px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  background: rgba(248,251,255,.94);
  box-shadow: 5px 6px 0 rgba(0,0,0,.24), 0 18px 42px rgba(0,0,0,.18);
}
.hero-base-badge span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid #05080d;
  border-radius: 50%;
  color: white;
  font-size: .68rem;
  font-weight: 900;
  background: #0052ff;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.12);
}
.hero-base-badge strong {
  font-size: .96rem;
  line-height: 1;
}
.hero-base-badge small {
  color: #42556d;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1, h2, h3 {
  font-family: "Fredoka", sans-serif;
  letter-spacing: .01em;
  text-shadow: 0 3px 0 #05080d, 0 8px 0 rgba(0,0,0,.18), 0 18px 34px rgba(0,0,0,.32);
}
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.6rem, 6.5vw, 6.4rem);
  line-height: .86;
  text-wrap: balance;
  overflow-wrap: normal;
}
h1 span { display: block; }
h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: .92;
  text-wrap: balance;
}
h3 {
  margin: 0;
  font-size: 1.35rem;
  text-shadow: 0 2px 0 #05080d, 0 8px 20px rgba(0,0,0,.28);
}
p { line-height: 1.55; }
.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid #05080d;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  letter-spacing: .015em;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  box-shadow: 6px 7px 0 rgba(0,0,0,.28), 0 16px 42px rgba(18,132,255,.26), 0 0 34px rgba(18,132,255,.16);
}
.button-secondary {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  box-shadow: 6px 7px 0 rgba(0,0,0,.25), 0 16px 42px rgba(18,132,255,.22);
}
.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 3;
}
.hero::before {
  content: none;
  position: absolute;
  inset: 7% -11% 2% -11%;
  opacity: .13;
  pointer-events: none;
  background: none;
  filter: saturate(1.04) contrast(1.02);
  mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 76%, transparent 100%);
}

.hero > * { position: relative; z-index: 1; }
.hero > .hero-copy { z-index: 3; }

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.pond-bank {
  position: absolute;
  left: 23%;
  top: 54%;
  z-index: 0;
  width: min(146vw, 1320px);
  aspect-ratio: 1.6 / 1;
  border: 0;
  border-radius: 66% 34% 59% 41% / 37% 57% 43% 63%;
  clip-path: polygon(1% 49%, 8% 25%, 25% 7%, 44% 2%, 66% 9%, 88% 21%, 99% 45%, 94% 72%, 75% 91%, 52% 98%, 28% 90%, 9% 73%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 28%, rgba(218,255,118,.26), transparent 18%),
    radial-gradient(ellipse at 78% 76%, rgba(8,92,37,.24), transparent 24%),
    linear-gradient(135deg, #145f2d 0%, #36a846 34%, #6be45f 54%, #1d7436 100%);
  mask-image: radial-gradient(ellipse at 49% 52%, transparent 0 50%, black 52% 100%);
  -webkit-mask-image: radial-gradient(ellipse at 49% 52%, transparent 0 50%, black 52% 100%);
  box-shadow:
    0 34px 86px rgba(6,63,28,.26),
    inset 0 0 0 3px rgba(255,255,255,.15),
    inset 0 -28px 58px rgba(7,54,24,.28);
  transform: translate(-50%, -50%) rotate(-10deg);
  filter: saturate(1.08) contrast(1.03);
  animation: grassBank 11s ease-in-out infinite;
}
.pond-bank::before,
.pond-bank::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.pond-bank::before {
  inset: 3%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(88deg, rgba(4,54,20,.11) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(118deg, rgba(229,255,139,.1) 0 1px, transparent 1px 24px);
  opacity: .34;
  mix-blend-mode: multiply;
  mask-image: inherit;
  -webkit-mask-image: inherit;
}
.pond-bank::after {
  inset: 11%;
  border-radius: 66% 34% 59% 41% / 37% 57% 43% 63%;
  border: 3px solid rgba(5,8,13,.14);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
  opacity: .62;
}
.hero-stage::before {
  content: "";
  position: absolute;
  left: 22%;
  top: 54%;
  z-index: 1;
  width: min(134vw, 1230px);
  aspect-ratio: 1.58 / 1;
  border-radius: 66% 31% 58% 42% / 38% 56% 40% 62%;
  clip-path: polygon(1% 49%, 8% 25%, 25% 7%, 44% 2%, 66% 9%, 88% 21%, 99% 45%, 94% 72%, 75% 91%, 52% 98%, 28% 90%, 9% 73%);
  background:
    radial-gradient(ellipse at 31% 29%, rgba(255,255,255,.5), transparent 10%),
    radial-gradient(ellipse at 63% 72%, rgba(85,240,138,.24), transparent 24%),
    radial-gradient(ellipse at 18% 58%, rgba(4,18,32,.42), transparent 34%),
    repeating-radial-gradient(ellipse at 48% 53%, rgba(255,255,255,.12) 0 1px, transparent 1px 58px),
    linear-gradient(135deg, #064a77 0%, #0aa9dc 38%, #15c7e8 58%, #05527f 100%);
  border: 2px solid rgba(5,8,13,.24);
  box-shadow:
    0 34px 86px rgba(0,0,0,.24),
    inset 0 0 0 3px rgba(255,255,255,.16),
    inset 0 16px 38px rgba(255,255,255,.16),
    inset 0 -42px 86px rgba(2,20,40,.38);
  transform: translate(-50%, -50%) rotate(-11deg) scale(1);
  filter: saturate(1.08);
  animation: waterDisc 9s ease-in-out infinite;
}
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 22%;
  top: 54%;
  width: min(124vw, 1148px);
  aspect-ratio: 1.58 / 1;
  border-radius: 65% 35% 56% 44% / 36% 58% 40% 64%;
  clip-path: polygon(2% 50%, 10% 26%, 26% 10%, 46% 5%, 65% 11%, 87% 22%, 97% 45%, 92% 70%, 74% 87%, 52% 95%, 30% 87%, 10% 71%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 48% 49%, transparent 0 35%, rgba(255,255,255,.14) 36% 36.4%, transparent 37.5%),
    radial-gradient(ellipse at 45% 54%, transparent 0 51%, rgba(85,240,138,.16) 52% 52.4%, transparent 53.5%),
    linear-gradient(112deg, transparent 24%, rgba(255,255,255,.12) 43%, transparent 60%);
  opacity: .42;
  transform: translate(-50%, -50%) rotate(-13deg);
  animation: waterRipples 4.8s ease-in-out infinite;
}
.pond-life {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.pond-life::before {
  content: "";
  position: absolute;
  left: -24%;
  top: 33%;
  width: min(86vw, 820px);
  aspect-ratio: 1.8 / 1;
  border-radius: 62% 38% 68% 32% / 42% 58% 38% 62%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 34% 38%, rgba(255,255,255,.24), transparent 19%),
    radial-gradient(ellipse at 69% 62%, rgba(85,240,138,.18), transparent 22%),
    linear-gradient(100deg, transparent 0 24%, rgba(255,255,255,.13) 38%, transparent 56%);
  opacity: .38;
  mix-blend-mode: screen;
  transform: rotate(-8deg);
}
.pond-emoji {
  position: absolute;
  display: block;
  line-height: 1;
  opacity: .78;
  filter: saturate(1.22) drop-shadow(0 8px 12px rgba(0,0,0,.2));
  transform: translate3d(0, 0, 0);
  animation: pondSwim 12s ease-in-out infinite;
}
.pond-emoji-one {
  left: -17%;
  top: 34%;
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  animation-duration: 13s;
}
.pond-emoji-two {
  left: 2%;
  top: 18%;
  font-size: clamp(1rem, 1.8vw, 1.7rem);
  animation-delay: -3s;
  animation-duration: 10s;
}
.pond-emoji-three {
  left: -23%;
  bottom: 17%;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  opacity: .58;
  animation-delay: -6s;
  animation-duration: 15s;
}
.pond-emoji-four {
  left: 37%;
  bottom: 4%;
  font-size: clamp(.95rem, 1.7vw, 1.55rem);
  opacity: .64;
  animation-name: pondDriftReverse;
  animation-delay: -4s;
  animation-duration: 11s;
}
.pond-emoji-five {
  left: 68%;
  top: 17%;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  opacity: .58;
  animation-delay: -8s;
  animation-duration: 16s;
}
.pond-emoji-six {
  right: 2%;
  bottom: 11%;
  font-size: clamp(1.55rem, 3.2vw, 3rem);
  opacity: .36;
  animation-name: pondDriftReverse;
  animation-delay: -2s;
  animation-duration: 18s;
}
.pond-emoji-seven {
  right: 41%;
  top: 19%;
  font-size: clamp(1rem, 2vw, 1.85rem);
  opacity: .58;
  animation-delay: -10s;
  animation-duration: 12s;
}
.hero-video-wrap {
  position: relative;
  z-index: 4;
  width: min(58vw, 700px);
  aspect-ratio: 4 / 3;
  animation: floatHero 6s ease-in-out infinite;
}
.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid #05080d;
  border-radius: 44px;
  box-shadow: 10px 12px 0 rgba(0,0,0,.28), 0 36px 85px rgba(0,0,0,.45);
  background: linear-gradient(135deg, #0a8be8, #0bd2d2);
}
.hero-fisher {
  position: absolute;
  z-index: 3;
  width: clamp(54px, 7.2vw, 94px);
  height: auto;
  left: 7%;
  top: -16%;
  pointer-events: none;
  filter: drop-shadow(5px 8px 0 rgba(0,0,0,.28)) drop-shadow(0 18px 22px rgba(0,0,0,.24));
  transform: scaleX(-1) rotate(-2deg);
  transform-origin: 28% 78%;
  animation: fisherBob 4.8s ease-in-out infinite;
}
.fishdex-card {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 12%;
  width: min(34vw, 238px);
  padding: 14px 16px;
  border: 2px solid #05080d;
  border-radius: 22px 8px 22px 8px;
  color: white;
  background:
    radial-gradient(circle at 88% 16%, rgba(85,240,138,.28), transparent 4.8rem),
    linear-gradient(135deg, rgba(4,18,32,.86), rgba(8,123,211,.82));
  box-shadow: 7px 8px 0 rgba(0,0,0,.28), 0 18px 44px rgba(0,0,0,.26);
  transform: rotate(2deg);
  animation: fishdexBlink 5.4s ease-in-out infinite;
}
.fishdex-card span,
.fishdex-card small {
  display: block;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fishdex-card span {
  font-family: "Fredoka", sans-serif;
  font-size: .72rem;
  color: var(--green);
}
.fishdex-card strong {
  display: block;
  margin: 4px 0 3px;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.35rem);
  line-height: 1;
  text-shadow: 0 2px 0 #05080d;
}
.fishdex-card small {
  font-size: .7rem;
  color: rgba(255,255,255,.84);
}
.hero-youkie {
  position: relative;
  z-index: 2;
  width: min(74vw, 460px);
  border-radius: 44px;
  object-fit: cover;
  box-shadow: 0 36px 85px rgba(0,0,0,.45);
  animation: floatHero 6s ease-in-out infinite;
}
.mascot-stack {
  position: relative;
  z-index: 2;
  width: min(58vw, 720px);
  height: min(58vw, 610px);
  min-height: 520px;
  animation: floatHero 6s ease-in-out infinite;
}
.mascot-card {
  position: absolute;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 34px 80px rgba(0,0,0,.42);
  border: 2px solid #05080d;
}
.mascot-card-black {
  width: 56%;
  right: 4%;
  top: 2%;
  z-index: 3;
  transform: rotate(3deg);
}
.mascot-card-white {
  width: 54%;
  left: 3%;
  bottom: 3%;
  z-index: 2;
  transform: rotate(-5deg);
}
.mascot-card-blue {
  width: 43%;
  left: 22%;
  top: 0;
  z-index: 1;
  transform: rotate(-2deg);
  opacity: .96;
}
.hero-orbit {
  display: none;
  position: absolute;
  border: 1px solid rgba(5,8,13,.34);
  border-radius: 57% 43% 61% 39% / 47% 55% 45% 53%;
  z-index: 1;
}
.orbit-one { width: 108%; height: 72%; transform: rotate(-13deg); }
.orbit-two { width: 84%; height: 112%; transform: rotate(20deg); }
.hero-ticket {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 2px solid rgba(0,0,0,.55);
  border-radius: 15px;
  color: #141414;
  background: white;
  box-shadow: 6px 7px 0 rgba(0,0,0,.3);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  transform: rotate(-5deg);
}
.ticket-a { top: 15%; left: 2%; background: var(--blue-hot); color: white; }
.ticket-b { right: 0; top: 47%; background: var(--green); color: #06172a; }
.ticket-c { bottom: 11%; left: 10%; background: white; color: #06172a; }

.statement-band {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 32px), 1500px);
  margin: 0 auto 90px;
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: end;
  border: 2px solid #05080d;
  background:
    linear-gradient(90deg, rgba(8,20,36,.9), rgba(8,20,36,.72)),
    url("assets/storybook-clouds.jpg") center 58%/cover no-repeat;
  box-shadow: 12px 14px 0 rgba(0,0,0,.18), 0 28px 76px rgba(0,0,0,.22);
}
.statement-band::after {
  content: "";
  position: absolute;
  left: clamp(22px, 7vw, 88px);
  right: clamp(22px, 7vw, 88px);
  bottom: 18px;
  height: 2px;
  opacity: .5;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transform: rotate(-.4deg);
}
.statement-band p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}

.section-kicker { margin-bottom: 18px; }
.collab-section { padding: 22px 0 100px; }
.collab-layout {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 28px;
  align-items: stretch;
}
.collab-main {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px 12px 34px 12px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, rgba(13,99,191,.82), rgba(8,20,36,.86)),
    url("assets/storybook-clouds.jpg") center/cover no-repeat;
  border: 2px solid #05080d;
  box-shadow: 12px 14px 0 rgba(0,0,0,.26), var(--shadow);
}
.collab-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px 8px 26px 8px;
  pointer-events: none;
}
.collab-main::after {
  content: "";
  position: absolute;
  inset: auto -36px -72px auto;
  width: 210px; height: 210px;
  background: url("assets/youkie-logo-white.jpg") center/contain no-repeat;
  opacity: .2;
  transform: rotate(-16deg);
}
.economy-terminal {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 14px;
  border: 2px solid #05080d;
  border-radius: 24px 8px 24px 8px;
  background:
    linear-gradient(180deg, rgba(3,12,24,.88), rgba(6,23,42,.78)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 8px);
  box-shadow: 8px 10px 0 rgba(0,0,0,.24), inset 0 0 0 1px rgba(85,240,138,.12);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--green);
  font-family: "Fredoka", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.terminal-bar span {
  width: 9px;
  height: 9px;
  border: 1px solid #05080d;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 2px 2px 0 rgba(0,0,0,.22);
}
.terminal-bar span:nth-child(2) { background: var(--blue-hot); }
.terminal-bar span:nth-child(3) { background: white; }
.terminal-bar strong { margin-left: auto; }
.economy-terminal ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}
.economy-terminal li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.25;
  animation: terminalPulse 6s ease-in-out infinite;
}
.economy-terminal li:nth-child(2) { animation-delay: -1.3s; }
.economy-terminal li:nth-child(3) { animation-delay: -2.7s; }
.economy-terminal li:nth-child(4) { animation-delay: -4s; }
.economy-terminal li span {
  min-width: 56px;
  padding: 3px 7px;
  border: 1px solid rgba(5,8,13,.82);
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: .72rem;
  text-align: center;
  background: var(--green);
  box-shadow: 3px 4px 0 rgba(0,0,0,.22);
}
.builder-terminal {
  transform: none;
}
.collab-main p, .ecosystem-head p, .collection-copy p, .roadmap-copy p, .links-copy p, .final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--yellow);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.collab-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}
.collab-stack article {
  padding: 24px;
  min-height: 150px;
  border-left: 5px solid var(--blue-hot);
  background: linear-gradient(90deg, rgba(255,255,255,.085), rgba(255,255,255,.028));
  border-top: 2px solid #05080d;
  border-right: 2px solid #05080d;
  border-bottom: 2px solid #05080d;
  box-shadow: 8px 10px 0 rgba(0,0,0,.18), 0 18px 55px rgba(0,0,0,.16);
}
.collab-stack article:nth-child(2) { border-left-color: var(--green); transform: translateX(26px); }
.collab-stack article:nth-child(3) { border-left-color: var(--yellow); }
.collab-stack span { color: var(--yellow); font-family: "Fredoka", sans-serif; font-weight: 700; }
.collab-stack p {
  margin-bottom: 0;
  color: var(--muted);
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.access-unlocks {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 2px solid #05080d;
  border-radius: 34px 12px 34px 12px;
  background:
    radial-gradient(circle at 14% 18%, rgba(85,240,138,.2), transparent 10rem),
    radial-gradient(circle at 86% 72%, rgba(19,165,255,.18), transparent 12rem),
    linear-gradient(145deg, rgba(4,18,32,.84), rgba(8,123,211,.3));
  box-shadow: 12px 14px 0 rgba(0,0,0,.2), 0 28px 78px rgba(0,0,0,.26);
  overflow: hidden;
}
.access-unlocks::before {
  content: "HOLDER ACCESS";
  position: absolute;
  right: 18px;
  top: 12px;
  color: rgba(255,255,255,.07);
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: .04em;
  pointer-events: none;
}
.access-unlocks article {
  position: relative;
  min-height: 142px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 2px solid #05080d;
  border-radius: 24px 8px 24px 8px;
  color: #06172a;
  background:
    radial-gradient(circle at 88% 16%, rgba(85,240,138,.24), transparent 4.8rem),
    linear-gradient(145deg, rgba(248,251,255,.96), rgba(222,243,255,.94));
  box-shadow: 6px 7px 0 rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.18);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.access-unlocks article:nth-child(3),
.access-unlocks article:nth-child(6) {
  background:
    radial-gradient(circle at 88% 16%, rgba(255,255,255,.32), transparent 4.8rem),
    linear-gradient(145deg, #55f08a, #d7ffe6);
}
.access-unlocks article:nth-child(4),
.access-unlocks article:nth-child(5) {
  color: white;
  background:
    radial-gradient(circle at 88% 16%, rgba(85,240,138,.2), transparent 4.8rem),
    linear-gradient(145deg, rgba(7,17,31,.96), rgba(10,86,148,.9));
}
.access-unlocks article:hover {
  transform: translate(-3px, -5px);
  box-shadow: 10px 11px 0 rgba(0,0,0,.24), inset 0 0 0 1px rgba(255,255,255,.18);
}
.access-unlock-feature {
  grid-column: 1 / -1;
  min-height: 150px;
  padding: 22px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(85,240,138,.28), transparent 8rem),
    linear-gradient(135deg, #06172a, #087bd3) !important;
}
.access-unlocks article > span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #05080d;
  border-radius: 14px;
  background: var(--green);
  box-shadow: 4px 5px 0 rgba(0,0,0,.24);
}
.access-unlocks article:last-child {
  grid-column: 1 / -1;
  min-height: 112px;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon copy";
  column-gap: 14px;
  align-content: center;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.26), transparent 6rem),
    linear-gradient(145deg, #55f08a, #d9ffe7);
}
.access-unlocks article:last-child > span { grid-area: icon; }
.access-unlocks article:last-child h3 { grid-area: title; }
.access-unlocks article:last-child p { grid-area: copy; }
.access-unlocks h3 {
  max-width: 14ch;
  font-size: clamp(1.12rem, 1.45vw, 1.38rem);
  line-height: .96;
  text-shadow: none;
}
.access-unlock-feature h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  color: white;
  text-shadow: 0 3px 0 rgba(5,8,13,.72), 0 10px 24px rgba(0,0,0,.24);
}
.access-unlocks p {
  margin: 0;
  color: #253850;
  font-weight: 850;
  line-height: 1.42;
  text-shadow: none;
}
.access-unlocks article:nth-child(4) p,
.access-unlocks article:nth-child(5) p,
.access-unlock-feature p {
  color: rgba(255,255,255,.86);
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.collection-section {
  width: min(calc(100% - 32px), 1500px);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}
.collection-copy {
  padding: clamp(28px, 4vw, 50px);
  border-radius: 34px 8px 34px 8px;
  background:
    linear-gradient(135deg, rgba(249,255,241,.94) 0%, rgba(220,255,248,.9) 48%, rgba(219,239,255,.92) 100%),
    url("assets/storybook-clouds.jpg") 58% center/cover no-repeat;
  color: #111827;
  border: 2px solid #05080d;
  box-shadow: 12px 14px 0 rgba(18,132,255,.22), 0 28px 88px rgba(0,0,0,.36);
}
.collection-copy h2,
.collection-copy p {
  text-shadow: none;
}
.collection-copy p { color: #253850; }
.collection-art img,
.collection-video {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover;
  border-radius: 8px 44px 8px 44px;
  box-shadow: var(--shadow);
}
.collection-video { display: block; background: #06172a; }
.collection-card-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 3.2vw, 42px);
  overflow: hidden;
  border-radius: 8px 44px 8px 44px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(5,62,105,.9), rgba(6,23,42,.94)),
    url("assets/storybook-clouds.jpg") center/cover no-repeat;
  border: 2px solid #05080d;
  box-shadow: 14px 16px 0 rgba(85,240,138,.18), 0 32px 92px rgba(0,0,0,.42);
}
.collection-card-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px 12px 34px 12px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.12), rgba(255,255,255,.025) 44%, rgba(85,240,138,.1)),
    linear-gradient(180deg, transparent 0 62%, rgba(85,240,138,.08) 62% 100%);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 22px 68px rgba(0,0,0,.16);
}
.access-card-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-areas:
    "lead docs"
    "lead prompt"
    "identity economy"
    "culture culture";
  gap: 13px;
}
.access-card {
  min-height: 118px;
  padding: 18px;
  border: 2px solid #05080d;
  border-radius: 24px 10px 24px 10px;
  background: rgba(255,255,255,.95);
  color: #06172a;
  box-shadow: 7px 8px 0 rgba(4,10,18,.24), 0 18px 42px rgba(0,0,0,.24);
  transform: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.access-card:hover {
  transform: translate(-3px, -5px);
  box-shadow: 11px 12px 0 rgba(4,10,18,.25), 0 24px 56px rgba(0,0,0,.28);
}
.access-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Fredoka", sans-serif;
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
}
.access-card strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.14rem, 1.45vw, 1.42rem);
  line-height: .95;
}
.access-card p {
  margin: 10px 0 0;
  font-size: .91rem;
  line-height: 1.42;
  color: #253850;
}
.access-card-lead {
  grid-area: lead;
  min-height: 272px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(85,240,138,.35), transparent 6rem),
    radial-gradient(circle at 18% 88%, rgba(19,165,255,.28), transparent 10rem),
    linear-gradient(145deg, #06172a, #0a579c 58%, #169bf2);
  color: white;
}
.access-card-lead::before {
  content: "ACCESS";
  position: absolute;
  right: -8px;
  top: 12px;
  color: rgba(255,255,255,.08);
  font-family: "Fredoka", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: .8;
}
.access-card-lead span,
.access-card-lead p { color: rgba(255,255,255,.86); }
.access-card-lead strong {
  position: relative;
  max-width: 10ch;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  text-shadow: 0 3px 0 #05080d, 4px 5px 0 rgba(0,0,0,.24);
}
.access-card-green {
  grid-area: prompt;
  background: linear-gradient(145deg, #55f08a, #d9ffe7);
}
.access-card-grid > .access-card:nth-child(2) { grid-area: docs; }
.access-card-grid > .access-card:nth-child(5) {
  grid-area: economy;
  min-height: 142px;
}
.access-card-image {
  grid-area: identity;
  position: relative;
  min-height: 142px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, #19a3f4 0 38%, rgba(255,255,255,.96) 38% 100%);
  color: white;
}
.access-card-image img {
  position: absolute;
  right: -5%;
  bottom: -46%;
  width: 58%;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.access-card-image strong {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  text-shadow: 0 3px 0 #05080d, 4px 5px 0 rgba(0,0,0,.22);
}
.access-card-dark {
  grid-area: culture;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background:
    radial-gradient(circle at 78% 44%, rgba(85,240,138,.2), transparent 7rem),
    linear-gradient(90deg, #07111f 0 58%, #0d80d7 58% 100%),
    radial-gradient(circle at 86% 20%, rgba(85,240,138,.22), transparent 5rem),
    linear-gradient(145deg, #07111f, #0d5d9b);
}
.access-card-dark img {
  right: 2%;
  bottom: -42%;
  width: 28%;
}
.access-card-dark p {
  position: relative;
  z-index: 1;
  max-width: 45ch;
  margin: 8px 0 0;
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 8px rgba(0,0,0,.24);
}
.collection-card-stage .hero-ticket {
  display: none;
}

.art-rail {
  margin: 88px 0;
  overflow: hidden;
  transform: rotate(-1.2deg);
  border-block: 2px solid #05080d;
  background: rgba(8,20,36,.18);
  box-shadow: 0 14px 0 rgba(0,0,0,.16);
}
.rail-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 22px 0;
  animation: railMove 45s linear infinite;
}
.rail-track img {
  width: 160px; height: 160px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 26px;
  border: 2px solid #05080d;
  box-shadow: 7px 8px 0 rgba(0,0,0,.22), 0 18px 36px rgba(0,0,0,.28);
}

.ecosystem-section {
  position: relative;
  padding: clamp(34px, 5vw, 72px);
  margin-bottom: 92px;
  border: 2px solid #05080d;
  border-radius: 42px 14px 42px 14px;
  background:
    linear-gradient(145deg, rgba(19,165,255,.5), rgba(4,18,32,.28)),
    url("assets/storybook-clouds.jpg") center 42%/cover no-repeat;
  box-shadow: 14px 16px 0 rgba(0,0,0,.2), 0 34px 92px rgba(0,0,0,.22);
  overflow: hidden;
}
.ecosystem-section::before,
.ecosystem-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.ecosystem-section::before {
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px 10px 30px 10px;
}
.ecosystem-section::after {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85,240,138,.2), transparent 62%);
  animation: sectionOrb 10s ease-in-out infinite;
}
.ecosystem-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 26px;
}
.ecosystem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 12px;
  border: 2px solid #05080d;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4,18,32,.48), rgba(10,119,185,.24)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 28px);
  box-shadow: 12px 14px 0 rgba(0,0,0,.2), 0 28px 80px rgba(0,0,0,.24);
}
.ecosystem-grid::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: rotate(14deg);
  animation: panelSweep 8s ease-in-out infinite;
}
.ecosystem-grid article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #05080d;
  border-radius: 24px 8px 24px 8px;
  color: #06172a;
  background:
    radial-gradient(circle at 88% 18%, rgba(85,240,138,.28), transparent 5rem),
    linear-gradient(145deg, rgba(248,251,255,.96), rgba(221,242,255,.94));
  box-shadow: 6px 7px 0 rgba(0,0,0,.2), 0 18px 42px rgba(0,0,0,.18);
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.ecosystem-grid article:nth-child(2n) {
  background:
    radial-gradient(circle at 86% 15%, rgba(255,255,255,.38), transparent 5rem),
    linear-gradient(145deg, #55f08a, #cbffde);
}
.ecosystem-grid article:nth-child(3n) {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(85,240,138,.26), transparent 5rem),
    linear-gradient(145deg, rgba(4,18,32,.96), rgba(8,123,211,.86));
}
.ecosystem-grid article::before,
.ecosystem-grid article::after {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) rotate(-8deg) scale(.8);
  transition: opacity .22s ease, transform .22s ease;
}
.ecosystem-grid article::before {
  content: attr(data-spark);
  right: 18px;
  top: 18px;
  font-size: 2rem;
  filter: drop-shadow(4px 5px 0 rgba(0,0,0,.22));
}
.ecosystem-grid article::after {
  content: "";
  right: 28px;
  top: 70px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85,240,138,.24), transparent 68%);
}
.ecosystem-grid article:hover,
.ecosystem-grid article:focus-within {
  transform: translate(-4px, -7px) rotate(-.8deg);
  box-shadow: 10px 12px 0 rgba(0,0,0,.23), 0 24px 58px rgba(0,0,0,.24);
  z-index: 2;
}
.ecosystem-grid article:hover::before,
.ecosystem-grid article:hover::after,
.ecosystem-grid article:focus-within::before,
.ecosystem-grid article:focus-within::after {
  opacity: 1;
  transform: translateY(0) rotate(7deg) scale(1);
}
.ecosystem-grid img {
  width: 62px;
  height: 62px;
  padding: 8px;
  border: 2px solid #05080d;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(255,255,255,.72);
  box-shadow: 5px 6px 0 rgba(0,0,0,.18);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}
.ecosystem-grid strong { font-family: "Fredoka", sans-serif; font-size: 1.25rem; }
.ecosystem-grid p {
  margin-bottom: 0;
  color: #253850;
  font-weight: 850;
  text-shadow: none;
}
.ecosystem-grid article:nth-child(3n) p { color: var(--muted); text-shadow: 0 2px 8px rgba(0,0,0,.22); }

.roadmap-section {
  position: relative;
  margin-bottom: 94px;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 2.8vw, 34px);
  align-items: stretch;
}
.roadmap-copy {
  position: relative;
  top: auto;
  min-width: 0;
  align-self: stretch;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3.2vw, 34px);
  border: 2px solid #05080d;
  border-radius: 38px 12px 38px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(85,240,138,.26), transparent 12rem),
    linear-gradient(145deg, rgba(4,18,32,.38), rgba(8,123,211,.24)),
    url("assets/storybook-clouds.jpg") center 46%/cover no-repeat;
  box-shadow: 14px 16px 0 rgba(0,0,0,.18), 0 30px 80px rgba(0,0,0,.22);
}
.roadmap-copy::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px 8px 28px 8px;
  pointer-events: none;
}
.roadmap-copy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -92px;
  border-radius: 54% 46% 58% 42% / 44% 58% 42% 56%;
  background: radial-gradient(circle, rgba(85,240,138,.2), transparent 64%);
  pointer-events: none;
  animation: orbitWobble 10s ease-in-out infinite;
}
.roadmap-sign {
  position: relative;
  z-index: 2;
}
.roadmap-copy h2 {
  margin-bottom: 18px;
  max-width: 640px;
}
.road-path {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 380px;
  margin-top: clamp(22px, 4vw, 44px);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  border: 2px solid #05080d;
  border-radius: 34px 10px 34px 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.28), transparent 8rem),
    linear-gradient(145deg, rgba(8,123,211,.74), rgba(4,18,32,.38));
  box-shadow: 9px 10px 0 rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.12);
}
.road-path::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 26px;
  bottom: 26px;
  width: 10px;
  border: 2px solid #05080d;
  border-radius: 999px;
  opacity: .9;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.78) 0 14px, transparent 14px 28px),
    rgba(6,23,42,.86);
  transform: translateX(-50%);
}
.road-path::after {
  content: "DEC 2026";
  position: absolute;
  right: 20px;
  bottom: 16px;
  padding: 8px 12px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  background: var(--green);
  box-shadow: 4px 5px 0 rgba(0,0,0,.22);
}
.road-line {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 10px;
  border: 2px solid #05080d;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.78) 0 14px, transparent 14px 28px),
    rgba(6,23,42,.86);
  transform: translateY(-50%);
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,.2));
}
.road-line::before,
.road-line::after {
  content: none;
}
.road-pin {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 128px;
  padding: 15px;
  display: grid;
  align-content: center;
  border: 2px solid #05080d;
  border-radius: 20px 8px 20px 8px;
  color: #06172a;
  background: rgba(248,251,255,.94);
  box-shadow: 6px 7px 0 rgba(0,0,0,.22);
}
.road-pin::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  border: 2px solid #05080d;
  border-radius: 999px;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 3px 4px 0 rgba(0,0,0,.22);
}
.road-pin span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  place-items: center;
  border: 2px solid #05080d;
  border-radius: 12px;
  color: white;
  font-family: "Fredoka", sans-serif;
  font-weight: 800;
  background: var(--blue-hot);
  box-shadow: 3px 4px 0 rgba(0,0,0,.18);
}
.road-pin strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}
.road-pin small {
  display: block;
  margin-top: 5px;
  color: #42556d;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.road-pin-one,
.road-pin-two,
.road-pin-three,
.road-pin-four { transform: none; }
.road-pin-two,
.road-pin-three { background: #ceffe2; }
.road-pin-four { background: #b9ddff; }
.road-pin-one::before,
.road-pin-three::before { left: calc(100% + 9px); }
.road-pin-two::before,
.road-pin-four::before { left: -9px; }
.roadmap-board {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: clamp(18px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  border: 2px solid #05080d;
  border-radius: 38px 12px 38px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(85,240,138,.28), transparent 14rem),
    linear-gradient(145deg, rgba(4,18,32,.55), rgba(8,123,211,.38)),
    url("assets/storybook-clouds.jpg") center 44%/cover no-repeat;
  box-shadow: 14px 16px 0 rgba(0,0,0,.22), 0 34px 90px rgba(0,0,0,.28);
}
.roadmap-board::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px 8px 28px 8px;
  pointer-events: none;
}
.roadmap-board::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -86px;
  top: -92px;
  border-radius: 48% 52% 42% 58% / 54% 40% 60% 46%;
  background: radial-gradient(circle, rgba(85,240,138,.24), transparent 64%);
  pointer-events: none;
  animation: orbitWobble 9s ease-in-out infinite;
}
.roadmap-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.roadmap-marquee span {
  padding: 8px 12px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  background: rgba(248,251,255,.92);
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
  animation: questChipFloat 4.8s ease-in-out infinite;
}
.roadmap-marquee span:nth-child(2n) { background: #b9ddff; animation-delay: -.9s; }
.roadmap-marquee span:nth-child(3n) { background: #a9ffc9; animation-delay: -1.8s; }
.roadmap-targets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.roadmap-target {
  position: relative;
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid #05080d;
  border-radius: 28px 10px 28px 10px;
  color: #06172a;
  background:
    radial-gradient(circle at 90% 10%, rgba(85,240,138,.28), transparent 6rem),
    linear-gradient(145deg, rgba(248,251,255,.97), rgba(204,235,255,.95));
  box-shadow: 9px 10px 0 rgba(0,0,0,.23), 0 24px 58px rgba(0,0,0,.22);
  overflow: hidden;
}
.roadmap-target::before {
  content: "";
  position: absolute;
  inset: auto -20% -36% 18%;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20,164,255,.2), transparent 66%);
  pointer-events: none;
}
.roadmap-target-green {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.45), transparent 6rem),
    linear-gradient(145deg, #55f08a, #d9ffe7);
}
.quest-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-size: .76rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(255,255,255,.7);
}
.roadmap-target strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.25rem, 3.4vw, 3.8rem);
  line-height: .86;
  letter-spacing: -.045em;
  text-shadow: 0 3px 0 rgba(255,255,255,.55);
}
.roadmap-target small {
  color: #06172a;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.quest-progress {
  position: relative;
  z-index: 1;
  height: 18px;
  padding: 3px;
  border: 2px solid #05080d;
  border-radius: 999px;
  background: rgba(6,23,42,.12);
  box-shadow: inset 0 2px 0 rgba(0,0,0,.14);
}
.quest-progress span {
  display: block;
  width: var(--progress, 12%);
  min-width: 18px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-hot), var(--green));
  box-shadow: 0 0 24px rgba(85,240,138,.42);
  transition: width .7s cubic-bezier(.2,.8,.2,1);
}
.quest-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quest-grid article {
  position: relative;
  min-height: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #05080d;
  border-radius: 24px 8px 24px 8px;
  color: #06172a;
  background: rgba(248,251,255,.93);
  box-shadow: 6px 7px 0 rgba(0,0,0,.2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.quest-grid article:nth-child(2n) { background: #b9ddff; }
.quest-grid article:nth-child(3n) { background: #ceffe2; }
.quest-grid article:hover {
  transform: translate(-4px, -6px) rotate(-.7deg);
  box-shadow: 10px 12px 0 rgba(0,0,0,.24), 0 20px 50px rgba(0,0,0,.2);
}
.quest-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid #05080d;
  border-radius: 16px;
  font-size: 1.6rem;
  background: rgba(255,255,255,.72);
  box-shadow: 4px 5px 0 rgba(0,0,0,.18);
}
.quest-grid strong {
  display: block;
  margin-top: 18px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  line-height: 1.04;
}
.quest-grid p {
  margin-bottom: 0;
  color: #253850;
  font-size: .95rem;
  font-weight: 850;
}
.quest-link {
  width: fit-content;
  margin-top: 14px;
  padding: 8px 11px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: white;
  font-family: "Fredoka", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
}

.links-section {
  padding: 0 0 74px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 28px;
  align-items: start;
}
.official-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.official-links a {
  position: relative;
  overflow: hidden;
  min-height: 202px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #081424;
  text-decoration: none;
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(18,132,255,.26);
  border: 2px solid #0b0d12;
  transition: transform .22s ease, box-shadow .22s ease;
}
.official-links a::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 2px;
  opacity: .38;
  background: #081424;
  transform: rotate(-.8deg);
}
.official-links a:nth-child(2) { background: #b9ddff; box-shadow-color: rgba(85,240,138,.26); }
.official-links a:nth-child(3) { background: #ceffe2; box-shadow-color: rgba(18,132,255,.24); }
.official-links a:nth-child(4) { background: #dff1ff; box-shadow-color: rgba(85,240,138,.2); }
.official-links a:hover { transform: translate(-3px, -3px); box-shadow: 18px 18px 0 rgba(18,132,255,.2); }
.official-links span {
  max-width: 8ch;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 2.8vw, 3.35rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.035em;
  text-shadow: 0 3px 0 rgba(255,255,255,.72), 0 8px 18px rgba(0,0,0,.16);
}
.official-links small {
  font-size: .92rem;
  font-weight: 1000;
  color: #42556d;
}

.final-cta {
  position: relative;
  width: min(calc(100% - 32px), 1400px);
  margin: 0 auto 36px;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  border: 2px solid #05080d;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(4,18,32,.46), rgba(8,123,211,.42)),
    url("assets/storybook-clouds.jpg") center 48%/cover no-repeat;
  box-shadow: 12px 14px 0 rgba(0,0,0,.2), 0 30px 86px rgba(0,0,0,.26);
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.final-cta::before {
  inset: auto -80px -130px auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85,240,138,.22), transparent 64%);
  animation: sectionOrb 12s ease-in-out infinite reverse;
}
.final-cta::after {
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
}
.final-copy,
.final-actions {
  position: relative;
  z-index: 1;
}
.final-copy h2 { max-width: 720px; }
.final-copy p { max-width: 590px; }
.final-signal {
  max-width: 660px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: .9fr 1.18fr .9fr;
  gap: 10px;
}
.final-signal span {
  min-height: 74px;
  padding: 13px 14px;
  border: 2px solid #05080d;
  border-radius: 20px 8px 20px 8px;
  display: grid;
  align-content: center;
  gap: 3px;
  color: #253850;
  font-size: .82rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(248,251,255,.94);
  box-shadow: 6px 7px 0 rgba(0,0,0,.2);
}
.final-signal span:nth-child(2) { background: linear-gradient(145deg, #55f08a, #d9ffe7); }
.final-signal span:nth-child(3) {
  color: white;
  background: linear-gradient(145deg, var(--blue-hot), var(--blue));
}
.final-signal strong {
  display: block;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1;
  text-shadow: 0 2px 0 #05080d;
  white-space: nowrap;
}
.final-signal [data-signal-stat="volume"] {
  display: inline-block;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  letter-spacing: -.04em;
  transform: translateY(1px);
}
.final-signal span:nth-child(3) strong { color: white; }
.final-actions {
  position: relative;
  display: grid;
  gap: 14px;
}
.final-actions::before {
  content: "";
  position: absolute;
  inset: -26px -20px -24px 18%;
  border: 2px dashed rgba(85,240,138,.34);
  border-radius: 42% 58% 50% 50% / 50% 45% 55% 50%;
  pointer-events: none;
  animation: orbitWobble 9s ease-in-out infinite;
}
.final-card {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 22px 24px;
  display: grid;
  align-content: center;
  gap: 7px;
  color: var(--white);
  text-decoration: none;
  border: 2px solid #05080d;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18,132,255,.18), rgba(15,98,98,.26));
  box-shadow: 8px 10px 0 rgba(0,0,0,.22), 0 18px 58px rgba(0,0,0,.22);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.final-card::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -34%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: rotate(15deg);
  transition: left .46s ease;
}
.final-card:hover {
  transform: translate(-4px, -5px) rotate(-.4deg);
  border-color: rgba(37,201,245,.42);
  background: linear-gradient(135deg, rgba(18,132,255,.28), rgba(15,98,98,.34));
  box-shadow: 12px 14px 0 rgba(0,0,0,.24), 0 24px 68px rgba(0,0,0,.26);
}
.final-card:hover::after { left: 118%; }
.final-card.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  border-color: #05080d;
}
.final-card span {
  font-family: "Fredoka", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.final-card.primary span { color: #b8ffd0; }
.final-card strong {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1;
}
.final-card small {
  color: var(--muted);
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
}
.final-card.primary small { color: rgba(255,255,255,.9); }
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 24px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(248,251,255,.78);
  font-weight: 900;
}
.footer-links {
  display: inline-flex;
  gap: 14px;
}
.footer-links a {
  color: rgba(248,251,255,.82);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.footer-links a:hover { color: white; }

.links-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(85,240,138,.28), transparent 20rem),
    radial-gradient(circle at 86% 20%, rgba(248,251,255,.18), transparent 22rem),
    radial-gradient(circle at 50% 105%, rgba(6,23,42,.42), transparent 34rem),
    var(--blue);
}
.links-page main {
  overflow: visible;
}
.linktree-shell {
  width: min(calc(100% - 32px), 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
  display: grid;
  place-items: center;
}
.linktree-card {
  position: relative;
  width: 100%;
  padding: clamp(22px, 5vw, 42px);
  border: 2px solid #05080d;
  border-radius: 44px 14px 44px 14px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(4,18,32,.62), rgba(8,123,211,.38)),
    url("assets/storybook-clouds.jpg") center 44%/cover no-repeat;
  box-shadow: 18px 20px 0 rgba(0,0,0,.24), 0 36px 100px rgba(0,0,0,.34);
}
.linktree-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px 10px 32px 10px;
  pointer-events: none;
}
.linktree-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(.2px);
  animation: sectionOrb 12s ease-in-out infinite;
}
.linktree-glow-one {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  background: radial-gradient(circle, rgba(85,240,138,.28), transparent 66%);
}
.linktree-glow-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(20,164,255,.34), transparent 66%);
  animation-delay: -4s;
}
.linktree-hero,
.linktree-links,
.linktree-footer {
  position: relative;
  z-index: 1;
}
.linktree-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}
.linktree-logo {
  width: 108px;
  height: 108px;
  margin-bottom: 18px;
  border: 2px solid #05080d;
  border-radius: 30px;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 9px 10px 0 rgba(0,0,0,.26), 0 20px 50px rgba(0,0,0,.2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.linktree-logo:hover {
  transform: translate(-3px, -4px) rotate(-2deg);
  box-shadow: 12px 14px 0 rgba(0,0,0,.28), 0 24px 60px rgba(0,0,0,.24);
}
.linktree-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.linktree-hero h1 {
  margin-top: 8px;
  font-size: clamp(3.2rem, 10vw, 6rem);
  line-height: .82;
}
.linktree-hero p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 850;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.linktree-links {
  margin-top: 28px;
  display: grid;
  gap: 13px;
}
.linktree-link {
  position: relative;
  min-height: 88px;
  padding: 14px 18px 14px 14px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 16px;
  border: 2px solid #05080d;
  border-radius: 26px 9px 26px 9px;
  color: #06172a;
  text-decoration: none;
  background: rgba(248,251,255,.94);
  box-shadow: 8px 9px 0 rgba(0,0,0,.24), 0 18px 44px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.linktree-link::after {
  content: "↗";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: white;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  background: var(--blue-hot);
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
  transform: translateY(-50%);
}
.linktree-link:hover {
  transform: translate(-4px, -5px) rotate(-.4deg);
  box-shadow: 13px 15px 0 rgba(0,0,0,.28), 0 24px 58px rgba(0,0,0,.22);
}
.linktree-link:nth-child(2) { background: #b9ddff; }
.linktree-link:nth-child(3) { background: #ceffe2; }
.linktree-link:nth-child(4) { background: #eaf6ff; }
.linktree-link-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
}
.linktree-link-primary small {
  color: rgba(255,255,255,.78);
}
.linktree-link-primary::after {
  color: #06172a;
  background: var(--green);
}
.linktree-link img {
  width: 62px;
  height: 62px;
  border: 2px solid #05080d;
  border-radius: 18px;
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
}
.linktree-link span {
  min-width: 0;
  padding-right: 44px;
  display: grid;
  gap: 3px;
}
.linktree-link strong {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.5rem, 4.8vw, 2.2rem);
  line-height: .94;
  text-shadow: 0 2px 0 rgba(255,255,255,.45);
}
.linktree-link small {
  color: #42556d;
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.linktree-footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.linktree-footer span {
  padding: 8px 11px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(248,251,255,.9);
  box-shadow: 4px 5px 0 rgba(0,0,0,.18);
}

.scanner-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 12%, rgba(85,240,138,.28), transparent 20rem),
    radial-gradient(circle at 88% 15%, rgba(248,251,255,.16), transparent 22rem),
    radial-gradient(circle at 52% 108%, rgba(6,23,42,.42), transparent 34rem),
    var(--blue);
}
.scanner-page main {
  overflow: visible;
}
.scanner-shell {
  width: min(calc(100% - 32px), 1240px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
}
.scanner-panel {
  position: relative;
  border: 2px solid #05080d;
  border-radius: 38px 12px 38px 12px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(4,18,32,.62), rgba(8,123,211,.38)),
    url("assets/storybook-clouds.jpg") center 44%/cover no-repeat;
  box-shadow: 14px 16px 0 rgba(0,0,0,.24), 0 34px 90px rgba(0,0,0,.3);
  overflow: hidden;
}
.scanner-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px 8px 28px 8px;
  pointer-events: none;
}
.scanner-login {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  display: grid;
  justify-items: center;
  text-align: center;
}
.scanner-logo {
  margin-bottom: 18px;
}
.scanner-login h1,
.scanner-hero h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}
.scanner-login p,
.scanner-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 850;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.scanner-login > *,
.scanner-hero > *,
.scanner-workbench > *,
.scanner-results > * {
  position: relative;
  z-index: 1;
}
.scanner-login-form {
  width: 100%;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.scanner-login-form label,
.scanner-slugs {
  display: grid;
  gap: 8px;
  text-align: left;
}
.scanner-login-form label span,
.scanner-slugs span {
  color: var(--green);
  font-family: "Fredoka", sans-serif;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.scanner-login-form input,
.scanner-slugs textarea {
  width: 100%;
  border: 2px solid #05080d;
  border-radius: 22px 8px 22px 8px;
  color: #06172a;
  font: inherit;
  font-weight: 900;
  background: rgba(248,251,255,.96);
  box-shadow: 6px 7px 0 rgba(0,0,0,.2);
}
.scanner-login-form input {
  min-height: 58px;
  padding: 0 16px;
}
.scanner-slugs textarea {
  min-height: 178px;
  padding: 16px;
  resize: vertical;
}
.scanner-error {
  min-height: 24px;
  margin: 0;
  color: #ffd6d6;
  font-weight: 1000;
}
.scanner-app {
  display: grid;
  gap: 22px;
}
.scanner-app[hidden],
.scanner-login[hidden] {
  display: none;
}
.scanner-hero {
  padding: clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}
.scanner-logout {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  background: rgba(248,251,255,.92);
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
  cursor: pointer;
}
.scanner-rules,
.scanner-summary,
.scanner-diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.scanner-rules article,
.scanner-summary article,
.scanner-diagnostic,
.scanner-history-list article {
  min-height: 118px;
  padding: 18px;
  border: 2px solid #05080d;
  border-radius: 26px 8px 26px 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  color: #06172a;
  background: rgba(248,251,255,.94);
  box-shadow: 8px 9px 0 rgba(0,0,0,.2);
}
.scanner-rules article:nth-child(2),
.scanner-summary article:nth-child(2) { background: #b9ddff; }
.scanner-rules article:nth-child(3),
.scanner-summary article:nth-child(3) { background: #ceffe2; }
.scanner-rules article:nth-child(4),
.scanner-summary article:nth-child(4) {
  color: white;
  background: linear-gradient(145deg, var(--blue-hot), var(--blue));
}
.scanner-rules strong,
.scanner-summary strong {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .86;
  letter-spacing: -.04em;
}
.scanner-rules span,
.scanner-summary span {
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.scanner-workbench,
.scanner-results,
.scanner-diagnostics,
.scanner-history {
  padding: clamp(20px, 4vw, 34px);
}
.scanner-presets {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.scanner-presets-head {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.scanner-presets-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.scanner-presets-head > span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  background: var(--green);
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
}
.scanner-presets-head > span[data-state="over"] {
  color: white;
  background: #d83a3a;
}
.scanner-preset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.scanner-preset {
  cursor: pointer;
}
.scanner-preset input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.scanner-preset-card {
  min-height: 118px;
  padding: 13px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 11px;
  border: 2px solid #05080d;
  border-radius: 24px 8px 24px 8px;
  color: #06172a;
  background: rgba(248,251,255,.94);
  box-shadow: 6px 7px 0 rgba(0,0,0,.2);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, opacity .22s ease;
}
.scanner-preset-card img {
  width: 54px;
  height: 54px;
  border: 2px solid #05080d;
  border-radius: 16px;
  box-shadow: 3px 4px 0 rgba(0,0,0,.18);
}
.scanner-preset-card strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.04rem;
  line-height: 1;
}
.scanner-preset-card small {
  display: block;
  margin-top: 6px;
  color: #42556d;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.scanner-preset input:checked + .scanner-preset-card {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  box-shadow: 9px 10px 0 rgba(0,0,0,.26), 0 18px 46px rgba(20,164,255,.24);
  transform: translate(-3px, -4px);
}
.scanner-preset input:checked + .scanner-preset-card small {
  color: rgba(255,255,255,.78);
}
.scanner-preset input:focus-visible + .scanner-preset-card {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.scanner-preset input:disabled + .scanner-preset-card {
  cursor: not-allowed;
  opacity: .48;
}
.scanner-holder-limit {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px;
  border: 2px solid #05080d;
  border-radius: 26px 8px 26px 8px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: center;
  color: #06172a;
  background: rgba(248,251,255,.92);
  box-shadow: 8px 9px 0 rgba(0,0,0,.2);
}
.scanner-holder-limit h2 {
  color: #06172a;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: none;
}
.scanner-limit-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.scanner-limit-buttons button {
  min-height: 76px;
  border: 2px solid #05080d;
  border-radius: 22px 8px 22px 8px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  background: #ceffe2;
  box-shadow: 6px 7px 0 rgba(0,0,0,.2);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.scanner-limit-buttons button:hover,
.scanner-limit-buttons button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  transform: translate(-3px, -4px);
  box-shadow: 9px 10px 0 rgba(0,0,0,.26);
}
.scanner-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.scanner-button {
  min-height: 64px;
  padding: 14px 18px;
  border: 2px solid #05080d;
  border-radius: 22px 8px 22px 8px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  background: rgba(248,251,255,.94);
  box-shadow: 7px 8px 0 rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.scanner-button:hover:not(:disabled) {
  transform: translate(-3px, -4px);
  box-shadow: 10px 12px 0 rgba(0,0,0,.26);
}
.scanner-button:disabled {
  cursor: not-allowed;
  opacity: .58;
}
.scanner-button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
}
.scanner-button-ghost {
  background: #ceffe2;
}
.scanner-status {
  margin-top: 18px;
  padding: 14px 16px;
  border: 2px solid #05080d;
  border-radius: 20px 8px 20px 8px;
  color: #06172a;
  font-weight: 1000;
  background: rgba(248,251,255,.92);
  box-shadow: 5px 6px 0 rgba(0,0,0,.2);
}
.scanner-status[data-state="ok"] { background: #ceffe2; }
.scanner-status[data-state="busy"] { background: #b9ddff; }
.scanner-status[data-state="error"] {
  color: white;
  background: #d83a3a;
}
.scanner-progress {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 12px;
  border: 2px solid #05080d;
  border-radius: 20px 8px 20px 8px;
  color: #06172a;
  font-weight: 1000;
  background: #ceffe2;
  box-shadow: 5px 6px 0 rgba(0,0,0,.2);
}
.scanner-progress span {
  display: block;
  margin-bottom: 8px;
  font-family: "Fredoka", sans-serif;
}
.scanner-progress i {
  height: 18px;
  padding: 3px;
  display: block;
  border: 2px solid #05080d;
  border-radius: 999px;
  background: rgba(6,23,42,.12);
  box-shadow: inset 0 2px 0 rgba(0,0,0,.14);
}
.scanner-progress b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-hot), var(--green));
  transition: width .35s ease;
}
.scanner-results-head {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}
.scanner-results-head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}
.scanner-results-head > span {
  padding: 10px 13px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  background: var(--green);
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
}
.scanner-table-wrap {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  border: 2px solid #05080d;
  border-radius: 24px 8px 24px 8px;
  background: rgba(248,251,255,.94);
  box-shadow: 8px 9px 0 rgba(0,0,0,.2);
}
.scanner-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: #06172a;
}
.scanner-table th,
.scanner-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(6,23,42,.18);
  vertical-align: top;
}
.scanner-table th {
  font-family: "Fredoka", sans-serif;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #ceffe2;
}
.scanner-table td {
  font-weight: 900;
}
.scanner-table td small {
  display: block;
  margin-top: 4px;
  max-width: 220px;
  color: #42556d;
  font-size: .72rem;
  overflow-wrap: anywhere;
}
.scanner-table a {
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
}
.scanner-table tbody tr {
  cursor: pointer;
  transition: background .18s ease;
}
.scanner-table tbody tr:hover {
  background: rgba(20,164,255,.08);
}
.scanner-rank {
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
}
.scanner-tag-pill {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  background: var(--green);
}
.scanner-diagnostic {
  min-height: 150px;
}
.scanner-diagnostic strong,
.scanner-history-list strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.22rem;
  line-height: 1;
}
.scanner-diagnostic span {
  width: fit-content;
  padding: 5px 8px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: white;
  font-size: .72rem;
  font-weight: 1000;
  text-transform: uppercase;
  background: var(--blue-hot);
}
.scanner-diagnostic-rejected span,
.scanner-diagnostic-error span {
  background: #d83a3a;
}
.scanner-diagnostic small,
.scanner-history-list small,
.scanner-history-list span {
  color: #42556d;
  font-weight: 1000;
}
.scanner-history-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.scanner-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 18px;
  display: grid;
  justify-items: end;
  background: rgba(6,23,42,.54);
  backdrop-filter: blur(8px);
}
.scanner-drawer[hidden] {
  display: none;
}
.scanner-drawer-card {
  position: relative;
  width: min(100%, 520px);
  height: 100%;
  padding: 28px;
  border: 2px solid #05080d;
  border-radius: 34px 10px 34px 10px;
  overflow-y: auto;
  color: #06172a;
  background:
    linear-gradient(145deg, rgba(248,251,255,.95), rgba(206,255,226,.9)),
    url("assets/storybook-clouds.jpg") center/cover no-repeat;
  box-shadow: 14px 16px 0 rgba(0,0,0,.26), 0 34px 90px rgba(0,0,0,.34);
}
.scanner-drawer-close {
  float: right;
  padding: 9px 12px;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  background: white;
  box-shadow: 4px 5px 0 rgba(0,0,0,.2);
  cursor: pointer;
}
.scanner-drawer-card h2,
.scanner-drawer-card h3 {
  color: #06172a;
  text-shadow: none;
}
.scanner-drawer-card h2 {
  margin: 10px 0;
  font-size: clamp(2.2rem, 8vw, 4rem);
}
.scanner-drawer-card h3 {
  margin: 24px 0 10px;
}
.scanner-drawer-card p,
.scanner-drawer-card li {
  color: #253850;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.scanner-drawer-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.scanner-drawer-stats span,
.scanner-drawer-actions a,
.scanner-drawer-actions button {
  padding: 12px;
  border: 2px solid #05080d;
  border-radius: 18px 7px 18px 7px;
  color: #06172a;
  font-weight: 1000;
  background: rgba(248,251,255,.92);
  box-shadow: 5px 6px 0 rgba(0,0,0,.18);
}
.scanner-drawer-stats strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
}
.scanner-drawer-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.scanner-drawer-field span {
  color: #06172a;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.scanner-drawer-field select,
.scanner-drawer-field textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #05080d;
  border-radius: 18px 7px 18px 7px;
  color: #06172a;
  font: inherit;
  font-weight: 900;
  background: rgba(248,251,255,.94);
  box-shadow: 5px 6px 0 rgba(0,0,0,.18);
}
.scanner-drawer-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.scanner-drawer-actions a,
.scanner-drawer-actions button {
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(8,123,211,.22), rgba(8,123,211,.7)),
    var(--blue);
}
.legal-header {
  position: relative;
}
.legal-nav {
  margin-left: auto;
}
.legal-main {
  width: min(calc(100% - 32px), 1080px);
  margin: 54px auto 80px;
}
.legal-card {
  padding: clamp(28px, 5vw, 64px);
  border: 2px solid #05080d;
  border-radius: 42px 14px 42px 14px;
  color: #06172a;
  background:
    linear-gradient(135deg, rgba(249,255,241,.94), rgba(220,255,248,.9) 48%, rgba(219,239,255,.92)),
    url("assets/storybook-clouds.jpg") center/cover no-repeat;
  box-shadow: 14px 16px 0 rgba(0,0,0,.18), 0 34px 92px rgba(0,0,0,.26);
}
.legal-card h1 {
  max-width: 820px;
  margin: 14px 0 24px;
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: .9;
  color: #081424;
  text-shadow: none;
}
.legal-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1;
  color: #081424;
  text-shadow: none;
}
.legal-card p {
  max-width: 860px;
  color: #253850;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 850;
}
.legal-card .mini-label {
  color: var(--green);
  text-shadow: 0 1px 0 rgba(5,8,13,.16);
}
.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 2px solid #05080d;
  border-radius: 24px;
  background: rgba(4,12,22,.88);
  box-shadow: 0 10px 0 rgba(0,0,0,.3), 0 22px 52px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.mobile-sticky-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #05080d;
  border-radius: 999px;
  color: white;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue-hot), var(--blue));
  box-shadow: 4px 5px 0 rgba(0,0,0,.24);
}
.mobile-sticky-cta a:nth-child(2) {
  color: #06172a;
  background: var(--green);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease var(--reveal-delay, 0ms), transform .75s ease var(--reveal-delay, 0ms);
}
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}
@keyframes waterDisc {
  0%, 100% {
    border-radius: 66% 31% 58% 42% / 38% 56% 40% 62%;
    transform: translate(-50%, -50%) rotate(-11deg) scale(1);
    background-position: 0 0, 0 0, 0 0;
  }
  50% {
    border-radius: 58% 42% 69% 31% / 45% 48% 52% 55%;
    transform: translate(-50%, -50%) rotate(-6deg) scale(1.05);
    background-position: 18px -12px, -20px 18px, 0 24px, 0 0;
  }
}
@keyframes grassBank {
  0%, 100% {
    border-radius: 64% 36% 61% 39% / 39% 59% 41% 61%;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
  50% {
    border-radius: 58% 42% 66% 34% / 44% 53% 47% 56%;
    transform: translate(-50%, -50%) rotate(-7deg) scale(1.015);
  }
}
@keyframes waterRipples {
  0%, 100% {
    opacity: .24;
    transform: translate(-50%, -50%) rotate(-13deg) scale(.96);
  }
  50% {
    opacity: .42;
    transform: translate(-50%, -50%) rotate(-7deg) scale(1.025);
  }
}
@keyframes fisherBob {
  0%, 100% { transform: translateY(0) scaleX(-1) rotate(-2deg); }
  50% { transform: translateY(8px) scaleX(-1) rotate(1deg); }
}
@keyframes questChipFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-5px) rotate(1.4deg); }
}
@keyframes fishdexBlink {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes terminalPulse {
  0%, 100% { opacity: .72; transform: translateX(0); }
  18%, 48% { opacity: 1; transform: translateX(4px); }
}
@keyframes sectionOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .82; }
  50% { transform: translate3d(-28px, 18px, 0) scale(1.08); opacity: 1; }
}
@keyframes panelSweep {
  0%, 56%, 100% { transform: translateX(0) rotate(14deg); opacity: 0; }
  68% { opacity: .82; }
  84% { transform: translateX(420%) rotate(14deg); opacity: 0; }
}
@keyframes orbitWobble {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.04); }
}
@keyframes pondSwim {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg) scaleX(1); }
  45% { transform: translate3d(34px, -18px, 0) rotate(6deg) scaleX(1); }
  70% { transform: translate3d(18px, 10px, 0) rotate(-2deg) scaleX(1); }
}
@keyframes pondDriftReverse {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg) scaleX(-1); }
  50% { transform: translate3d(-30px, -16px, 0) rotate(-5deg) scaleX(-1); }
}
@keyframes railMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-stats {
    order: 4;
    width: 100%;
    justify-content: center;
    border-radius: 24px;
  }
  .nav-links { flex-wrap: wrap; }
  .js .site-header { flex-wrap: wrap; }
  .js .nav-links {
    display: none;
    width: 100%;
    padding-top: 6px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .js .site-header.is-open .nav-links { display: flex; }
  .js .nav-links a {
    padding: 12px 14px;
    background: rgba(255,255,255,.05);
  }
  .hero, .statement-band, .collab-layout, .collection-section, .roadmap-section, .links-section { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; min-height: auto; }
  .hero-stage { min-height: 560px; }
  .hero-video-wrap { width: min(92vw, 680px); }
  .roadmap-copy,
  .roadmap-board {
    position: relative;
    top: auto;
    min-height: 0;
    height: auto;
  }
  .road-path { min-height: 360px; }
  .access-unlocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-art img,
  .collection-video,
  .collection-card-stage { min-height: 360px; }
  .collection-card-stage .mascot-stack { width: min(78vw, 500px); height: min(66vw, 460px); min-height: 390px; }
  .ecosystem-grid { grid-template-columns: repeat(3, 1fr); }
  .ecosystem-grid article { border: 2px solid #05080d; }
  .quest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .official-links { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { padding-bottom: 86px; }
  .show-mobile-cta .mobile-sticky-cta { display: grid; }
  .section-shell,
  .site-header,
    .statement-band,
    .collection-section,
    .roadmap-section,
    .final-cta,
    .site-footer {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
  .site-header { border-radius: 24px; align-items: center; }
  .brand span { font-size: .98rem; }
  .nav-cta { display: none; }
  .nav-stats {
    padding: 4px;
    gap: 4px;
  }
  .nav-stat {
    min-width: 0;
    flex: 1;
    padding-inline: 7px;
  }
  .nav-stat strong { font-size: .82rem; }
  .nav-stat span { font-size: .5rem; }
  .nav-links { width: 100%; }
  h1 {
    width: min(100%, 340px);
    max-width: 340px;
    font-size: clamp(2.4rem, 11.3vw, 3.08rem);
    line-height: .92;
  }
  h2 { font-size: clamp(2rem, 11vw, 3.35rem); }
  .collab-main h2 { font-size: clamp(2.35rem, 13vw, 3.55rem); }
  .hero-actions { width: min(100%, 340px); max-width: 340px; }
  .hero-actions .button { width: 100%; max-width: 100%; }
  .collab-section { padding-bottom: 72px; }
  .access-unlocks {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .access-unlocks article,
  .access-unlocks article:nth-child(2),
  .access-unlocks article:nth-child(5) {
    min-height: 150px;
    transform: none;
  }
  .hero, .hero-copy, .hero-stage { max-width: 100%; min-width: 0; }
  .hero { overflow: hidden; }
  .hero-text {
    width: min(100%, 340px);
    max-width: 340px;
    overflow-wrap: break-word;
  }
  .hero-stage { min-height: 390px; overflow: hidden; width: 100%; clip-path: inset(0); }
  .pond-bank {
    left: 50%;
    top: 50%;
    width: min(130vw, 555px);
  }
  .hero-stage::before {
    left: 50%;
    top: 50%;
    width: min(112vw, 480px);
  }
  .hero-stage::after {
    left: 50%;
    top: 50%;
    width: min(105vw, 450px);
  }
  .pond-emoji-one { left: 20%; top: 30%; }
  .pond-emoji-two { left: 42%; top: 26%; }
  .pond-emoji-three { left: 55%; bottom: 28%; }
  .pond-emoji-four { left: 31%; bottom: 31%; }
  .pond-emoji-five { right: 15%; top: 34%; }
  .pond-emoji-six { display: none; }
  .pond-emoji-seven { right: 28%; bottom: 36%; }
  .hero-video-wrap { width: min(92vw, 360px); }
  .hero-video { border-radius: 32px; }
  .hero-fisher { width: clamp(50px, 13.6vw, 60px); left: 18%; top: -13%; }
  .fishdex-card {
    right: 6%;
    bottom: 4%;
    width: min(58vw, 190px);
    padding: 10px 12px;
    border-radius: 18px 8px 18px 8px;
  }
  .fishdex-card span { font-size: .58rem; }
  .fishdex-card strong { font-size: .96rem; }
  .fishdex-card small { font-size: .58rem; }
  .mascot-stack { width: min(82vw, 360px); height: min(92vw, 410px); min-height: 380px; }
  .collection-card-stage { min-height: 0; padding: 18px; }
  .access-card-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "docs"
      "prompt"
      "identity"
      "economy"
      "culture";
    gap: 12px;
  }
  .access-card { min-height: 0; padding: 15px; }
  .access-card-lead { min-height: 210px; }
  .access-card-lead strong { font-size: clamp(2rem, 11vw, 3.2rem); }
  .access-card-image { min-height: 150px; }
  .access-card-image img { width: 52%; right: -4%; bottom: -34%; }
  .mascot-card { border-radius: 28px; }
  .mascot-card-black { width: 60%; right: 2%; top: 5%; }
  .mascot-card-white { width: 56%; left: 2%; bottom: 6%; }
  .mascot-card-blue { width: 46%; left: 20%; top: 0; }
  .hero-youkie { width: min(78vw, 340px); border-radius: 34px; }
  .hero-ticket { font-size: .82rem; padding: 8px 11px; }
  .ticket-a { left: 6%; }
  .ticket-b { top: 58%; right: 24%; }
  .ticket-c { left: 12%; bottom: 13%; }
  .collection-card-stage .ticket-a,
  .collection-card-stage .ticket-b,
  .collection-card-stage .ticket-c { display: none; }
  .collab-main, .final-cta, .ecosystem-section { border-radius: 30px; }
  .collab-stack article:nth-child(2) { transform: none; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-grid article { min-height: 150px; border: 2px solid #05080d; }
  .roadmap-section { margin-bottom: 72px; }
  .roadmap-copy {
    min-height: 0;
    height: auto;
    padding: 18px;
    border-radius: 30px;
  }
  .roadmap-board {
    min-height: 0;
    height: auto;
  }
  .road-path {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 18px;
    margin-top: 22px;
    border-radius: 26px 8px 26px 8px;
  }
  .road-line {
    left: 50%;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 10px;
    height: auto;
    transform: translateX(-50%);
  }
  .road-line::before {
    content: none;
  }
  .road-path::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .road-pin {
    width: 100%;
    min-height: 104px;
    padding: 11px;
  }
  .road-pin span {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
    font-size: .78rem;
  }
  .road-pin strong { font-size: .98rem; }
  .road-pin small { font-size: .68rem; }
  .road-pin-one,
  .road-pin-two,
  .road-pin-three,
  .road-pin-four {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .road-pin::before {
    left: 50%;
    top: -17px;
  }
  .roadmap-board { padding: 16px; border-radius: 30px; }
  .roadmap-marquee { gap: 7px; }
  .roadmap-marquee span { font-size: .62rem; padding: 7px 9px; }
  .roadmap-targets,
  .quest-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-target {
    min-height: 236px;
    padding: 18px;
  }
  .roadmap-target strong { font-size: clamp(2.2rem, 12vw, 3.1rem); }
  .quest-grid article { min-height: 178px; }
  .scanner-shell { width: calc(100vw - 32px); }
  .scanner-hero,
  .scanner-rules,
  .scanner-summary,
  .scanner-diagnostics-grid,
  .scanner-history-list,
  .scanner-actions {
    grid-template-columns: 1fr;
  }
  .scanner-presets-head {
    align-items: start;
    flex-direction: column;
  }
  .scanner-preset-grid {
    grid-template-columns: 1fr;
  }
  .scanner-preset-card {
    min-height: 92px;
  }
  .scanner-holder-limit {
    grid-template-columns: 1fr;
  }
  .scanner-limit-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scanner-hero {
    border-radius: 30px;
  }
  .scanner-workbench,
  .scanner-results {
    border-radius: 30px;
  }
  .scanner-rules article,
  .scanner-summary article {
    min-height: 96px;
  }
  .scanner-drawer {
    padding: 10px;
  }
  .scanner-drawer-card {
    width: 100%;
    padding: 22px;
  }
  .scanner-drawer-stats,
  .scanner-drawer-actions {
    grid-template-columns: 1fr;
  }
  .scanner-login h1,
  .scanner-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }
  .rail-track img { width: 128px; height: 128px; }
  .final-cta { grid-template-columns: 1fr; text-align: left; }
  .final-signal { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .legal-header {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .legal-header .brand span { display: none; }
  .legal-nav {
    width: auto;
    margin-left: auto;
    gap: 6px;
  }
  .legal-nav a { padding: 10px 8px; }
  .legal-main { margin-top: 32px; }
  .legal-card { border-radius: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}









