/* ============================================================
   Design tokens — OKLCH, all neutrals tinted toward hue 220° (cool navy-blue)
   ============================================================ */
:root {
  --gold:               oklch(82% 0.155 210);
  --gold-dim:           oklch(72% 0.125 210);
  --gold-dark:          oklch(45% 0.095 210);
  --gold-glow:          oklch(82% 0.155 210 / 0.12);
  --gold-glow-strong:   oklch(82% 0.155 210 / 0.30);
  --ember:              oklch(42% 0.17 24);
  --ember-soft:         oklch(50% 0.14 28 / 0.18);
  --surface-low:        oklch(9%   0.042 242);
  --surface:            oklch(13%  0.042 240);
  --surface-high:       oklch(18%  0.046 237);
  --bg-glow: radial-gradient(ellipse 80% 60% at 50% 80%, oklch(55% 0.18 195 / 0.10) 0%, transparent 70%);
  --on-surface:         oklch(92%  0.005 220);
  --on-surface-variant: oklch(65%  0.012 215);
  --outline:            oklch(45%  0.015 220);
  --outline-variant:    oklch(22%  0.015 230 / 0.4);
  --font-serif: 'Plus Jakarta Sans', sans-serif;
  --font-sans:  'Plus Jakarta Sans', sans-serif;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  background: var(--surface-low)  var(--bg-glow);
  color: var(--on-surface);
  font-family: var(--font-sans);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: none; }
a, button, [role="button"] { cursor: none; }

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

/* ============================================================
   Custom cursor
   ============================================================ */
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.22s cubic-bezier(0.25,0,0,1),
              height 0.22s cubic-bezier(0.25,0,0,1),
              border-color 0.22s,
              opacity 0.22s;
  opacity: 0;
  mix-blend-mode: normal;
}

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}

body.cursor-ready #cursor-ring,
body.cursor-ready #cursor-dot { opacity: 1; }

body.cursor-hover #cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  box-shadow: 0 0 16px 2px var(--gold-glow);
}

body.cursor-click #cursor-ring {
  width: 22px;
  height: 22px;
  border-color: var(--ember);
}

/* ============================================================
   Smoke keyframes
   ============================================================ */
@keyframes smokeDrift {
  0%   { transform: translate(0, 0)   scale(1);    opacity: 0.55; }
  25%  { transform: translate(5%, -6%)  scale(1.07); opacity: 0.42; }
  50%  { transform: translate(-3%, -10%) scale(1.14); opacity: 0.30; }
  75%  { transform: translate(7%, -14%) scale(1.09); opacity: 0.38; }
  100% { transform: translate(0, 0)   scale(1);    opacity: 0.55; }
}

@keyframes smokeDrift2 {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.40; }
  33%  { transform: translate(-6%, -4%) scale(1.10); opacity: 0.28; }
  66%  { transform: translate(4%, -8%)  scale(1.06); opacity: 0.35; }
  100% { transform: translate(0, 0)    scale(1);    opacity: 0.40; }
}

@keyframes gemPulse {
  0%, 100% { filter: brightness(1)    saturate(1); }
  50%       { filter: brightness(1.06) saturate(1.09); }
}

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}

@keyframes splashPulse {
  0%   { transform: scale(0.7); opacity: 0.75; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes emberFlicker {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  40%       { opacity: 0.55; transform: scale(1.08); }
  70%       { opacity: 0.28; transform: scale(0.97); }
}

/* ============================================================
   Smoke helper class
   ============================================================ */
.smoke {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  will-change: transform, opacity;
}

/* ============================================================
   SPLASH
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: oklch(9% 0.042 242);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  clip-path: inset(0% 0% round 0px);
  overflow: hidden;
}

.splash-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 68%;
  opacity: 0;
  transition: opacity 0.1s;
  pointer-events: none;
  user-select: none;
  transform-origin: center 68%;
  will-change: transform, opacity;
}

.splash-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, oklch(8% 0.018 240 / 0.95) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%,   oklch(8% 0.018 240 / 0.85) 0%, transparent 50%),
    radial-gradient(ellipse at 0%   50%, oklch(8% 0.018 240 / 0.75) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 50%, oklch(8% 0.018 240 / 0.75) 0%, transparent 45%);
  pointer-events: none;
}

/* Full-black overlay driven to opaque during zoom exit */
.splash-dark {
  position: absolute;
  inset: 0;
  background: oklch(9% 0.042 242);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.splash-ember {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 40%;
  background: radial-gradient(ellipse at 50% 100%,
    oklch(42% 0.17 24 / 0.28) 0%,
    oklch(55% 0.14 45 / 0.12) 35%,
    transparent 70%
  );
  animation: emberFlicker 5.5s ease-in-out infinite;
  pointer-events: none;
}

.splash-smoke {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse,
    oklch(82% 0.155 210 / 0.06) 0%,
    transparent 70%
  );
  filter: blur(80px);
}

.splash-smoke-1 {
  top: -100px; left: -100px;
  animation: smokeDrift 18s ease-in-out infinite;
}
.splash-smoke-2 {
  bottom: -100px; right: -80px;
  animation: smokeDrift2 22s ease-in-out infinite;
}

.splash-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
  opacity: 0;
}

.splash-brand {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 0 60px oklch(82% 0.155 210 / 0.5);
}

.splash-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  animation: labelColorPulse 3s ease-in-out infinite;
}

