/* =============================================================
   GOLAZO — The People's Fan Token of the 2026 World Cup
   Stylesheet · Built on Chiliz Chain
   -------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Typography helpers
   4.  Layout
   5.  Buttons
   6.  Utilities & reveal
   7.  Preloader
   8.  Scroll progress
   9.  Navbar
   10. Hero
   11. Countdown & contract
   12. Marquee
   13. Section heads
   14. About
   15. Chiliz
   16. Stats
   17. Tokenomics
   18. Roadmap
   19. How to buy
   20. Ecosystem
   21. Community
   22. FAQ
   23. Newsletter
   24. Footer
   25. Back to top
   26. Keyframes
   27. Responsive
   28. Reduced motion
   29. Whitepaper page
   30. Print
   ============================================================= */

/* ============== 1. DESIGN TOKENS ============== */
:root {
  /* palette */
  --bg:        #08080d;
  --bg-2:      #0c0c15;
  --bg-3:      #11111d;
  --surface:   rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border:    rgba(255, 255, 255, 0.09);
  --border-2:  rgba(255, 255, 255, 0.16);

  --red:    #ff1457;
  --red-2:  #d2003c;
  --gold:   #ffc93c;
  --gold-2: #ffb300;
  --green:  #10d178;
  --blue:   #3aa0ff;
  --purple: #b06bff;
  --orange: #ff7a3d;

  --text:   #f5f6fb;
  --muted:  #9aa0b4;
  --muted-2:#6b7088;

  /* gradients */
  --grad-fire:  linear-gradient(110deg, var(--red) 0%, var(--gold) 100%);
  --grad-chz:   linear-gradient(110deg, #ff3b6b 0%, #ff1457 50%, #ffb300 100%);
  --grad-gold:  linear-gradient(180deg, #ffe79a, #ffc93c 45%, #e29400);

  /* type */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'Cascadia Code', monospace;

  /* sizing */
  --container: 1200px;
  --container-narrow: 820px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* shadows */
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-red:0 16px 50px -12px rgba(255, 20, 87, 0.5);
  --shadow-gold:0 16px 50px -12px rgba(255, 201, 60, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============== 2. RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(15px, 1.05vw, 17px);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ambient background wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(255, 20, 87, 0.16), transparent 60%),
    radial-gradient(800px 600px at 5% 8%, rgba(255, 201, 60, 0.10), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(16, 209, 120, 0.08), transparent 60%);
  pointer-events: none;
}
/* faint pitch grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 80%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--red), var(--gold-2)); border-radius: 99px; border: 3px solid var(--bg); }

/* ============== 3. TYPOGRAPHY HELPERS ============== */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 700; }
.grad {
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-chz {
  background: var(--grad-chz);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ============== 4. LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(70px, 9vw, 140px); position: relative; }

.section__head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 70px); text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section__lead { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.section__lead strong { color: var(--text); }
.section__lead em { color: var(--gold); font-style: italic; }

/* ============== 5. BUTTONS ============== */
.btn {
  --btn-pad-y: 0.85rem;
  --btn-pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn--sm { --btn-pad-y: 0.6rem; --btn-pad-x: 1.1rem; font-size: 0.9rem; }
.btn--lg { --btn-pad-y: 1.05rem; --btn-pad-x: 2rem; font-size: 1.05rem; }

.btn--primary {
  background: var(--grad-fire);
  color: #1a0008;
  box-shadow: var(--shadow-red);
}
.btn--primary::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, var(--gold), var(--red));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn--primary:hover { box-shadow: 0 22px 60px -12px rgba(255, 20, 87, 0.7); }
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--surface-2); border-color: var(--gold); color: var(--gold); }

