:root {
  --bg-deep: #05090c;
  --bg-blue: #0a1a28;
  --lime: #c8ff2a;
  --lime-soft: #d8ff6a;
  --emerald: #0d3b24;
  --fox-orange: #e67a22;
  --gold: #c9a35a;
  --text: #f4f7f2;
  --muted: #8ea0b3;
  --glass: rgba(10, 22, 28, 0.55);
  --glass-edge: rgba(200, 255, 42, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% 10%, rgba(200, 255, 42, 0.08), transparent 50%),
    radial-gradient(900px 600px at 10% 20%, rgba(230, 122, 34, 0.08), transparent 46%),
    linear-gradient(180deg, #061018 0%, var(--bg-deep) 18%, #07141c 60%, #05080a 100%);
  line-height: 1.6;
  cursor: none;
}

body.is-touch,
body.is-menu-open {
  cursor: auto;
}

body.is-menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.035;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus {
  outline: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--lime);
  color: #08120a;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--fox-orange), var(--lime));
  box-shadow: 0 0 16px rgba(200, 255, 42, 0.65);
  transform-origin: left center;
  pointer-events: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  z-index: 95;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-core,
.cursor-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.cursor-core {
  background: var(--lime);
  box-shadow: 0 0 16px rgba(200, 255, 42, 0.9);
}

.cursor-halo {
  inset: -14px;
  background: radial-gradient(circle, rgba(200, 255, 42, 0.28), transparent 68%);
}

body.is-touch .cursor {
  display: none;
}

.page-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: particle-drift var(--life, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.particle.green {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 255, 42, 0.7);
}

.particle.gold {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 163, 90, 0.65);
}

.particle.ember {
  background: var(--fox-orange);
  box-shadow: 0 0 12px rgba(230, 122, 34, 0.7);
}

@keyframes particle-drift {
  0% { transform: translate3d(0, 20px, 0) scale(0.7); opacity: 0; }
  12% { opacity: 0.75; }
  100% { transform: translate3d(var(--dx, 20px), -110vh, 0) scale(1); opacity: 0; }
}

.market-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 16vw;
  max-width: 200px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.42;
}

.market-line-path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 6px rgba(200, 255, 42, 0.8));
  stroke-dasharray: 18 14;
  animation: dash-run 18s linear infinite;
}