@keyframes labelColorPulse {
  0%, 100% { color: oklch(82% 0.155 210 / 0.5); }
  50%       { color: oklch(82% 0.155 210 / 1);   }
}

/* ============================================================
   Shared section base + labels
   ============================================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: var(--gold);
  margin-bottom: 22px;
}

.section {
  padding: clamp(80px, 10vw, 130px) clamp(24px, 6vw, 88px);
  position: relative;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1em 2.8em;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--gold);
  background-color: var(--gold);
  color: oklch(8% 0.022 230);
  box-shadow: 0 0 20px 2px var(--gold-glow);
  cursor: none;
  transition: background-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn-primary::before {
  content: "";
  position: absolute;
  left: -5em; width: 4em; height: 100%; top: 0;
  background: linear-gradient(to right, transparent, oklch(100% 0 0 / 0.2), transparent);
  transition: transform 0.55s cubic-bezier(0.25, 0, 0, 1);
}

.btn-primary:hover {
  background-color: var(--gold-dim);
  box-shadow: 0 0 36px 6px var(--gold-glow-strong);
}
.btn-primary:hover::before { transform: translateX(22em); }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1em 2.8em;
  border: 1px solid oklch(55% 0.04 230);
  color: oklch(80% 0.04 230);
  background: transparent;
  cursor: none;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; width: 100%; z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: oklch(8% 0.018 240 / 0.85);
  height: 64px;
  padding: 0 clamp(24px, 6vw, 88px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled { border-color: oklch(82% 0.155 210 / 0.15); }

.nav-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--outline);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-whitepaper {
  border: 1px solid oklch(55% 0.04 230 / 0.5) !important;
  border-bottom: 1px solid oklch(55% 0.04 230 / 0.5) !important;
  padding: 4px 12px !important;
}
.nav-whitepaper:hover {
  border-color: var(--gold) !important;
}

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: transparent; border: none;
  color: var(--gold); cursor: pointer; padding: 8px; line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle .material-symbols-outlined { font-size: 24px; }

/* ============================================================
   Hero — split layout (text left, monolith right)
   ============================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-glow), var(--surface-low);
}

.hero-split {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 100vh;
}

/* Left panel */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px clamp(24px, 5vw, 72px) 80px clamp(24px, 6vw, 88px);
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 88px);
  color: var(--on-surface);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.hero-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--on-surface-variant);
  line-height: 1.78;
  max-width: 46ch;
  margin-bottom: 44px;
}

.hero-socials {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--outline-variant);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--outline);
  transition: color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.social-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px 2px var(--gold-glow);
}

/* Right panel — monolith image */
.hero-right {
  position: relative;
  overflow: hidden;
}

.monolith-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

/* ============================================================
   Metallic shimmer on headline em
   ============================================================ */
@keyframes shimmerSweep {
  0%   { background-position: 160% 0; }
  100% { background-position: -160% 0; }
}

.hero-headline em {
  background: linear-gradient(
    105deg,
    var(--gold-dark)          15%,
    var(--gold)               34%,
    oklch(90% 0.18 200)       50%,
    var(--gold)               66%,
    var(--gold-dark)          85%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerSweep 3.8s ease-in-out infinite;
  font-style: italic;
  display: inline-block;
}

/* Cyan breathing glow — GSAP animates opacity */
.monolith-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 42%,
    oklch(82% 0.155 210 / 0.40) 0%,
    oklch(65% 0.12  215 / 0.16) 40%,
    transparent 72%
  );
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
  will-change: opacity;
}