/* ============== 6. UTILITIES & REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 209, 120, 0.7);
  animation: pulse 2s infinite;
  display: inline-block;
  flex: none;
}

/* ============== 7. PRELOADER ============== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; justify-items: center;
  gap: 1.2rem;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__ball { animation: bounce 0.9s var(--ease) infinite; filter: drop-shadow(0 14px 10px rgba(0,0,0,0.5)); }
.preloader__label {
  font-family: var(--font-display);
  font-size: 1.7rem; letter-spacing: 3px; color: var(--text);
}
.dots span { animation: blink 1.4s infinite both; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

/* ============== 8. SCROLL PROGRESS ============== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 1000;
  background: var(--grad-fire);
  box-shadow: 0 0 12px rgba(255, 20, 87, 0.7);
}

/* ============== 9. NAVBAR ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
  padding-block: 0.65rem;
}
.nav.is-scrolled {
  background: rgba(8, 8, 13, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 4px 10px rgba(255, 20, 87, 0.4)); transition: transform 0.4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.06); }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.55rem; letter-spacing: 1.5px;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links > a:not(.btn) {
  padding: 0.5rem 0.85rem; border-radius: 999px;
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
.nav__links > a:not(.btn):hover { color: var(--text); background: var(--surface); }
.nav__links > a:not(.btn).is-active { color: var(--gold); background: var(--surface); }
.nav__cta { margin-left: 0.4rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============== 10. HERO ============== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000, transparent 75%);
  animation: gridDrift 30s linear infinite;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.6; }
.hero__glow--1 { width: 520px; height: 520px; background: var(--red); top: -120px; right: -80px; animation: floaty 9s ease-in-out infinite; }
.hero__glow--2 { width: 460px; height: 460px; background: var(--gold-2); bottom: -160px; left: -100px; opacity: 0.35; animation: floaty 11s ease-in-out infinite reverse; }
.hero__pitch-lines {
  position: absolute; left: 50%; top: 50%; width: 520px; height: 520px; transform: translate(-50%,-50%);
  border: 2px solid rgba(255,255,255,0.05); border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
}
.hero__pitch-lines::before {
  content:""; position:absolute; inset:0; margin:auto; width:2px; height:520px; background:rgba(255,255,255,0.04);
}

.orb { position: absolute; filter: drop-shadow(0 18px 24px rgba(0,0,0,0.45)); }
.orb--ball   { top: 16%; right: 9%; animation: floaty 7s ease-in-out infinite; }
.orb--coin   { bottom: 14%; right: 20%; animation: floaty 8.5s ease-in-out infinite reverse; }
.orb--trophy { top: 26%; left: 7%; animation: floaty 6.5s ease-in-out infinite; }

.hero__inner { position: relative; z-index: 1; max-width: 940px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-2);
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  backdrop-filter: blur(8px); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 11vw, 8rem); line-height: 0.92; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  background: var(--grad-fire);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 30px rgba(255, 20, 87, 0.4));
}
.hero__subtitle { margin-top: 1.6rem; max-width: 620px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero__subtitle strong { color: var(--text); }
.hero__cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============== 11. COUNTDOWN & CONTRACT ============== */
.countdown {
  margin-top: 3rem; padding: 1.5rem; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border); box-shadow: var(--shadow);
  max-width: 620px; backdrop-filter: blur(10px);
}
.countdown__label { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.countdown__label .kick { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.kick__ball { width: 1.3em; height: 1.3em; flex: none; }
.countdown__label .kick-date { font-weight: 700; color: var(--text); }
.countdown__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.cd {
  display: grid; place-items: center; gap: 0.25rem;
  padding: 1rem 0.5rem; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.35); border: 1px solid var(--border);
}
.cd__num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.9rem); line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.cd__unit { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.contract {
  margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  padding: 0.55rem 0.6rem 0.55rem 1rem; border-radius: 999px;
  background: var(--surface); border: 1px dashed var(--border-2);
  max-width: 100%;
}
.contract__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--gold); }
.contract__addr { font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; max-width: min(58vw, 340px); white-space: nowrap; }
.contract__copy {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  background: var(--grad-fire); color: #1a0008; font-weight: 700; font-size: 0.82rem;
  transition: transform 0.2s, filter 0.2s;
}
.contract__copy:hover { transform: translateY(-2px); filter: brightness(1.08); }
.contract__copy.is-copied { background: var(--green); }

/* ============== 12. MARQUEE ============== */
.marquee {
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(255,20,87,0.08), rgba(255,201,60,0.08));
  overflow: hidden; padding-block: 1rem;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text);
}
.marquee__track span:nth-child(even) { color: var(--gold); }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; gap: 0.45em; }
.m-ico { width: 0.92em; height: 0.92em; flex: none; color: var(--gold); }
.m-ico--ball { width: 1.05em; height: 1.05em; }
.m-sep { padding: 0 0.1rem; }
.m-sep .m-ico { width: 0.72em; height: 0.72em; }

