:root {
  --acid: #b7ff00;
  --acid-2: #e7ff63;
  --ink: #09090b;
  --ink-2: #15151a;
  --paper: #f3f0e8;
  --cyan: #19e5e1;
  --violet: #a33dff;
  --hot: #ff4fd8;
  --line: rgba(9, 9, 11, .2);
  --shadow: 0 18px 60px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--acid); color: var(--ink); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: .22;
  background: radial-gradient(circle, rgba(183,255,0,.58), rgba(25,229,225,.18) 36%, transparent 68%);
  transform: translate(-50%, -50%);
  filter: blur(18px);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 3vw, 48px);
  background: linear-gradient(to bottom, rgba(9,9,11,.8), rgba(9,9,11,0));
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.topbar.scrolled {
  background: rgba(9,9,11,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .08em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--acid);
  color: var(--ink);
  border: 2px solid currentColor;
  box-shadow: 4px 4px 0 var(--violet);
}
.mini-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.mini-nav a,
.sound-btn {
  color: white;
  font: 800 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .08em;
  text-decoration: none;
}
.mini-nav a { opacity: .72; transition: opacity .2s ease, color .2s ease; }
.mini-nav a:hover { opacity: 1; color: var(--acid); }
.sound-btn {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  padding: 10px 12px;
  cursor: pointer;
}
.sound-btn:hover { border-color: var(--acid); color: var(--acid); }

.panel {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  overflow: hidden;
}
.section-inner {
  position: relative;
  z-index: 5;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(110px, 12vw, 160px) 0 clamp(80px, 10vw, 130px);
}
.section-no {
  position: absolute;
  top: 100px;
  right: clamp(20px, 4vw, 60px);
  z-index: 4;
  font: 1000 clamp(64px, 10vw, 150px)/.8 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: rgba(9,9,11,.08);
  letter-spacing: -.06em;
}
.section-no.light { color: rgba(255,255,255,.09); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--acid);
  font: 900 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .16em;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; }
.eyebrow.dark { color: var(--ink); }

.hero { background: var(--ink); min-height: 100svh; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.38) 44%, rgba(0,0,0,.22) 70%, rgba(0,0,0,.45) 100%),
    linear-gradient(0deg, rgba(0,0,0,.65), transparent 44%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(183,255,0,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(183,255,0,.25) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, black, transparent 74%);
}
.hero-content {
  position: relative;
  z-index: 6;
  min-height: 100svh;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero h1,
.gallery-title h2,
.roadmap-heading h2,
.chart-copy h2,
.copy-block h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(96px, 21vw, 300px);
  line-height: .72;
  color: var(--acid);
  text-shadow: 8px 8px 0 rgba(163,61,255,.55), 14px 14px 0 rgba(25,229,225,.22);
}
.hero-copy {
  max-width: 730px;
  margin: 28px 0 16px;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.08;
  text-transform: uppercase;
}
.token-chip {
  margin: 4px 0 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.34);
  font: 900 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
}
.link-row { display: flex; flex-wrap: wrap; gap: 10px; }
.link-row a,
.final-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 2px solid currentColor;
  text-decoration: none;
  font: 1000 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .06em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.link-row a:hover,
.final-links a:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--acid);
  background: white;
  color: var(--ink);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .2em;
  transform: translateX(-50%);
}
.scroll-cue i { display: block; width: 54px; height: 1px; background: rgba(255,255,255,.4); overflow: hidden; }
.scroll-cue i::after { content: ""; display: block; width: 18px; height: 1px; background: var(--acid); animation: slide 1.4s ease-in-out infinite; }
@keyframes slide { from { transform: translateX(-18px); } to { transform: translateX(54px); } }

.lore {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.7), transparent 22%),
    linear-gradient(135deg, var(--acid) 0%, var(--acid-2) 45%, #8dff47 100%);
}
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}
.copy-block h2 { font-size: clamp(52px, 7.5vw, 110px); line-height: .82; max-width: 820px; }
.copy-block p { max-width: 680px; font-size: clamp(16px, 1.5vw, 21px); line-height: 1.55; font-weight: 650; }
.quote-box {
  display: inline-block;
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--ink);
  color: white;
  box-shadow: 7px 7px 0 var(--violet);
  font: 1000 14px/1.1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .06em;
}
.portrait-frame {
  position: relative;
  border: 4px solid var(--ink);
  background: var(--ink);
  padding: 12px;
  box-shadow: 18px 18px 0 rgba(9,9,11,.18);
  transform: rotate(2deg);
}
.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
}
.portrait-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  background: var(--acid);
  color: var(--ink);
  font: 1000 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.flying-grizz {
  position: absolute;
  left: 0;
  bottom: 6%;
  z-index: 9;
  width: clamp(120px, 17vw, 260px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 20px;
  image-rendering: pixelated;
  box-shadow: 12px 12px 0 rgba(163,61,255,.48);
  will-change: transform;
  pointer-events: none;
}

.roadmap {
  background: var(--ink);
  color: white;
}
.roadmap::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -230px;
  top: -180px;
  background: radial-gradient(circle, rgba(163,61,255,.35), transparent 68%);
  filter: blur(30px);
}
.roadmap-bg-word {
  position: absolute;
  left: -3vw;
  bottom: -5vw;
  color: rgba(183,255,0,.04);
  font: 1000 32vw/.72 Impact, Haettenschweiler, sans-serif;
  letter-spacing: -.08em;
  pointer-events: none;
}
.roadmap-heading { max-width: 860px; margin-bottom: 58px; }
.roadmap-heading h2 { font-size: clamp(56px, 8vw, 118px); line-height: .82; }
.roadmap-heading p { color: rgba(255,255,255,.62); font-weight: 700; }
.roadmap-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.roadmap-line::before {
  content: "";
  position: absolute;
  left: 50%; top: -14px; bottom: -14px;
  width: 2px;
  background: linear-gradient(var(--acid), var(--violet), var(--cyan));
  opacity: .4;
}
.roadmap-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.roadmap-card:nth-child(2n) { transform: translateY(44px); }
.phase { color: var(--acid); font: 900 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .14em; }
.roadmap-card h3 { margin: 44px 0 12px; font-size: clamp(28px, 3vw, 42px); line-height: .92; }
.roadmap-card p { max-width: 500px; margin: 0; color: rgba(255,255,255,.67); line-height: 1.55; }