/* Ember warmth at base — GSAP animates opacity */
.monolith-ember {
  display: none;
}

/* Edge fade — blends right panel into page on left edge */
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    oklch(9% 0.042 242) 0%,
    oklch(8% 0.018 240 / 0.35) 18%,
    transparent 48%
  );
  pointer-events: none;
  z-index: 1;
}

/* Smoke in hero right panel */
.smoke-hero-1 {
  width: 360px; height: 360px;
  top: 10%; left: 5%;
  background: radial-gradient(ellipse,
    oklch(82% 0.155 210 / 0.08) 0%,
    transparent 70%
  );
  animation: smokeDrift 20s ease-in-out infinite;
  z-index: 2;
}

.smoke-hero-2 {
  width: 280px; height: 280px;
  bottom: 15%; right: 8%;
  background: radial-gradient(ellipse,
    oklch(42% 0.17 24 / 0.08) 0%,
    transparent 70%
  );
  animation: smokeDrift2 26s ease-in-out infinite;
  z-index: 2;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: clamp(24px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  opacity: 0.4;
  z-index: 3;
}

.scroll-bounce {
  display: flex;
  animation: bounceY 2.4s infinite cubic-bezier(0.37, 0, 0.63, 1);
}

.scroll-hint .material-symbols-outlined { font-size: 22px; }

.scroll-hint-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============================================================
   Why NexusTone
   ============================================================ */
.why-section {
  background: var(--surface);
  overflow: hidden;
  padding-bottom: 0;
}

/* Background image layer */
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  animation: gemPulse 8s ease-in-out infinite;
}

.why-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      var(--surface) 0%,
      transparent 25%,
      transparent 75%,
      var(--surface) 100%
    ),
    linear-gradient(to right,
      var(--surface) 0%,
      transparent 30%,
      transparent 70%,
      var(--surface) 100%
    );
}

.smoke-why-1 {
  width: 480px; height: 480px;
  top: -80px; right: -80px;
  background: radial-gradient(ellipse,
    oklch(82% 0.155 210 / 0.06) 0%,
    transparent 70%
  );
  animation: smokeDrift 24s ease-in-out infinite;
}

.smoke-why-2 {
  width: 380px; height: 380px;
  bottom: -60px; left: 10%;
  background: radial-gradient(ellipse,
    oklch(42% 0.17 24 / 0.06) 0%,
    transparent 70%
  );
  animation: smokeDrift2 19s ease-in-out infinite;
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  max-width: 1200px;
}

.why-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  color: var(--on-surface);
  line-height: 1.1;
  margin-bottom: 32px;
}

.why-body {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--on-surface-variant);
  line-height: 1.8;
  max-width: 46ch;
}
.why-body + .why-body { margin-top: 20px; }

/* Utilities — icon-led rows */
.why-utilities {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.utility-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 0;
  border-top: 1px solid var(--outline-variant);
  transition: border-color 0.3s;
}

.utility-item:last-child { border-bottom: 1px solid var(--outline-variant); }
.utility-item:hover      { border-color: oklch(82% 0.155 210 / 0.25); }

.utility-icon {
  font-size: 22px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
  font-variation-settings: 'FILL' 1;
  transition: opacity 0.25s;
}
.utility-item:hover .utility-icon { opacity: 1; }

.utility-heading {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 8px;
  transition: color 0.25s;
}
.utility-item:hover .utility-heading { color: var(--gold); }

.utility-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.72;
  max-width: 38ch;
}

/* ============================================================
   Statement band
   ============================================================ */
.statement-band {
  background: transparent;
  border-top: 1px solid var(--outline-variant);
  border-bottom: none;
  padding: 40px clamp(24px, 6vw, 88px);
  overflow: hidden;
  position: relative;
}

.smoke-statement {
  width: 600px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse,
    oklch(82% 0.155 210 / 0.05) 0%,
    transparent 70%
  );
  animation: smokeDrift 30s ease-in-out infinite;
}

.statement-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--gold);
  opacity: 0.42;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Horizontal scroll — Staking Overview
   ============================================================ */
.h-scroll-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: var(--surface-low);
}

.h-scroll-track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  will-change: transform;
}

.h-panel {
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 8vw, 120px);
}