/* ============== 14. ABOUT ============== */
.about__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card {
  position: relative; padding: 1.8rem 1.5rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(255,20,87,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { transform: translateY(-8px); background: var(--surface-2); border-color: var(--border-2); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 60px; height: 60px; display: grid; place-items: center;
  border-radius: 16px; margin-bottom: 1.1rem; color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(255,201,60,0.25), rgba(255,20,87,0.15));
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.card__icon svg { width: 32px; height: 32px; }
.card__icon--ball svg { width: 38px; height: 38px; }
.card:hover .card__icon { transform: translateY(-3px) rotate(-4deg); }
.card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ============== 15. CHILIZ ============== */
.chiliz__split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ticklist { margin: 1.6rem 0; display: grid; gap: 0.8rem; }
.ticklist li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--muted); }
.ticklist li span {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; color: #06120b;
  background: var(--green); margin-top: 2px;
}

.chz-card {
  position: relative; padding: 1.5rem; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border-2); box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.chz-card__head { display: flex; align-items: center; gap: 0.8rem; }
.chz-card__head img { filter: drop-shadow(0 6px 12px rgba(255,20,87,0.4)); }
.chz-card__head strong { display: block; font-size: 1.05rem; }
.chz-card__head span { font-size: 0.78rem; color: var(--muted); }
.chz-card__live { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green); }
.chz-card__chart { margin: 1.2rem 0; height: 120px; }
.chz-card__chart svg { width: 100%; height: 100%; overflow: visible; }
.spark-line { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 2.4s var(--ease) forwards; }
.chz-card__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.chz-card__stats > div { padding: 0.7rem; border-radius: 12px; background: rgba(0,0,0,0.3); border: 1px solid var(--border); text-align: center; }
.chz-card__stats span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.chz-card__stats strong { font-size: 1.05rem; }
.chz-card__stats .up { color: var(--green); }

/* ============== 16. STATS ============== */
.stats { padding-block: clamp(40px, 5vw, 70px); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.6rem); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255,20,87,0.10), rgba(255,201,60,0.06));
  border: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__num {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__label { display: block; margin-top: 0.5rem; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* ============== 17. TOKENOMICS ============== */
.tokenomics__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.tokenomics__chart { display: grid; place-items: center; gap: 1.6rem; }
.donut {
  --size: clamp(240px, 32vw, 340px);
  width: var(--size); height: var(--size); border-radius: 50%;
  position: relative; display: grid; place-items: center;
  background: conic-gradient(
    var(--red)    0% 40%,
    var(--gold)   40% 65%,
    var(--green)  65% 80%,
    var(--blue)   80% 90%,
    var(--purple) 90% 95%,
    var(--orange) 95% 100%
  );
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-90deg);
  transition: transform 1.1s var(--ease);
}
.donut.is-spun { transform: rotate(0deg); }
.donut::after {
  content: ""; position: absolute; inset: 22%; border-radius: 50%;
  background: var(--bg-2); box-shadow: inset 0 0 0 1px var(--border);
}
.donut__center { position: relative; z-index: 1; text-align: center; transform: rotate(90deg); transition: transform 1.1s var(--ease); }
.donut.is-spun .donut__center { transform: rotate(0deg); }
.donut__total { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--gold); }
.donut__sub { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; }