.gallery {
  background: var(--paper);
  color: var(--ink);
}
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(9,9,11,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(9,9,11,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.gallery-title { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 38px; }
.gallery-title h2 { font-size: clamp(70px, 12vw, 180px); line-height: .72; }
.gallery-title p { max-width: 260px; font-weight: 750; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.gallery-card {
  grid-column: span 4;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-card--wide { grid-column: span 6; }
.gallery-card:nth-child(2) { transform: translateY(28px) rotate(1.2deg); }
.gallery-card:nth-child(3) { transform: rotate(-1deg); }
.gallery-card:nth-child(4) { transform: translateY(18px) rotate(.8deg); }
.gallery-card:nth-child(5) { transform: translateY(4px) rotate(-.7deg); }
.gallery-card:hover { transform: translateY(-8px) rotate(0); box-shadow: 12px 12px 0 var(--violet); }
.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
  background: var(--acid);
}
.gallery-card figcaption {
  padding: 12px;
  color: white;
  font: 900 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
}

.chart-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(163,61,255,.25), transparent 34%),
    linear-gradient(180deg, #0d0d11, #050506);
  color: white;
}
.chart-inner { width: min(1300px, calc(100% - 32px)); }
.chart-copy { margin-bottom: 26px; }
.chart-copy h2 { font-size: clamp(56px, 8vw, 120px); line-height: .82; }
.chart-copy p { color: rgba(255,255,255,.63); }
.chart-shell {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #0b0b0e;
  box-shadow: 0 34px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(183,255,0,.06) inset;
}
.chart-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font: 900 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .1em;
}
.chart-topline span { color: var(--acid); }
.chart-topline a { color: white; text-decoration: none; opacity: .7; }
.chart-topline a:hover { opacity: 1; color: var(--acid); }
.chart-shell iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 560px;
  border: 0;
  background: #0b0b0e;
}
.final-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.final-links a { color: white; }
.disclaimer {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  margin-top: 34px;
  padding: 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.6);
  font-size: 13px;
  line-height: 1.6;
}
.disclaimer strong { color: var(--acid); letter-spacing: .12em; }
.disclaimer p { margin: 0; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  color: rgba(255,255,255,.42);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
}
.footer a { text-decoration: none; color: var(--acid); }

.music-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: rgba(9,9,11,.92);
  backdrop-filter: blur(16px);
}
.music-gate[hidden] { display: none; }
.music-gate button {
  min-width: 240px;
  padding: 16px 20px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font: 1000 12px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .1em;
  cursor: pointer;
}
.music-gate button:first-child { background: var(--acid); color: var(--ink); border-color: var(--acid); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: auto auto; justify-content: space-between; }
  .mini-nav { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 560px; }
  .roadmap-line { grid-template-columns: 1fr; }
  .roadmap-line::before { display: none; }
  .roadmap-card:nth-child(2n) { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card, .gallery-card--wide { grid-column: span 1; }
  .gallery-title { display: block; }
  .gallery-title p { max-width: 100%; }
  .disclaimer { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 640px) {
  .topbar { padding: 12px 14px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 28px; height: 28px; }
  .sound-btn { padding: 9px 10px; font-size: 10px; }
  .hero-content { width: min(100% - 28px, 1200px); padding-top: 120px; }
  .hero h1 { font-size: clamp(88px, 35vw, 160px); }
  .hero-copy { font-size: 17px; }
  .link-row a { flex: 1 1 calc(50% - 10px); }
  .section-inner { width: min(100% - 28px, 1200px); }
  .section-no { top: 88px; }
  .copy-block h2,
  .roadmap-heading h2,
  .chart-copy h2 { font-size: clamp(48px, 15vw, 78px); }
  .flying-grizz { bottom: 3%; width: 118px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-card, .gallery-card--wide { grid-column: span 1; }
  .gallery-card:nth-child(n) { transform: none; }
  .gallery-title h2 { font-size: clamp(70px, 24vw, 120px); }
  .chart-shell iframe { min-height: 520px; height: 70vh; }
  .final-links a { flex: 1 1 calc(50% - 10px); }
  .cursor-glow { display: none; }
}

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