/* Pagination indicator lines */
.h-pagination {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.h-page-dot {
  width: 28px;
  height: 25px;
  border: none;
  background: transparent;
  position: relative;
  cursor: none;
  flex-shrink: 0;
  transition: width 0.35s ease;
}

.h-page-dot::before {
  content: '';
  position: absolute;
  inset: 10px 0;
  border-radius: 3px;
  background: var(--on-surface-variant);
  opacity: 0.35;
  transition: opacity 0.35s ease, background-color 0.35s ease;
}

.h-page-dot.active {
  width: 52px;
}

.h-page-dot.active::before {
  background: var(--gold);
  opacity: 1;
}

/* Panel 0 — Intro */
.h-panel-intro {
  gap: 28px;
}

.h-intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.15;
  max-width: 18ch;
}

.h-intro-heading em {
  font-style: normal;
  color: var(--gold);
}

.h-intro-sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--on-surface-variant);
  max-width: 40ch;
}

.h-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--gold);
  opacity: 0.5;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.h-scroll-cue .material-symbols-outlined {
  font-size: 20px;
  animation: bounceX 2s ease-in-out infinite;
}

@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(7px); }
}

/* Panel 1 — Referral */
.h-panel-referral {
  align-items: center;
}

.h-card {
  background: var(--surface-high);
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 44px);
  width: min(560px, 90vw);
}

.h-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.h-icon-badge {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, oklch(78% 0.18 195) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.h-icon-badge .material-symbols-outlined {
  font-size: 22px;
  color: oklch(10% 0.03 240);
}

.h-card-title {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--on-surface);
}

.h-title-accent { color: var(--gold); }

.h-card-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--on-surface-variant);
  margin-top: 3px;
}

.h-referral-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 20px;
}

.staking-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 12px;
  font-style: italic;
}

.h-list-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface-variant);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.referral-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.referral-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 10px;
}

.ref-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, oklch(78% 0.18 195) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: oklch(10% 0.03 240);
  flex-shrink: 0;
}

.ref-name {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--on-surface);
}

.ref-pct {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.h-card-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--on-surface-variant);
  line-height: 1.6;
  opacity: 0.7;
}

/* Panel 2 — Tokenomics */
.h-panel-tokenomics {
  gap: 16px;
  align-items: center;
  text-align: center;
}

.h-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--on-surface);
}

.h-section-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--on-surface-variant);
  margin-bottom: 32px;
  max-width: 52ch;
  line-height: 1.7;
}

.h-text-rows {
  display: flex;
  flex-direction: column;
  width: min(480px, 90vw);
}

.h-text-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--outline-variant);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.4vw, 16px);
}

.h-text-row:first-child { border-top: 1px solid var(--outline-variant); }

.h-row-label { color: var(--on-surface-variant); }

.h-row-value {
  font-weight: 700;
  color: var(--gold);
}

.h-panel-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--on-surface-variant);
  opacity: 0.6;
  margin-top: 16px;
}

.h-tok-columns {
  display: flex;
  gap: clamp(48px, 8vw, 120px);
  align-items: flex-start;
}

.h-col-heading {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: min(860px, 90vw);
  margin-top: 8px;
}

.tok-card {
  background: var(--surface-high);
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 32px);
}

.tok-card-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--on-surface);
  align-self: center;
}

.tok-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.tok-bar-row-2 { margin-top: 18px; }

.tok-bar-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--on-surface-variant);
}

.tok-bar-pct {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.tok-bar-track {
  height: 8px;
  background: var(--surface);
  border-radius: 99px;
  overflow: hidden;
}

.tok-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(to right, var(--gold), oklch(78% 0.18 195));
}

.tok-bar-fill-dim {
  background: linear-gradient(to right,
    oklch(55% 0.14 270),
    oklch(65% 0.16 280)
  );
}

.staking-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.staking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--outline-variant);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--on-surface-variant);
}

.staking-row:last-child { border-bottom: none; }

.apr-badge {
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   Waitlist
   ============================================================ */
.waitlist-section {
  background: var(--bg-glow), var(--surface-low);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, oklch(55% 0.12 210 / 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, oklch(40% 0.08 225 / 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.smoke-waitlist {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(ellipse,
    oklch(82% 0.155 210 / 0.06) 0%,
    transparent 70%
  );
  animation: smokeDrift2 22s ease-in-out infinite;
}

.waitlist-inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(32px, 4vw, 48px);
  max-width: 800px;
}

.waitlist-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.waitlist-form-wrap {
  display: flex;
  justify-content: center;
}

.waitlist-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 62px);
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 20px;
}

.waitlist-body {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--on-surface-variant);
  line-height: 1.78;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 14px;
}