.tokenomics__meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.7rem; width: 100%; max-width: 360px; }
.tokenomics__meta > div { padding: 0.7rem 0.9rem; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.meta__k { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.meta__v { font-weight: 700; }

.legend { display: grid; gap: 0.7rem; }
.legend li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.legend li:hover { transform: translateX(6px); border-color: var(--c); background: var(--surface-2); }
.legend__dot { width: 16px; height: 16px; border-radius: 5px; background: var(--c); flex: none; box-shadow: 0 0 12px -2px var(--c); }
.legend__name { flex: 1; font-weight: 600; }
.legend__name em { color: var(--muted); font-style: normal; font-size: 0.85em; font-weight: 500; }
.legend__val { font-family: var(--font-display); font-size: 1.4rem; color: var(--c); }

/* ============== 18. ROADMAP ============== */
.timeline { position: relative; max-width: 880px; margin-inline: auto; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 3px;
  background: linear-gradient(var(--red), var(--gold), var(--green));
  border-radius: 99px; opacity: 0.5;
}
.tl { position: relative; padding-left: 70px; padding-bottom: 2.4rem; }
.tl:last-child { padding-bottom: 0; }
.tl__marker {
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-2); border: 2px solid var(--gold);
  font-family: var(--font-display); font-size: 1.2rem; color: var(--gold);
  box-shadow: 0 0 0 6px var(--bg), var(--shadow-gold);
  z-index: 1;
}
.tl--final .tl__marker { border-color: var(--red); background: var(--grad-fire); box-shadow: 0 0 0 6px var(--bg), var(--shadow-red); }
.tl__trophy { width: 26px; height: 26px; color: #fff; }
.tl__body {
  padding: 1.4rem 1.6rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.tl:hover .tl__body { transform: translateX(6px); border-color: var(--border-2); }
.tl__phase { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.5px; color: var(--text); }
.tl__time { display: block; font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); margin: 0.2rem 0 0.9rem; letter-spacing: 0.05em; }
.tl__body ul { display: grid; gap: 0.5rem; }
.tl__body li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: 0.95rem; }
.tl__body li::before {
  content: ""; position: absolute; left: 0; top: 0.28em; width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='%23fff' stroke='%230a0a12' stroke-width='4'/%3E%3Cpath d='M50 22 l14 10 -5 17 -18 0 -5 -17z' fill='%230a0a12'/%3E%3Cpath d='M50 22 v-9 M64 32 l8 -5 M59 49 l9 4 M41 49 l-9 4 M36 32 l-8 -5' stroke='%230a0a12' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M26 47 a24 24 0 0 0 9 22 M74 47 a24 24 0 0 1 -9 22 M40 78 a24 24 0 0 0 20 0' stroke='%230a0a12' stroke-width='3.5' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tl--final .tl__phase { color: var(--gold); }

/* ============== 19. HOW TO BUY ============== */
.buy__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step {
  position: relative; padding: 2rem 1.5rem 1.6rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
}
.step:hover { transform: translateY(-8px); background: var(--surface-2); border-color: var(--gold); }
.step__n {
  font-family: var(--font-display); font-size: 3rem; line-height: 1;
  -webkit-text-stroke: 2px var(--gold); color: transparent;
  opacity: 0.55; display: block; margin-bottom: 0.6rem;
}
.step:hover .step__n { opacity: 1; }
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.93rem; }
.step::after {
  content: ""; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,201,60,0.18), transparent 70%);
  pointer-events: none;
}
.buy__cta { margin-top: 2.6rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============== 20. ECOSYSTEM ============== */
.ecosystem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.feature {
  position: relative; padding: 1.8rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--border-2); background: var(--surface-2); }
.feature--wide { grid-column: span 2; }
.feature__icon {
  position: relative; z-index: 1;
  width: 62px; height: 62px; display: grid; place-items: center;
  border-radius: 16px; margin-bottom: 1.1rem; color: var(--gold);
  background: radial-gradient(circle at 30% 28%, rgba(255,201,60,0.22), rgba(255,20,87,0.14));
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s;
}
.feature__icon svg { width: 34px; height: 34px; }
.feature:hover .feature__icon { transform: translateY(-3px) rotate(-4deg); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), var(--shadow-gold); }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.feature p { color: var(--muted); }
.feature__glow {
  position: absolute; inset: -40% 50% auto auto; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,20,87,0.28), transparent 70%);
  filter: blur(20px); pointer-events: none;
}