@keyframes dash-run {
  to { stroke-dashoffset: -420; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  transition: height 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  position: relative;
}

.nav.is-scrolled {
  --nav-h: 68px;
  background: rgba(5, 10, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 1px 0 rgba(200, 255, 42, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.28);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 255, 42, 0.38);
  box-shadow: 0 0 18px rgba(200, 255, 42, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-ticker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--lime);
  text-transform: uppercase;
}

.nav-links {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 12px 20px 24px;
  background: rgba(5, 10, 12, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 255, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s ease;
}

.nav.is-open .nav-links {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: flex;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid rgba(16, 32, 10, 0.35);
  background: var(--lime);
  border-radius: 12px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #12200a;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }

  .nav-links,
  .nav.is-open .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    backdrop-filter: none;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, filter 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.38) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: sweep 3.8s ease-in-out infinite;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 40%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.btn:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary {
  background: linear-gradient(180deg, var(--lime-soft), var(--lime) 48%, #8fd80f);
  color: #102008;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 28px rgba(200, 255, 42, 0.28);
}

.btn-ghost {
  background: rgba(10, 22, 18, 0.55);
  color: var(--text);
  border: 1px solid rgba(200, 255, 42, 0.28);
}

.btn-orange {
  background: linear-gradient(180deg, #f39a3d, var(--fox-orange));
  color: #1a0d05;
  box-shadow: 0 8px 24px rgba(230, 122, 34, 0.28);
}

.btn-nav {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.btn-soon {
  opacity: 0.78;
  cursor: not-allowed;
}

.btn-soon:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
}

.soon-chip {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(8, 16, 10, 0.28);
  border: 1px solid rgba(16, 24, 12, 0.2);
}

.btn-ghost .soon-chip,
.btn-nav .soon-chip {
  background: rgba(200, 255, 42, 0.12);
  color: var(--lime);
  border-color: rgba(200, 255, 42, 0.2);
}

@keyframes sweep {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.layer {
  position: absolute;
  inset: 0;
}

.layer-sky {
  background:
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(200, 255, 42, 0.28), transparent 46%),
    radial-gradient(ellipse 50% 40% at 70% 48%, rgba(201, 163, 90, 0.18), transparent 50%),
    radial-gradient(ellipse 90% 70% at 30% 20%, rgba(12, 58, 92, 0.55), transparent 55%),
    linear-gradient(180deg, #0c2d48 0%, #0a2436 28%, var(--bg-blue) 52%, #07110f 100%);
}

.layer-grid {
  background-image:
    linear-gradient(rgba(120, 190, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 190, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(200, 255, 42, 0.045) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 216px 216px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 20%, transparent 78%);
  animation: grid-shift 28s linear infinite;
}

@keyframes grid-shift {
  to { background-position: 72px -72px; }
}

.layer-charts svg {
  width: 100%;
  height: 100%;
}

.trace {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 8 16;
}

.trace-a {
  stroke: rgba(200, 255, 42, 0.78);
  stroke-width: 2.6;
  animation: dash-run 14s linear infinite;
}

.trace-b {
  stroke: rgba(230, 122, 34, 0.35);
  stroke-width: 1.6;
  animation: dash-run 22s linear infinite reverse;
}

.trace-c {
  stroke: rgba(201, 163, 90, 0.32);
  stroke-width: 1.4;
  animation: dash-run 18s linear infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  animation: orb-float 12s ease-in-out infinite;
}

.orb-a {
  width: 220px;
  height: 220px;
  right: 16%;
  top: 18%;
  background: rgba(200, 255, 42, 0.22);
}

.orb-b {
  width: 140px;
  height: 140px;
  right: 32%;
  bottom: 22%;
  background: rgba(230, 122, 34, 0.16);
  animation-delay: -4s;
}

.orb-c {
  width: 90px;
  height: 90px;
  left: 18%;
  top: 28%;
  background: rgba(201, 163, 90, 0.16);
  animation-delay: -7s;
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(16px, -22px, 0) scale(1.08); }
}

.float-symbol {
  position: absolute;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(200, 255, 42, 0.46);
  text-shadow: 0 0 18px rgba(200, 255, 42, 0.25);
  animation: symbol-drift 22s ease-in-out infinite;
}

.s-1 { top: 16%; left: 8%; font-size: clamp(1rem, 2vw, 1.5rem); }
.s-2 { top: 28%; right: 8%; animation-delay: -6s; font-size: clamp(0.9rem, 1.8vw, 1.3rem); }
.s-3 { bottom: 28%; left: 18%; animation-delay: -11s; font-size: clamp(0.85rem, 1.6vw, 1.2rem); }
.s-4 { top: 58%; right: 22%; animation-delay: -16s; font-size: clamp(0.9rem, 1.7vw, 1.25rem); }

@keyframes symbol-drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.45; }
  50% { transform: translate3d(12px, -28px, 0); opacity: 0.9; }
}

.layer-forest {
  top: auto;
  height: 28vh;
  bottom: 0;
}

.forest-svg {
  width: 100%;
  height: 100%;
  fill: #03150f;
  opacity: 0.92;
}

.layer-fog {
  pointer-events: none;
  filter: blur(28px);
}

.fog-a {
  background: radial-gradient(ellipse at 30% 80%, rgba(180, 210, 200, 0.16), transparent 50%);
  animation: fog-drift 26s ease-in-out infinite;
}

.fog-b {
  background: radial-gradient(ellipse at 70% 88%, rgba(200, 255, 42, 0.08), transparent 46%);
  animation: fog-drift 32s ease-in-out infinite reverse;
}

@keyframes fog-drift {
  0%, 100% { transform: translate3d(-4%, 0, 0); }
  50% { transform: translate3d(5%, -2%, 0); }
}

.layer-vignette {
  background:
    linear-gradient(180deg, rgba(5, 9, 12, 0.28), transparent 18%, transparent 72%, rgba(5, 9, 12, 0.82)),
    radial-gradient(ellipse at center, transparent 40%, rgba(5, 9, 12, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: calc(var(--nav-h) + 12px) 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 11vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero-title-text {
  display: inline-block;
  position: relative;
  background-image: linear-gradient(105deg, #f6ffd2 0%, var(--lime) 28%, #f4ffe3 46%, #8ed418 68%, #7fbf12 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 #6a9a14)
    drop-shadow(0 2px 0 #4d7410)
    drop-shadow(0 10px 24px rgba(200, 255, 42, 0.28));
  animation: title-glow 4.8s ease-in-out infinite, shimmer 7s ease-in-out infinite;
}

@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 1px 0 #6a9a14) drop-shadow(0 2px 0 #4d7410) drop-shadow(0 10px 24px rgba(200, 255, 42, 0.22)); }
  50% { filter: drop-shadow(0 1px 0 #6a9a14) drop-shadow(0 2px 0 #4d7410) drop-shadow(0 16px 36px rgba(200, 255, 42, 0.5)); }
}

@keyframes shimmer {
  0%, 70% { background-position: 0% 50%; }
  85% { background-position: 80% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-tagline,
.hero-sub,
.section-lead {
  color: var(--muted);
  max-width: 38rem;
}

.hero-tagline {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #d7e2dc;
}

.hero-sub {
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.word-reveal span {
  display: inline-block;
  opacity: 0.28;
  transform: translateY(10px);
  filter: blur(4px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.word-reveal.is-on span {
  opacity: 1;
  transform: none;
  filter: none;
}

.word-reveal.is-on span:nth-child(2) { transition-delay: 0.05s; }
.word-reveal.is-on span:nth-child(3) { transition-delay: 0.1s; }
.word-reveal.is-on span:nth-child(4) { transition-delay: 0.15s; }
.word-reveal.is-on span:nth-child(5) { transition-delay: 0.2s; }
.word-reveal.is-on span:nth-child(6) { transition-delay: 0.25s; }
.word-reveal.is-on span:nth-child(7) { transition-delay: 0.3s; }
.word-reveal.is-on span:nth-child(8) { transition-delay: 0.35s; }
.word-reveal.is-on span:nth-child(9) { transition-delay: 0.4s; }
.word-reveal.is-on span:nth-child(10) { transition-delay: 0.45s; }
.word-reveal.is-on span:nth-child(11) { transition-delay: 0.5s; }
.word-reveal.is-on span:nth-child(12) { transition-delay: 0.55s; }
.word-reveal.is-on span:nth-child(13) { transition-delay: 0.6s; }

.ca-box {
  margin-top: 28px;
  padding: 16px 18px;
  width: min(100%, 460px);
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ca-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.ca-label,
.ca-status {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ca-label { color: var(--gold); }
.ca-status { color: var(--muted); }

.ca-row,
.token-fields dd {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-value,
.token-fields code {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--lime);
}

.ca-copy {
  margin-left: auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(200, 255, 42, 0.28);
  border-radius: 999px;
  background: rgba(200, 255, 42, 0.08);
  color: var(--text);
  cursor: pointer;
}

.ca-copy.is-copied {
  background: rgba(200, 255, 42, 0.22);
  color: #102008;
}

.copy-done { display: none; }
.ca-copy.is-copied .copy-default { display: none; }
.ca-copy.is-copied .copy-done { display: inline; }

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

.hero-stage {
  position: relative;
  min-height: min(72vh, 760px);
  display: grid;
  place-items: center;
}

.mascot-glow,
.mascot-shadow,
.mascot-wrap {
  grid-area: 1 / 1;
}

.mascot-glow {
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(200, 255, 42, 0.52) 0%, rgba(201, 163, 90, 0.22) 38%, transparent 70%);
  filter: blur(12px);
  animation: glow-pulse 5.5s ease-in-out infinite;
}

.mascot-shadow {
  width: 56%;
  height: 18%;
  align-self: end;
  margin-bottom: 4%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(10px);
  animation: shadow-breathe 6s ease-in-out infinite;
}

.mascot-wrap {
  width: min(100%, 560px);
  animation: mascot-float 7s ease-in-out infinite;
  will-change: transform;
}

.mascot {
  width: 100%;
  height: auto;
  transform-origin: 50% 60%;
}

@keyframes mascot-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.015); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes shadow-breathe {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(0.88); opacity: 0.45; }
}

.hero-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 12, 0.95));
  z-index: 2;
}

.section-break {
  position: relative;
  height: 110px;
  margin-top: -40px;
  z-index: 4;
}

.section-break svg {
  width: 100%;
  height: 100%;
  fill: #06140f;
}

.break-fog {
  position: absolute;
  inset: -20px 0 auto;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(180, 210, 190, 0.16), transparent 70%);
  filter: blur(16px);
}

.story,
.principles,
.token,
.enter,
.gallery,
.cta,
.footer {
  position: relative;
  scroll-margin-top: 72px;
}

.story {
  padding: 96px 0 80px;
  background:
    linear-gradient(180deg, #06140f 0%, #081820 50%, #071018 100%);
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 42, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: grid-shift 36s linear infinite;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.story-forest {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(180deg, transparent, rgba(4, 14, 10, 0.88)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23040c0a' d='M0 180 L0 110 L40 70 L70 120 L110 30 L150 115 L200 45 L250 125 L300 20 L350 120 L410 50 L470 130 L530 25 L590 125 L650 55 L710 135 L770 30 L830 120 L900 40 L960 130 L1020 50 L1080 140 L1140 35 L1200 125 L1260 60 L1320 135 L1380 70 L1440 120 L1440 180 Z'/%3E%3C/svg%3E") bottom / 100% 70% no-repeat;
}

.story-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.story-line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(200, 255, 42, 0.7));
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
}

.story.is-drawing .story-line {
  animation: draw-line 4.5s var(--ease) forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.section-head,
.story-sequence,
.principle-grid,
.token-layout,
.steps,
.gallery-frame,
.cta-copy,
.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2,
.cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section-lead {
  margin: 14px 0 0;
}

.story-sequence {
  display: grid;
  gap: 28px;
  padding-bottom: 20px;
}

.story-line-item {
  margin: 0;
  font-size: clamp(1.35rem, 3.4vw, 2.7rem);
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: rgba(232, 240, 236, 0.22);
  filter: blur(3px);
  transform: translateY(18px) scale(0.985);
  transition: color 0.7s var(--ease), filter 0.7s var(--ease), transform 0.7s var(--ease), text-shadow 0.7s ease;
}

.story-line-item.is-lit {
  color: var(--text);
  filter: none;
  transform: none;
}

.story-line-item.accent.is-lit {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(200, 255, 42, 0.28);
}

.story-line-item.accent-orange.is-lit {
  color: #ffb067;
  text-shadow: 0 0 22px rgba(230, 122, 34, 0.3);
}

.story-line-item.ticker-mark.is-lit {
  color: var(--lime);
  letter-spacing: 0.08em;
}

.story-line-item.mute-mark.is-lit {
  color: var(--muted);
}

.principles,
.enter {
  padding: 108px 0;
  background: linear-gradient(180deg, #071018, #08160f 50%, #07141a);
}

.principle-grid,
.steps {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 22px;
}

.glass-card,
.glass-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 32, 28, 0.62), rgba(8, 16, 18, 0.72));
  border: 1px solid rgba(200, 255, 42, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.glass-card {
  padding: 32px 28px 34px;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(200, 255, 42, 0.12), transparent 70%);
  pointer-events: none;
}

.card-icon {
  width: 56px;
  height: 56px;
  color: var(--lime);
  margin-bottom: 22px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-kicker,
.step-num {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 800;
}

.glass-card h3,
.step h3 {
  margin: 10px 0 10px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.glass-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.token {
  padding: 100px 0 120px;
  overflow: hidden;
}

.token-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(200, 255, 42, 0.08), transparent 42%),
    linear-gradient(180deg, #08141a, #0a1c16 60%, #071018);
}

.token-layout {
  position: relative;
  z-index: 1;
}

.token-panel {
  overflow: hidden;
}

.token-banner {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(200, 255, 42, 0.12);
}

.token-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 0;
  padding: 32px 32px 12px;
}

.token-fields dt {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.token-fields dd {
  margin: 6px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 255, 42, 0.1);
  color: var(--lime);
  border: 1px solid rgba(200, 255, 42, 0.22);
  font-size: 0.85rem;
}

.token-links {
  display: flex;
  gap: 12px;
  padding: 8px 32px 32px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step {
  padding: 32px 28px;
}

.gallery {
  padding: 40px 0 120px;
}

.gallery-frame {
  position: relative;
  display: block;
  width: min(1040px, calc(100% - 48px));
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}

.gallery-frame:hover img,
.gallery-frame:focus-visible img {
  transform: scale(1.035);
}

.gallery-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle 240px at var(--spot-x, 50%) var(--spot-y, 50%), rgba(200, 255, 42, 0.14), transparent 62%);
  mix-blend-mode: screen;
}

.cta {
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.cta-scene {
  position: absolute;
  inset: 0;
}

.cta-horizon {
  position: absolute;
  inset: auto 0 18%;
  height: 42%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200, 255, 42, 0.16), transparent 55%),
    linear-gradient(180deg, transparent, rgba(10, 28, 36, 0.7));
}

.cta-moon {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 12%;
  right: 16%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #eaff9a, var(--lime) 40%, rgba(200, 255, 42, 0.05) 70%, transparent 72%);
  filter: blur(2px);
  box-shadow: 0 0 80px rgba(200, 255, 42, 0.25);
  animation: glow-pulse 7s ease-in-out infinite;
}

.cta-city {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16%;
  height: 22%;
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(180, 210, 220, 0.08) 18px 20px, transparent 20px 36px),
    linear-gradient(180deg, transparent 20%, rgba(8, 18, 26, 0.9));
  mask-image: linear-gradient(180deg, transparent, #000 30%);
}

.cta-chart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  width: 100%;
  height: 36%;
}

.cta-chart path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 8px rgba(200, 255, 42, 0.8));
  stroke-dasharray: 12 18;
  animation: dash-run 16s linear infinite;
}

.cta-forest {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 28%;
  fill: #040c0a;
}

.cta-fog {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(190, 220, 200, 0.16), transparent 70%);
  filter: blur(18px);
  animation: fog-drift 20s ease-in-out infinite;
}

.cta-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  text-transform: uppercase;
}

.cta-sub {
  color: var(--muted);
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.footer {
  padding: 48px 0 56px;
  background: #05080a;
  border-top: 1px solid rgba(200, 255, 42, 0.1);
}

.footer-inner {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-chain {
  margin: 0;
  color: var(--lime);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.disclaimer {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 42rem;
  font-size: 0.92rem;
}

.lightbox {
  width: min(92vw, 980px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: #05080a;
  overflow: auto;
}

.lightbox::backdrop {
  background: rgba(3, 6, 8, 0.82);
}

.lightbox img {
  width: 100%;
  height: auto;
}

.lightbox-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 56px);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 12, 10, 0.7);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal[data-stagger="2"] { transition-delay: 0.1s; }
.reveal[data-stagger="3"] { transition-delay: 0.2s; }

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .nav-links a,
  .nav-links .btn {
    padding: 14px 6px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    padding: 20px 0 48px;
  }

  .hero-stage {
    order: -1;
    min-height: 38vh;
  }

  .mascot-wrap {
    width: min(68vw, 360px);
  }

  .hero {
    min-height: auto;
  }

  .principle-grid,
  .steps,
  .token-fields {
    grid-template-columns: 1fr;
  }

  .market-line {
    opacity: 0.28;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0 16px;
  }

  .hero-inner,
  .section-head,
  .story-sequence,
  .principle-grid,
  .token-layout,
  .steps,
  .gallery-frame,
  .cta-copy,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .hero-title {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-actions,
  .cta-actions,
  .token-links {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .token-fields,
  .token-links {
    padding-left: 20px;
    padding-right: 20px;
  }

  .float-symbol {
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .story-line-item,
  .word-reveal span {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  body { cursor: auto; }
  .cursor { display: none; }
}