.waitlist-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--on-surface);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 4px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s;
}
.waitlist-input::placeholder { color: oklch(68% 0.012 215 / 0.3); }
.waitlist-input:focus        { border-bottom-color: var(--gold); }

.waitlist-note {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--outline);
  letter-spacing: 0.06em;
}

/* ============================================================
   Footer
   ============================================================ */
/* ============================================================
   Where to Buy
   ============================================================ */
.buy-section {
  background: var(--bg-glow), var(--surface-low);
  overflow: hidden;
}

.buy-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.buy-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--on-surface);
  margin: 8px 0 32px;
}

/* Contract address bar */
.buy-contract {
  display: flex;
  align-items: center;
  gap: 10px;
  background: oklch(10% 0.015 230);
  border: 1px solid var(--outline-variant);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 40px;
  font-family: var(--font-mono, monospace);
}

.buy-contract-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: oklch(55% 0.04 230);
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid var(--outline-variant);
  margin-right: 4px;
}

.buy-contract-address {
  font-size: 12px;
  color: oklch(72% 0.08 230);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  text-align: left;
}

.buy-contract-bscscan {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: oklch(60% 0.06 230);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.buy-contract-bscscan:hover {
  color: var(--primary, oklch(70% 0.15 230));
}

.buy-contract-copy {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--outline-variant);
  border-radius: 5px;
  color: oklch(60% 0.06 230);
  font-family: var(--font-sans);
  font-size: 11px;
  padding: 4px 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.buy-contract-copy:hover {
  color: var(--primary, oklch(70% 0.15 230));
  border-color: var(--primary, oklch(70% 0.15 230));
}

/* Platform list */
.buy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  border: 1px solid var(--outline-variant);
  border-radius: 12px;
  overflow: hidden;
}

.buy-row {
  display: grid;
  grid-template-columns: 20px 160px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--outline-variant);
  transition: background 0.15s;
}

.buy-row:last-child { border-bottom: none; }

.buy-row:not(.buy-row--soon):hover {
  background: oklch(13% 0.02 230);
}

.buy-row--soon { opacity: 0.45; }

/* Status dot */
.buy-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.buy-dot--live {
  background: oklch(65% 0.18 145);
  box-shadow: 0 0 6px oklch(65% 0.18 145 / 0.7);
  animation: buy-pulse 2s ease-in-out infinite;
}

.buy-dot--soon { background: oklch(40% 0.04 230); }

@keyframes buy-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.buy-platform {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface);
}

.buy-platform-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: oklch(50% 0.04 230);
}

.buy-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary, oklch(70% 0.15 230));
  text-decoration: none;
  transition: opacity 0.15s;
}

.buy-link:hover { opacity: 0.7; }