/* ============== 21. COMMUNITY ============== */
.community__card {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255,20,87,0.18), rgba(255,201,60,0.10) 60%, rgba(16,209,120,0.10));
  border: 1px solid var(--border-2); box-shadow: var(--shadow);
}
.community__glow {
  position: absolute; inset: auto 50% -60% 50%; transform: translateX(-50%);
  width: 600px; height: 400px; background: radial-gradient(circle, rgba(255,20,87,0.4), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.community__card h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; position: relative; }
.community__card p { position: relative; max-width: 560px; margin: 1rem auto 2rem; color: var(--muted); font-size: 1.1rem; }
.community__links { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.social {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem; border-radius: 999px;
  background: rgba(0,0,0,0.35); border: 1px solid var(--border-2); font-weight: 700;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.social:hover { transform: translateY(-4px); background: var(--grad-fire); color: #1a0008; border-color: transparent; }
.social.is-disabled, .footer__social.is-disabled { pointer-events: none; cursor: default; opacity: .5; }
.social.is-disabled:hover, .footer__social.is-disabled:hover { transform: none; background: rgba(0,0,0,0.35); color: inherit; border-color: var(--border-2); }

/* ============== 22. FAQ ============== */
.accordion { display: grid; gap: 0.9rem; }
.acc { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.acc.is-open { border-color: var(--gold); background: var(--surface-2); }
.acc__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left; font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.acc__icon { position: relative; flex: none; width: 22px; height: 22px; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); border-radius: 2px;
}
.acc__icon::before { width: 100%; height: 2.5px; }
.acc__icon::after { width: 2.5px; height: 100%; transition: transform 0.3s var(--ease); }
.acc.is-open .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc__a p { padding: 0 1.5rem 1.4rem; color: var(--muted); }
.acc__a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============== 23. NEWSLETTER ============== */
.newsletter__card {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  padding: clamp(1.8rem, 4vw, 3rem); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
}
.newsletter__card h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 4vw, 2.6rem); text-transform: uppercase; }
.newsletter__card p { color: var(--muted); margin-top: 0.4rem; }
.newsletter__form { display: flex; gap: 0.7rem; flex: 1; min-width: 280px; max-width: 460px; }
.newsletter__form input {
  flex: 1; padding: 0.95rem 1.2rem; border-radius: 999px;
  background: rgba(0,0,0,0.35); border: 1px solid var(--border-2); color: var(--text); font-size: 0.95rem;
  transition: border-color 0.25s;
}
.newsletter__form input:focus { outline: none; border-color: var(--gold); }
.newsletter__form input::placeholder { color: var(--muted-2); }
.newsletter__note { text-align: center; margin-top: 1rem; color: var(--green); font-weight: 600; min-height: 1.2em; }
.note__ball { width: 1em; height: 1em; vertical-align: -0.15em; margin-right: 0.4em; }

/* ============== 24. FOOTER ============== */
.footer { border-top: 1px solid var(--border); padding-top: clamp(3rem, 6vw, 5rem); margin-top: 2rem; background: linear-gradient(180deg, transparent, rgba(255,20,87,0.04)); }
.footer__top { display: grid; grid-template-columns: 1.4fr 2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.5rem; }
.footer__brand p { color: var(--muted); margin: 1rem 0 1.3rem; max-width: 340px; }
.footer__socials { display: flex; gap: 0.7rem; }
.footer__socials a,
.footer__socials .footer__social {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.footer__socials a:hover { transform: translateY(-4px); background: var(--grad-fire); color: #1a0008; border-color: transparent; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--muted); padding: 0.35rem 0; transition: color 0.2s, transform 0.2s; }
.footer__col a:hover { color: var(--text); transform: translateX(4px); }

.footer__disclaimer { padding: 1.6rem 0; border-top: 1px solid var(--border); }
.footer__disclaimer p { font-size: 0.82rem; color: var(--muted-2); line-height: 1.7; }
.footer__disclaimer strong { color: var(--muted); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem;
  padding: 1.4rem 0 2rem; border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}
.footer__bottom a { color: var(--gold); }
.footer__bottom span { display: inline-flex; align-items: center; gap: 0.4em; }
.foot__ball { width: 1.15em; height: 1.15em; flex: none; }

/* ============== 25. BACK TO TOP ============== */
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #1a0008;
  background: var(--grad-fire); box-shadow: var(--shadow-red);
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.8);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px) scale(1.06); }

/* ============== 26. KEYFRAMES ============== */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16,209,120,0.6); } 70% { box-shadow: 0 0 0 10px rgba(16,209,120,0); } 100% { box-shadow: 0 0 0 0 rgba(16,209,120,0); } }
@keyframes bounce { 0%,100% { transform: translateY(0) scale(1,1); } 45% { transform: translateY(-26px) scale(0.96,1.04); } 55% { transform: translateY(-26px); } 75% { transform: translateY(0) scale(1.08,0.92); } }
@keyframes blink { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(6deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 52px 52px; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ============== 27. RESPONSIVE ============== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .buy__grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem__grid { grid-template-columns: repeat(2, 1fr); }
  .feature--wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: center; gap: 0.6rem;
    padding: 2rem; background: rgba(10,10,16,0.97); backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav__links.is-open { transform: none; }
  .nav__links > a:not(.btn) { padding: 0.9rem 1rem; font-size: 1.1rem; }
  .nav__cta { margin: 0.5rem 0 0; }
  .nav__toggle { display: flex; z-index: 1000; }

  .chiliz__split { grid-template-columns: 1fr; }
  .tokenomics__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .orb--coin, .orb--trophy { display: none; }
}

@media (max-width: 560px) {
  .about__grid { grid-template-columns: 1fr; }
  .buy__grid { grid-template-columns: 1fr; }
  .ecosystem__grid { grid-template-columns: 1fr; }
  .feature--wide { grid-column: span 1; }
  .countdown__grid { gap: 0.5rem; }
  .cd { padding: 0.8rem 0.3rem; }
  .hero__cta .btn { flex: 1; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .orb--ball { opacity: 0.5; }
}

/* ============== 28. REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .spark-line { stroke-dashoffset: 0; }
}

/* ============== 29. WHITEPAPER PAGE ============== */
.wp-main { padding-top: clamp(96px, 12vh, 132px); padding-bottom: clamp(60px, 8vw, 110px); }

/* back link */
.wp-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--muted); margin-bottom: clamp(28px, 4vw, 48px);
  transition: color 0.2s, gap 0.2s var(--ease);
}
.wp-back svg { width: 16px; height: 16px; }
.wp-back:hover { color: var(--gold); gap: 0.75rem; }