.buy-link--soon {
  color: oklch(45% 0.04 230);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer {
  background: var(--surface);
  border-top: 1px solid var(--outline-variant);
  padding: 22px clamp(24px, 6vw, 88px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.footer-whitepaper {
  text-decoration: underline;
  color: inherit;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 13px;
  color: oklch(55% 0.04 230);
  letter-spacing: 0.01em;
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 16px;
}

.footer-social-link {
  color: oklch(55% 0.04 230);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: var(--primary, oklch(70% 0.15 230));
}

/* ============================================================
   Horizontal Scroll — How It Works
   ============================================================ */
.h-scroll-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

.h-scroll-track {
  display: flex;
  width: 300%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.h-panel {
  width: calc(100% / 3);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px clamp(24px, 10vw, 200px);
  text-align: center;
  flex-shrink: 0;
}

.h-panel-intro {
  align-items: flex-start;
  text-align: left;
}

.h-panel-intro .section-label {
  margin-bottom: 32px;
}

.h-intro-heading {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.h-intro-heading em {
  font-style: normal;
  color: var(--gold);
}

.h-intro-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: oklch(55% 0.04 230);
}

.h-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 16px;
}

.h-section-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: oklch(60% 0.04 230);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.h-col-heading {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
  max-width: 540px;
}

.h-text-rows {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
}

.h-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid oklch(100% 0 0 / 0.07);
  font-family: var(--font-sans);
}

.h-row-label {
  font-size: 15px;
  color: var(--on-surface);
  font-weight: 400;
}

.h-row-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.h-panel-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: oklch(45% 0.04 230);
  margin-top: 24px;
  max-width: 540px;
}

.h-pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.h-page-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: oklch(100% 0 0 / 0.2);
  border: none;
  cursor: none;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.h-page-dot.active {
  background: var(--gold);
  width: 48px;
}

/* ============================================================
   Responsive — tablet breakpoint
   ============================================================ */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  /* Monolith panel sits above the text on tablet/mobile */
  .hero-right {
    height: 65vw;
    min-height: 300px;
    order: -1;
  }

  .hero-left {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  /* Fade from bottom so text panel blends in cleanly */
  .hero-fade {
    background: linear-gradient(to bottom,
      oklch(9% 0.042 242) 0%,
      oklch(8% 0.018 240 / 0.45) 22%,
      transparent 52%
    );
  }

  .scroll-hint { display: none; }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waitlist-inner {
    gap: 32px;
  }

  .why-body    { max-width: none; }
  .utility-desc { max-width: none; }
}

/* ============================================================
   Responsive — mobile breakpoint
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav { height: 56px; padding: 0 20px; }
  .nav-logo-text { display: none; }

  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: oklch(8% 0.018 240 / 0.97);
    flex-direction: column;
    padding: 24px 20px; gap: 20px;
    border-bottom: 1px solid oklch(82% 0.155 210 / 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle     { display: flex; }

  /* Hero */
  .hero-right {
    height: 72vw;
    min-height: 260px;
  }

  .hero-left {
    padding: 40px 20px 64px;
  }

  .hero-headline {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-socials {
    margin-top: 28px;
  }

  /* Why section */
  .why-heading {
    font-size: clamp(30px, 8vw, 42px);
    margin-bottom: 20px;
  }

  .why-copy { text-align: left; }

  .utility-item {
    padding: 24px 0;
    gap: 16px;
  }

  .utility-heading { font-size: 16px; }
  .utility-desc { font-size: 14px; line-height: 1.65; }

  /* How it works — keep horizontal, allow touch swipe */
  .h-scroll-section {
    height: 100vh;
    overflow: hidden;
  }

  .h-scroll-track {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  .h-panel {
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh !important;
    padding: 80px 28px 48px;
    overflow-y: auto;
  }

  .h-scroll-cue { display: none; }
  .h-pagination  { display: flex; }

  /* Where to Buy */
  .buy-contract {
    flex-wrap: wrap;
    gap: 8px;
  }

  .buy-contract-address {
    width: 100%;
    order: 2;
  }

  .buy-contract-label {
    order: 1;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .buy-contract-bscscan { order: 3; }
  .buy-contract-copy    { order: 4; margin-left: auto; }

  .buy-row {
    grid-template-columns: 16px 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 16px 18px;
  }

  .buy-dot { grid-row: 1 / 3; align-self: center; }

  .buy-platform { grid-column: 2; }

  .buy-platform-desc {
    grid-column: 2;
    grid-row: 2;
  }

  .buy-link {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  /* Waitlist */
  .waitlist-heading {
    font-size: clamp(32px, 9vw, 48px);
  }

  .waitlist-body  { max-width: none; }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 20px;
    text-align: center;
  }

  .footer-copy  { white-space: normal; }
}

/* ============================================================
   Responsive — small phones
   ============================================================ */
@media (max-width: 480px) {
  .btn-primary,
  .btn-ghost   { width: 100%; text-align: center; }

  /* Splash — force true center on mobile */
  .splash-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 32px;
    align-items: center;
    text-align: center;
  }

  .splash-brand         { font-size: 36px; letter-spacing: 0.04em; width: 100%; text-align: center; }
  .splash-label         { font-size: 9px; letter-spacing: 0.28em; text-align: center; }

  /* Section padding tighter on small screens */
  .section { padding: 64px 20px; }

  .statement-band { padding: 24px 20px; }

  /* Buy heading */
  .buy-heading { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}

/* ============================================================
   Touch devices — hide custom cursor
   ============================================================ */
@media (hover: none) {
  body { cursor: auto; }
  body *, a, button { cursor: auto; }
  #cursor-ring, #cursor-dot { display: none; }
}