/* cover */
.wp-hero {
  max-width: 880px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center;
  padding-bottom: clamp(34px, 5vw, 60px); border-bottom: 1px solid var(--border);
}
.wp-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 0.98;
  letter-spacing: 0.5px; margin: 0.6rem 0 1.1rem; text-transform: uppercase;
}
.wp-hero__sub {
  max-width: 660px; margin: 0 auto; color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.wp-hero__sub strong { color: var(--text); }

/* meta chips */
.wp-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem;
  margin: clamp(26px, 3.5vw, 38px) 0 clamp(28px, 4vw, 40px);
}
.wp-meta__item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 0.6rem 1rem; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border); text-align: left;
}
.wp-meta__item b {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}
.wp-meta__item span { font-weight: 700; font-size: 0.95rem; color: var(--text); }

.wp-hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.wp-hero__cta .btn svg { width: 18px; height: 18px; }

/* layout: sticky TOC + document */
.wp-layout {
  display: grid; grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
  max-width: 1080px; margin: 0 auto;
}

/* table of contents */
.wp-toc {
  position: sticky; top: 100px;
  padding: 1.5rem 1.5rem 1.6rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}
.wp-toc__title {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.wp-toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 1px; }
.wp-toc li { counter-increment: toc; }
.wp-toc a {
  display: flex; gap: 0.6rem; align-items: baseline;
  padding: 0.42rem 0.6rem; border-radius: 9px;
  color: var(--muted); font-size: 0.88rem; font-weight: 500; line-height: 1.35;
  border-left: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.wp-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted-2);
  flex: none;
}
.wp-toc a:hover { color: var(--text); background: var(--surface-2); }
.wp-toc a.is-active {
  color: var(--gold); background: var(--surface-2);
  border-left-color: var(--gold); font-weight: 600;
}
.wp-toc a.is-active::before { color: var(--gold); }

/* document body */
.wp-doc { min-width: 0; max-width: 760px; }
.wp-section { scroll-margin-top: 100px; padding-top: clamp(34px, 5vw, 56px); }
.wp-section + .wp-section { border-top: 1px solid var(--border); margin-top: clamp(34px, 5vw, 56px); }
.wp-section:first-child { padding-top: 0; }
.wp-section__num {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.wp-section h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.04;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1.1rem;
}
.wp-section h3 {
  font-size: clamp(1.12rem, 1.9vw, 1.35rem); font-weight: 700;
  margin: 1.8rem 0 0.6rem; color: var(--text);
}
.wp-section p { color: var(--muted); margin-bottom: 1rem; }
.wp-section p strong { color: var(--text); }
.wp-section a:not(.btn) {
  color: var(--gold); border-bottom: 1px solid rgba(255, 201, 60, 0.3);
  transition: border-color 0.2s;
}
.wp-section a:not(.btn):hover { border-bottom-color: var(--gold); }
.wp-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 1.55;
  color: var(--text) !important; font-weight: 500;
  padding-left: 1rem; border-left: 3px solid var(--red); margin-bottom: 1.4rem;
}

/* lists */
.wp-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0.4rem 0 1.2rem; }
.wp-list li { position: relative; padding-left: 1.7rem; color: var(--muted); }
.wp-list li strong { color: var(--text); }
.wp-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad-fire); box-shadow: 0 0 0 3px rgba(255, 20, 87, 0.12);
}

/* callouts */
.wp-callout {
  display: flex; gap: 0.9rem; align-items: flex-start;
  margin: 1.5rem 0; padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); background: rgba(255, 201, 60, 0.05);
}
.wp-callout svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 2px; }
.wp-callout p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.wp-callout p strong { color: var(--text); }
.wp-callout--warn { border-left-color: var(--red); background: rgba(255, 20, 87, 0.06); }
.wp-callout--warn svg { color: var(--red); }
.wp-callout--ok { border-left-color: var(--green); background: rgba(16, 209, 120, 0.06); }
.wp-callout--ok svg { color: var(--green); }

/* distribution table */
.wp-table-wrap { overflow-x: auto; margin: 1.4rem 0 0.6rem; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.wp-table { width: 100%; border-collapse: collapse; min-width: 420px; font-size: 0.94rem; }
.wp-table th, .wp-table td { padding: 0.85rem 1.1rem; text-align: left; }
.wp-table thead th {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.wp-table th:nth-child(2), .wp-table td:nth-child(2),
.wp-table th:nth-child(3), .wp-table td:nth-child(3) { text-align: right; font-variant-numeric: tabular-nums; }
.wp-table tbody td { border-bottom: 1px solid var(--border); color: var(--muted); }
.wp-table tbody td:first-child { color: var(--text); font-weight: 600; }
.wp-table tbody td em { color: var(--muted-2); font-weight: 400; font-size: 0.85em; }
.wp-table tbody tr { transition: background 0.18s; }
.wp-table tbody tr:hover { background: var(--surface); }
.wp-table tfoot td {
  font-weight: 800; color: var(--text); font-family: var(--font-mono);
  background: var(--surface-2); border-top: 1px solid var(--border-2);
}
.wp-dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 0.6rem; vertical-align: middle; }

/* token spec sheet */
.wp-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin: 1.3rem 0; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border); background: var(--border);
}
.wp-specs > div {
  display: flex; flex-direction: column; gap: 3px;
  padding: 0.9rem 1.1rem; background: var(--bg-2);
}
.wp-specs__full { grid-column: 1 / -1; }
.wp-specs dt {
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2);
}
.wp-specs dd { font-weight: 700; color: var(--text); font-size: 0.98rem; }
.wp-specs dd.mono { font-family: var(--font-mono); font-weight: 400; font-size: 0.86rem; word-break: break-all; color: var(--gold); }

.wp-phase-time { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 400; color: var(--gold); letter-spacing: 0.04em; }

.wp-signoff {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--text) !important; margin-top: 1.4rem;
}
.wp-signoff strong { color: var(--red); }

/* whitepaper responsive */
@media (max-width: 900px) {
  .wp-layout { grid-template-columns: 1fr; gap: 2rem; }
  .wp-toc { position: static; top: auto; }
}
@media (max-width: 560px) {
  .wp-specs { grid-template-columns: 1fr; }
  .wp-meta { gap: 0.5rem; }
  .wp-meta__item { flex: 1 1 40%; }
  .wp-hero__cta .btn { flex: 1; }
}

/* ============== 30. PRINT ============== */
@media print {
  :root { --bg: #fff; --text: #111; --muted: #333; --muted-2: #555; }
  body { background: #fff !important; color: #111 !important; font-size: 11pt; line-height: 1.5; }
  body::before, body::after { display: none !important; }
  .nav, .to-top, .scroll-progress, .preloader, .marquee,
  .wp-back, .wp-hero__cta, .wp-toc, .footer__socials { display: none !important; }
  .wp-main { padding-top: 0; }
  .wp-layout { display: block; max-width: none; }
  .wp-doc { max-width: none; }
  .grad, .grad-chz, .brand__text {
    -webkit-text-fill-color: #111 !important; color: #111 !important; background: none !important;
  }
  .wp-section__num, .wp-toc__title, .wp-phase-time { color: #b8860b !important; }
  .wp-section { break-inside: avoid; page-break-inside: avoid; }
  .wp-section h2, .wp-section h3 { break-after: avoid; }
  .wp-callout, .wp-table-wrap, .wp-specs { break-inside: avoid; border-color: #ccc !important; }
  .wp-section a:not(.btn) { color: #111 !important; border-bottom: none; }
  .footer { border-top: 1px solid #ccc; }
}
