/* =========================================================
   $KHAN — Bow Before the Khan  ·  v4 "Editorial Luxury"
   Neutral black · paper cream · imperial gold · Base blue
   Type: Archivo (variable width) · Instrument Serif italic · IBM Plex Mono
   ========================================================= */

@property --angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

:root {
  --bg: #070708;
  --bg-2: #0c0c0e;
  --bg-3: #141417;
  --paper: #f2efe8;
  --paper-2: #e8e4da;
  --ink: #0b0b0c;
  --ink-muted: #5f5d58;
  --ink-line: rgba(11, 11, 12, 0.12);
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.2);
  --text: #f4f3ef;
  --muted: #9b9a97;
  --muted-2: #6b6a67;
  --gold: #f5c443;
  --gold-2: #e8a317;
  --gold-3: #ffe082;
  --blue: #0052ff;
  --blue-2: #4d8bff;
  --grad-gold: linear-gradient(120deg, #ffe082 0%, #f5c443 45%, #e8a317 100%);
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-meme: 'Anton', Impact, 'Arial Black', sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); font-stretch: 100%; font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.05; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl { margin: 0; }
svg { display: inline-block; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: min(1240px, 100% - 2 * clamp(18px, 4vw, 48px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: #000; padding: 8px 14px; border-radius: 8px; z-index: 10001; }
.skip-link:focus { left: 8px; }

/* ---------- Typography ---------- */
.h2 { font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: clamp(2.2rem, 5vw, 4.4rem); letter-spacing: -0.03em; line-height: 1; margin-bottom: 20px; }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-stretch: 100%; font-size: 1.18em; letter-spacing: -0.01em; color: var(--gold); }
.grad-gold { background-image: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 200%; animation: gradShift 6s ease-in-out infinite; }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.split .w > i { display: inline-block; font-style: inherit; transform: translateY(110%); transition: transform 0.9s var(--ease-expo); transition-delay: calc(var(--i, 0) * 0.05s); }
.split.is-visible .w > i { transform: none; }
.sec__sub { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.15rem); max-width: 560px; line-height: 1.65; }
.sec__head { max-width: 820px; margin-bottom: clamp(44px, 6vw, 80px); }
.sec__index { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: clamp(26px, 4vw, 44px); }
.sec__index i { flex: 0 0 44px; height: 1px; background: currentColor; opacity: 0.55; }
.sec__index--center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; letter-spacing: 0; white-space: nowrap; overflow: hidden; isolation: isolate; transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.35s, color 0.35s, border-color 0.35s; }
.btn > svg { width: 18px; height: 18px; flex: none; transition: transform 0.4s var(--ease-spring); }
.btn:hover > svg { transform: translateX(3px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn__txt { position: relative; display: inline-block; overflow: hidden; color: transparent; line-height: 1.25; }
.btn__txt::before, .btn__txt::after { content: attr(data-text); position: absolute; left: 0; top: 0; color: var(--btn-c, inherit); white-space: nowrap; transition: transform 0.55s var(--ease-expo); }
.btn__txt::after { transform: translateY(110%); }
.btn:hover .btn__txt::before { transform: translateY(-110%); }
.btn:hover .btn__txt::after { transform: translateY(0); }
.btn--gold { --btn-c: var(--ink); color: var(--ink); background: var(--gold); box-shadow: 0 10px 30px -12px rgba(245,196,67,0.6); }
.btn--gold::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.6) 50%, transparent 80%); transform: translateX(-130%) skewX(-20deg); transition: transform 0.8s var(--ease-out); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(245,196,67,0.7); background: var(--gold-3); }
.btn--gold:hover::after { transform: translateX(130%) skewX(-20deg); }
.btn--gold:active { transform: translateY(0) scale(0.98); }
.btn--ghost { --btn-c: var(--text); color: var(--text); background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
.btn--ink { --btn-c: var(--paper); color: var(--paper); background: var(--ink); }
.btn--ink:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.6); background: #1a1a1c; }
.btn--ghost-ink { --btn-c: var(--ink); color: var(--ink); border: 1px solid rgba(11,11,12,0.25); background: transparent; }
.btn--ghost-ink:hover { background: rgba(11,11,12,0.05); border-color: var(--ink); transform: translateY(-3px); }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--muted); transition: all 0.35s var(--ease-spring); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: translateY(-2px) rotate(-8deg); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--muted); transition: color 0.3s; }
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-spring); }
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover svg { transform: translateX(6px); }
.base-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,255,0.2), 0 0 14px rgba(0,82,255,0.8); margin-right: 10px; }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; }
.preloader__curtain { position: absolute; top: 0; bottom: 0; width: 50.5%; background: var(--bg-2); transition: transform 1.1s var(--ease-expo); }
.preloader__curtain--l { left: 0; border-right: 1px solid var(--line); }
.preloader__curtain--r { right: 0; }
.preloader.is-done .preloader__curtain--l { transform: translateX(-101%); }
.preloader.is-done .preloader__curtain--r { transform: translateX(101%); }
.preloader.is-gone { visibility: hidden; pointer-events: none; }
.preloader__inner { position: relative; text-align: center; transition: opacity 0.45s, transform 0.6s var(--ease-out); }
.preloader.is-done .preloader__inner { opacity: 0; transform: scale(0.94) translateY(-10px); }
.preloader__word { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(4rem, 16vw, 12rem); line-height: 1; letter-spacing: -0.04em; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.preloader__meta { display: flex; justify-content: space-between; gap: 30px; margin-top: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.preloader__meta b { font-weight: 500; color: var(--text); font-variant-numeric: tabular-nums; }

/* ---------- Progress, cursor, noise ---------- */
.progress { position: fixed; top: env(safe-area-inset-top, 0px); left: 0; right: 0; height: 2px; z-index: 200; pointer-events: none; }
.progress span { display: block; height: 100%; width: 100%; background: var(--gold); transform-origin: left; transform: scaleX(0); }
@supports (animation-timeline: scroll()) { .progress span { animation: growX linear both; animation-timeline: scroll(root); } @keyframes growX { from { transform: scaleX(0); } to { transform: scaleX(1); } } }
.cursor { position: fixed; left: 0; top: 0; z-index: 10000; pointer-events: none; opacity: 0; transition: opacity 0.4s; display: none; }
.cursor.is-on { opacity: 1; }
.cursor__dot { position: absolute; width: 6px; height: 6px; margin: -3px; border-radius: 50%; background: #fff; mix-blend-mode: difference; }
.cursor__ring { position: absolute; width: 36px; height: 36px; margin: -18px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); display: grid; place-items: center; transition: width 0.4s var(--ease-spring), height 0.4s var(--ease-spring), margin 0.4s var(--ease-spring), background 0.35s, border-color 0.35s; }
.cursor__ring b { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity 0.25s; }
.cursor.is-link .cursor__ring { width: 54px; height: 54px; margin: -27px; border-color: var(--gold); background: rgba(245,196,67,0.12); }
.cursor.is-label .cursor__ring { width: 84px; height: 84px; margin: -42px; border-color: transparent; background: var(--gold); }
.cursor.is-label .cursor__ring b { opacity: 1; }
@media (pointer: fine) { .cursor { display: block; } body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor summary { cursor: none; } }
.noise { position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain 0.6s steps(4) infinite; }
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(-3%, 2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-1%, -1%); } 100% { transform: translate(0,0); } }

/* ---------- Nav ---------- */
.nav { position: fixed; top: env(safe-area-inset-top, 0px); left: 0; right: 0; z-index: 100; height: var(--nav-h); border-bottom: 1px solid transparent; transform: translateY(-110%); transition: background 0.4s, border-color 0.4s, transform 0.9s var(--ease-expo); }
body.is-ready .nav { transform: translateY(0); }
.nav.is-scrolled { background: rgba(7,7,8,0.72); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); border-bottom-color: var(--line); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__avatar { position: relative; width: 36px; height: 36px; border-radius: 50%; }
.nav__avatar::before { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: conic-gradient(from var(--angle), var(--gold), transparent 40%, var(--gold)); animation: angleSpin 4s linear infinite; }
.nav__avatar img { position: relative; border-radius: 50%; width: 36px; height: 36px; transition: transform 0.5s var(--ease-spring); }
.nav__logo:hover img { transform: rotate(-14deg) scale(1.08); }
@keyframes angleSpin { to { --angle: 360deg; } }
.nav__wordmark { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 18px; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 2px; position: relative; }
.nav__links a { position: relative; z-index: 1; padding: 8px 14px; border-radius: 999px; font-family: var(--font-mono); font-weight: 500; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__ind { position: absolute; top: 2px; bottom: 2px; left: 0; width: 0; border-radius: 999px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); opacity: 0; transition: left 0.5s var(--ease-expo), width 0.5s var(--ease-expo), opacity 0.3s; pointer-events: none; }
.nav__ind.is-on { opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 42px; height: 42px; border-radius: 50%; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); }
.burger span { width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.45s var(--ease-spring); }
.burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--bg); padding: calc(var(--nav-h) + 24px) 28px 40px; display: flex; flex-direction: column; justify-content: space-between; clip-path: circle(0% at calc(100% - 44px) 38px); transition: clip-path 0.8s var(--ease-expo); overflow: hidden; }
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 38px); }
.mobile-menu__links { display: flex; flex-direction: column; position: relative; z-index: 2; border-top: 1px solid var(--line); }
.mobile-menu__links a { display: flex; align-items: baseline; gap: 16px; font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: clamp(1.7rem, 8vw, 2.5rem); letter-spacing: -0.02em; padding: 14px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateX(-24px); transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-expo), color 0.3s; }
.mobile-menu__links a i { font-family: var(--font-mono); font-style: normal; font-size: 12px; color: var(--gold); letter-spacing: 0.2em; }
.mobile-menu.is-open .mobile-menu__links a { opacity: 1; transform: none; }
.mobile-menu__links a:nth-child(1) { transition-delay: 0.15s; } .mobile-menu__links a:nth-child(2) { transition-delay: 0.2s; } .mobile-menu__links a:nth-child(3) { transition-delay: 0.25s; } .mobile-menu__links a:nth-child(4) { transition-delay: 0.3s; } .mobile-menu__links a:nth-child(5) { transition-delay: 0.35s; } .mobile-menu__links a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__actions { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; position: relative; z-index: 2; min-width: 0; }
.mobile-menu__big { position: absolute; right: -4%; bottom: 12%; font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 40vw; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.06); pointer-events: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; }
.hero__aurora { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -3; }
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; z-index: -2; transform: translateY(calc(var(--sy, 0) * 0.16px)); }
.hero__media canvas, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 26%; background: linear-gradient(180deg, var(--bg), transparent); z-index: 2; pointer-events: none; }
.hero__media img { object-fit: cover; object-position: 50% 30%; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%), linear-gradient(180deg, #000 72%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent 0%, #000 35%), linear-gradient(180deg, #000 72%, transparent 100%); mask-composite: intersect; filter: saturate(0.85) contrast(1.05); }
.hero__media.has-gl img { opacity: 0; }
.hero__media.is-judging { animation: judge 0.6s var(--ease-spring); }
@keyframes judge { 0% { rotate: 0deg; } 25% { rotate: -1.2deg; scale: 1.01; } 50% { rotate: 1deg; } 75% { rotate: -0.6deg; } 100% { rotate: 0deg; } }
.hero__giant { position: absolute; left: -0.03em; bottom: 0.02em; transform: translateY(calc(var(--sy, 0) * -0.18px)); font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(9rem, 34vw, 34rem); line-height: 1; letter-spacing: -0.06em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.055); z-index: -1; pointer-events: none; user-select: none; white-space: nowrap; }
.hero__inner { padding: calc(var(--nav-h) + 60px) 0 60px; flex: 1; display: flex; align-items: center; }
.hero__copy { max-width: 700px; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.hero__meta i { width: 1px; height: 12px; background: var(--line-2); }
.hero__meta-live { display: inline-flex; align-items: center; gap: 8px; color: var(--text); }
.hero__meta-live b { width: 7px; height: 7px; border-radius: 50%; background: #3dff8f; animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(61,255,143,0.7); } 100% { box-shadow: 0 0 0 10px rgba(61,255,143,0); } }
.hero__title { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(3rem, 8.2vw, 7.4rem); line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 30px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.04em; perspective: 700px; }
.hero__title .word { display: inline-block; }
.hero__title .ch { display: inline-block; font-weight: inherit; transform: translateY(115%); transform-origin: 50% 100%; opacity: 0; transition: transform 1.1s var(--ease-expo), opacity 0.5s; transition-delay: calc(0.25s + var(--i, 0) * 0.04s); }
body.is-ready .hero__title .ch { transform: none; opacity: 1; }
.grad-gold .ch { background-image: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 200%; animation: gradShift 6s ease-in-out infinite; }
.hero__lead { font-size: clamp(1.05rem, 1.45vw, 1.2rem); color: var(--muted); max-width: 520px; margin-bottom: 34px; line-height: 1.6; }
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.ca { display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 6px 6px 6px 18px; border-radius: 999px; border: 1px solid var(--line-2); font-family: var(--font-mono); position: relative; overflow: hidden; background: rgba(7,7,8,0.5); }
.ca::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(245,196,67,0.12), transparent); transform: translateX(-100%); animation: caSweep 4s ease-in-out infinite; }
@keyframes caSweep { 0%, 60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.ca__label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); }
.ca__value { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 320px; }
.ca--pending .ca__value { color: var(--muted); }
.ca__copy { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 999px; background: var(--gold); color: var(--ink); font-family: var(--font-body); font-weight: 600; font-size: 13px; transition: transform 0.3s var(--ease-spring), background 0.3s; }
.ca__copy svg { width: 15px; height: 15px; }
.ca__copy .ic-check { display: none; }
.ca__copy.is-copied .ic-copy { display: none; } .ca__copy.is-copied .ic-check { display: block; }
.ca__copy:hover { transform: scale(1.05); background: var(--gold-3); }
.ca--pending .ca__copy { background: rgba(255,255,255,0.08); color: var(--muted); }

/* stats strip */
.hero__strip { position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(7,7,8,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr) 1.5fr; }
.stat { padding: 18px 22px; border-left: 1px solid var(--line); min-width: 0; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.stat__value { font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: clamp(1.4rem, 2vw, 1.9rem); letter-spacing: -0.03em; line-height: 1; height: 1em; display: flex; align-items: flex-start; }
.stat__value--base { color: var(--blue-2); align-items: center; }
.stat__sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-top: 6px; }
.roll__col { display: inline-block; height: 1em; overflow: hidden; vertical-align: top; }
.roll__strip { display: flex; flex-direction: column; transition: transform 1.4s var(--ease-expo); transition-delay: var(--rd, 0s); }
.roll__strip span { display: block; height: 1em; line-height: 1; }
.stat--links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.stat--links a { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.stat--links a svg { width: 15px; height: 15px; }
.stat--links a:hover { color: var(--gold); }

/* ---------- Marquee ---------- */
.marquee-wrap { position: relative; z-index: 2; overflow: hidden; }
.marquee { overflow: hidden; padding: 14px 0; }
.marquee--gold { background: var(--gold); color: var(--ink); }
.marquee--dark { background: var(--bg); border-bottom: 1px solid var(--line); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.35); }
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: 17px; letter-spacing: -0.01em; text-transform: uppercase; white-space: nowrap; will-change: transform; }
.marquee__track svg { width: 14px; height: 14px; flex: none; }
.marquee__track img { width: 30px; height: 30px; border-radius: 50%; flex: none; box-shadow: 0 0 0 1.5px var(--gold); }

/* ---------- The Look ---------- */
.look { position: relative; height: 360vh; }
.look__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: #000; }
.look__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transform: scale(1); will-change: transform; filter: grayscale(1) contrast(1.12) brightness(0.92); }
.look__sticky::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(255,224,130,0.6) 0%, rgba(245,196,67,0.5) 45%, rgba(140,80,12,0.7) 100%); mix-blend-mode: multiply; }
.look__shade { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(0,0,0,0.25), rgba(0,0,0,0.8) 100%), linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%); }
.look__lines { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; padding: 0 20px; }
.look__line { grid-area: 1 / 1; margin: 0; max-width: 1000px; text-align: center; font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: clamp(1.8rem, 5.2vw, 4.6rem); line-height: 1.05; letter-spacing: -0.03em; opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(8px); transition: opacity 0.7s var(--ease-out), transform 0.9s var(--ease-expo), filter 0.7s; text-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.look__line em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-stretch: 100%; font-size: 1.18em; color: var(--gold-3); }
.look__line.is-on { opacity: 1; transform: none; filter: blur(0); }
.look__line--final { font-size: clamp(4.5rem, 18vw, 16rem); font-weight: 900; font-stretch: 125%; letter-spacing: -0.06em; }
.look__progress { position: absolute; z-index: 3; left: 50%; bottom: 34px; width: 120px; height: 1px; transform: translateX(-50%); background: rgba(255,255,255,0.15); overflow: hidden; }
.look__progress span { display: block; height: 100%; width: 0; background: var(--gold); }

/* ---------- Sections ---------- */
.sec { position: relative; padding: clamp(90px, 11vw, 160px) 0; overflow: hidden; }
.sec__bgword { position: absolute; left: 50%; top: 30px; transform: translateX(-50%); font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(6rem, 22vw, 22rem); line-height: 1; letter-spacing: -0.06em; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05); pointer-events: none; user-select: none; z-index: 0; }
@supports (animation-timeline: view()) { .sec__bgword { animation: bgwordDrift linear both; animation-timeline: view(); } @keyframes bgwordDrift { from { transform: translateX(-50%) translateY(160px); } to { transform: translateX(-50%) translateY(-160px); } } }
.sec > .container { position: relative; z-index: 1; }
.sec--paper { background: var(--paper); color: var(--ink); }
.tokenomics { border-radius: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px) 0 0; }
.buy { border-radius: 0 0 clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px); }
.sec--paper .sec__sub { color: var(--ink-muted); }
.sec--paper .sec__index { color: var(--ink); }
.sec--paper .sec__bgword { -webkit-text-stroke-color: rgba(11,11,12,0.07); }
.sec--paper .serif { color: var(--ink); }
.sec--paper ::selection { background: var(--ink); color: var(--paper); }
.sec--paper-b { padding-top: 0; }
.sec--paper-b > .container { border-top: 1px solid var(--ink-line); padding-top: clamp(70px, 9vw, 120px); }

/* ---------- 01 Legend ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 100px); align-items: center; margin-bottom: clamp(60px, 8vw, 110px); }
.coin-stage { position: relative; width: min(100%, 400px); aspect-ratio: 1; margin: 0 auto; perspective: 1100px; touch-action: pan-y; cursor: grab; user-select: none; -webkit-user-select: none; }
.coin-stage:active { cursor: grabbing; }
.coin-orbit { position: absolute; inset: -6%; animation: spin 36s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.coin-orbit text { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.34em; fill: rgba(255,255,255,0.3); }
.coin { position: absolute; inset: 15%; transform-style: preserve-3d; transform: rotateX(10deg); will-change: transform; }
.coin img { pointer-events: none; -webkit-user-drag: none; }
.coin__face { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: grid; place-items: center; background: radial-gradient(circle at 35% 30%, #ffe9a6 0%, #f5c443 35%, #e59a17 70%, #b8720e 100%); box-shadow: inset 0 0 40px rgba(120,70,0,0.35); }
.coin__face--front { transform: translateZ(calc(var(--th, 22px) / 2)); }
.coin__face--back { transform: rotateY(180deg) translateZ(calc(var(--th, 22px) / 2)); }
.coin__face img { width: 82%; height: 82%; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 4px #b8720e, 0 0 0 7px #ffe082, inset 0 0 30px rgba(0,0,0,0.5); }
.coin__rim { position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 7px #d99a1e, inset 0 0 0 9px #ffe082, inset 0 0 0 12px #c98a10; pointer-events: none; }
.coin__rim::after { content: ''; position: absolute; inset: 10px; border-radius: 50%; border: 1px dashed rgba(120,70,0,0.5); }
.coin__crown { width: 44%; height: auto; aspect-ratio: 64/48; filter: drop-shadow(0 4px 10px rgba(120,60,0,0.6)); }
.coin__ticker { position: absolute; bottom: 14%; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(1rem, 3vw, 1.4rem); letter-spacing: -0.02em; color: #7a4a00; }
.coin__edge { position: absolute; inset: 0; transform-style: preserve-3d; }
.coin__facet { position: absolute; left: 50%; top: 50%; width: var(--fw, 20px); height: var(--th, 22px); margin: calc(var(--th, 22px) / -2) 0 0 calc(var(--fw, 20px) / -2); transform: rotateZ(var(--a)) translateY(calc(var(--r, 140px) * -1)) rotateX(90deg); backface-visibility: hidden; -webkit-backface-visibility: hidden; background: var(--fc, #c98a10); }
.coin-shadow { position: absolute; left: 22%; right: 22%; bottom: 2%; height: 26px; border-radius: 50%; background: radial-gradient(ellipse, rgba(0,0,0,0.75), transparent 70%); filter: blur(6px); }
.coin-hint { position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.about__copy p { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.65; }
.about__copy p strong { color: var(--text); font-weight: 600; }
.about__copy p em { color: var(--gold-3); font-family: var(--font-serif); font-size: 1.15em; }
.about__cta { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 30px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar { position: relative; padding: 28px 28px 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,0.015); transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out); }
.pillar:hover { border-color: rgba(245,196,67,0.35); background: rgba(255,255,255,0.03); transform: translateY(-4px); }
.pillar__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.pillar__n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--muted-2); }
.pillar__ico { width: 26px; height: 26px; color: var(--gold); transition: transform 0.5s var(--ease-spring); }
.pillar:hover .pillar__ico { transform: rotate(-10deg) scale(1.15); }
.pillar h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 105%; font-size: 1.2rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.pillar p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* ---------- 02 Tokenomics (paper) ---------- */
.spec { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 100px); align-items: start; }
.spec__chart { display: flex; flex-direction: column; align-items: center; gap: 30px; position: sticky; top: 110px; }
.donut { position: relative; width: min(100%, 320px); aspect-ratio: 1; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut__track { fill: none; stroke: rgba(11,11,12,0.08); stroke-width: 20; }
.donut__seg { fill: none; stroke-width: 20; stroke-dasharray: 0 502.65; transition: stroke-dasharray 1.6s var(--ease-out), stroke-width 0.3s; }
.donut__seg:hover { stroke-width: 24; }
.donut__center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.donut__big { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.05em; color: var(--ink); line-height: 1; }
.donut__small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; }
.legend { width: 100%; display: grid; }
.legend li { display: flex; align-items: center; gap: 12px; padding: 14px 4px; border-top: 1px solid var(--ink-line); transition: padding-left 0.35s var(--ease-spring); }
.legend li:last-child { border-bottom: 1px solid var(--ink-line); }
.legend li:hover { padding-left: 12px; }
.legend__swatch { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.legend__swatch--gold { background: var(--gold); }
.legend__swatch--ink { background: var(--ink); }
.legend__swatch--blue { background: var(--blue); }
.legend__name { flex: 1; font-size: 14px; font-weight: 500; }
.legend__pct { font-family: var(--font-mono); font-weight: 600; }
.spec__rows { border-top: 1px solid var(--ink-line); }
.spec__row { display: grid; grid-template-columns: 1fr auto; gap: 2px 24px; padding: 24px 0; border-bottom: 1px solid var(--ink-line); align-items: baseline; transition: padding-left 0.35s var(--ease-spring); }
.spec__row:hover { padding-left: 10px; }
.spec__row dt { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.spec__row dd { margin: 0; grid-column: 2; grid-row: 1 / span 2; font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -0.03em; text-align: right; display: flex; align-items: center; justify-content: flex-end; }
.spec__row small { grid-column: 1; color: var(--ink-muted); font-size: 13px; }

/* ---------- 03 How to buy (paper) ---------- */
.buy__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 100px); align-items: start; }
.buy__head { position: sticky; top: 110px; }
.buy__head .sec__sub { margin-bottom: 30px; }
.buy__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.steps { border-top: 1px solid var(--ink-line); counter-reset: step; }
.step { display: grid; grid-template-columns: 72px 1fr 32px; gap: 22px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--ink-line); transition: padding-left 0.4s var(--ease-spring), background 0.4s; }
.step:hover { padding-left: 12px; }
.step__n { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 2rem; letter-spacing: -0.05em; line-height: 1; color: var(--ink); opacity: 0.2; transition: opacity 0.4s, color 0.4s; }
.step:hover .step__n { opacity: 1; color: var(--gold-2); }
.step h3 { font-family: var(--font-display); font-weight: 700; font-stretch: 105%; font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.step p { color: var(--ink-muted); margin: 0; font-size: 0.98rem; max-width: 520px; }
.step p strong { color: var(--ink); font-weight: 600; }
.step__ico { width: 26px; height: 26px; color: var(--ink); opacity: 0.45; margin-top: 4px; transition: opacity 0.3s, transform 0.5s var(--ease-spring); }
.step:hover .step__ico { opacity: 1; transform: rotate(-10deg) scale(1.15); }

/* ---------- 04 Roadmap ---------- */
.roadmap { position: relative; background: var(--bg); }
.roadmap__pin { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: clamp(24px, 4vh, 48px); padding-block: 40px; }
.roadmap__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.roadmap__head .h2 { margin-bottom: 0; }
.roadmap__head .sec__index { margin-bottom: 14px; }
.roadmap__hint { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.roadmap__hint svg { width: 16px; height: 16px; animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.roadmap__track { display: flex; gap: 22px; align-items: stretch; padding-left: max(clamp(18px, 4vw, 48px), calc((100vw - 1240px) / 2)); padding-right: 10vw; will-change: transform; }
.phase { position: relative; flex: 0 0 min(430px, 82vw); padding: 34px 32px 30px; border-radius: var(--radius-lg); background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; transition: border-color 0.4s, transform 0.5s var(--ease-out); }
.phase:hover { border-color: rgba(245,196,67,0.4); transform: translateY(-6px); }
.phase--done { border-color: rgba(245,196,67,0.45); }
.phase__roman { position: absolute; right: 18px; top: 8px; font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 5.5rem; line-height: 1; letter-spacing: -0.06em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1); pointer-events: none; }
.phase--done .phase__roman { -webkit-text-stroke-color: rgba(245,196,67,0.4); }
.phase__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.phase__live { width: 7px; height: 7px; border-radius: 50%; background: #3dff8f; animation: ping 1.8s infinite; }
.phase h3 { font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: 1.6rem; letter-spacing: -0.03em; margin-bottom: 18px; }
.phase li { position: relative; padding: 8px 0 8px 26px; color: var(--muted); font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.phase li:last-child { border-bottom: 0; }
.phase li::before { content: ''; position: absolute; left: 0; top: 13px; width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line-2); }
.phase li.done { color: var(--text); }
.phase li.done::before { border-color: transparent; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0b0c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat, var(--gold); }
.phase--end { flex-basis: min(360px, 80vw); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 18px; background: radial-gradient(circle at 50% 30%, rgba(245,196,67,0.12), transparent 60%), var(--bg-2); }
.phase--end img { width: 100px; height: 100px; border-radius: 50%; box-shadow: 0 0 0 2px var(--gold); }
.phase__endtxt { font-family: var(--font-display); font-weight: 800; font-stretch: 112%; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.25; }
.roadmap__bar { height: 1px; background: var(--line); overflow: hidden; }
.roadmap__bar span { display: block; height: 100%; width: 0; background: var(--gold); }

/* ---------- 05 Meme Forge ---------- */
.forge { display: grid; grid-template-columns: 1.05fr 0.95fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-2); }
.forge__preview { background: #000; display: grid; place-items: center; padding: clamp(16px, 3vw, 28px); border-right: 1px solid var(--line); }
.forge__preview canvas { width: 100%; max-width: 560px; height: auto; border-radius: 12px; }
.forge__panel { padding: clamp(24px, 3.5vw, 40px); display: flex; flex-direction: column; gap: 18px; }
.field { display: grid; gap: 8px; }
.field span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field input { width: 100%; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--line-2); color: var(--text); font-size: 15px; transition: border-color 0.3s, box-shadow 0.3s; }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,196,67,0.14); }
.forge__presets { display: flex; flex-wrap: wrap; gap: 8px; }
.forge__presets button { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); transition: all 0.3s var(--ease-spring); }
.forge__presets button:hover { color: var(--ink); border-color: var(--gold); background: var(--gold); transform: translateY(-2px); }
.forge__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

/* ---------- 06 Horde ---------- */
.horde { padding-top: clamp(120px, 14vw, 200px); }
.kinetic { position: absolute; left: 0; right: 0; top: 0; overflow: hidden; pointer-events: none; user-select: none; }
.kinetic__row { display: flex; white-space: nowrap; font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(4rem, 12vw, 10rem); line-height: 1; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.08); will-change: transform; }
.kinetic__row--alt { color: rgba(255,255,255,0.025); -webkit-text-stroke: 0; }
.kinetic__row span { flex: none; padding-right: 0.25em; }
.horde__box { position: relative; overflow: hidden; text-align: center; padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px); border-radius: 30px; background: #0a0a0c; border: 1px solid var(--line); }
.horde__glow { position: absolute; left: 50%; top: -220px; width: 760px; height: 520px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(245,196,67,0.22), transparent 60%); filter: blur(50px); pointer-events: none; }
.horde__avatar { position: relative; width: 120px; height: 120px; margin: 0 auto 30px; animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.horde__avatar img { border-radius: 50%; box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--gold); }
.horde__crown { position: absolute; top: -32px; left: 50%; width: 60px; aspect-ratio: 64/48; transform: translateX(-50%) rotate(-10deg); filter: drop-shadow(0 8px 16px rgba(245,196,67,0.5)); }
.horde__box .h2 { margin-bottom: 18px; }
.horde__box > p { color: var(--muted); max-width: 540px; margin: 0 auto 44px; font-size: 1.05rem; position: relative; }
.socials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; }
.social { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 28px 16px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.02); transition: border-color 0.4s, transform 0.5s var(--ease-out), background 0.4s; }
.social svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: 8px; transition: transform 0.5s var(--ease-spring); }
.social:hover { transform: translateY(-6px); border-color: rgba(245,196,67,0.4); background: rgba(255,255,255,0.04); }
.social:hover svg { transform: translateY(-3px) scale(1.15) rotate(-6deg); }
.social__name { font-family: var(--font-display); font-weight: 700; font-stretch: 105%; font-size: 1rem; }
.social__sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- 07 FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 100px); align-items: start; }
.faq__head { position: sticky; top: 110px; }
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 22px; padding: 24px 0; font-family: var(--font-display); font-weight: 700; font-stretch: 105%; font-size: 1.12rem; letter-spacing: -0.01em; transition: color 0.3s; }
.acc summary::-webkit-details-marker { display: none; }
.acc__n { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.2em; color: var(--muted-2); }
.acc[open] summary, .acc summary:hover { color: var(--gold-3); }
.acc__plus { position: relative; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); flex: none; margin-left: auto; transition: transform 0.5s var(--ease-spring), background 0.3s, border-color 0.3s; }
.acc__plus::before, .acc__plus::after { content: ''; position: absolute; left: 50%; top: 50%; background: currentColor; transform: translate(-50%, -50%); }
.acc__plus::before { width: 12px; height: 1.5px; } .acc__plus::after { width: 1.5px; height: 12px; }
.acc[open] .acc__plus { transform: rotate(135deg); background: var(--gold); border-color: var(--gold); color: var(--ink); }
.acc__body { padding: 0 0 26px 46px; color: var(--muted); max-width: 640px; }
.acc__body p { margin: 0; }
.acc__body a { color: var(--gold); border-bottom: 1px solid rgba(245,196,67,0.4); }
.acc[open] .acc__body { animation: accIn 0.5s var(--ease-out); }
@keyframes accIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 64px 0 120px; border-top: 1px solid var(--line); background: var(--bg); overflow: hidden; }
.footer__giant { position: absolute; left: 50%; bottom: -0.2em; transform: translateX(-50%); font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(7rem, 28vw, 26rem); line-height: 1; letter-spacing: -0.06em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05); background: linear-gradient(180deg, rgba(245,196,67,0.07), transparent 70%); -webkit-background-clip: text; background-clip: text; pointer-events: none; user-select: none; }
.footer .container { position: relative; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.footer__logo { display: flex; align-items: center; gap: 14px; }
.footer__logo img { border-radius: 50%; box-shadow: 0 0 0 2px var(--gold); }
.footer__wordmark { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 18px; letter-spacing: -0.02em; }
.footer__tag { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.footer__links { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.footer__links a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 8px; }
.footer__ca { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-bottom: 26px; word-break: break-all; }
.footer__ca code { color: var(--gold-3); }
.footer__disclaimer { font-size: 12.5px; color: var(--muted-2); max-width: 900px; line-height: 1.7; margin-bottom: 26px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); padding-top: 22px; border-top: 1px solid var(--line); }
.footer__base { display: inline-flex; align-items: center; color: var(--muted); }

/* ---------- Mobile buy bar, to-top, toast ---------- */
.buybar { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 80; display: none; gap: 10px; padding: 10px; border-radius: 20px; background: rgba(12,12,14,0.96); border: 1px solid var(--line-2); box-shadow: 0 20px 50px -15px rgba(0,0,0,0.9); transform: translateY(140%); transition: transform 0.6s var(--ease-expo); }
.buybar.is-visible { transform: none; }
.buybar .btn--ghost { padding: 12px 16px; }
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; transform: translateY(100px) scale(0.6); opacity: 0; transition: transform 0.5s var(--ease-spring), opacity 0.4s; }
.to-top svg { width: 18px; height: 18px; }
.to-top.is-visible { transform: none; opacity: 1; }
.to-top:hover { transform: translateY(-4px) scale(1.06); }
.toast { position: fixed; left: 50%; bottom: 90px; z-index: 200; transform: translate(-50%, 30px); opacity: 0; padding: 12px 20px; border-radius: 999px; background: rgba(12,12,14,0.94); border: 1px solid rgba(245,196,67,0.5); color: #fff; font-weight: 500; font-size: 14px; box-shadow: 0 20px 50px -15px rgba(0,0,0,0.9); transition: transform 0.5s var(--ease-spring), opacity 0.4s; pointer-events: none; white-space: nowrap; max-width: calc(100vw - 32px); overflow: hidden; text-overflow: ellipsis; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Motion utilities ---------- */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-expo); transition-delay: var(--d, 0s); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }
.fill-text .fw { color: rgba(255,255,255,0.16); transition: color 0.35s; }
.fill-text .fw.on { color: inherit; }
.beam::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: conic-gradient(from var(--angle), transparent 0 62%, var(--gold) 80%, transparent 100%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); 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.4s; pointer-events: none; z-index: 2; }
.beam:hover::after { opacity: 1; animation: angleSpin 2.2s linear infinite; }
@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .reveal-up { filter: blur(10px); transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-expo), filter 0.9s var(--ease-out); }
  .reveal-up.is-visible { filter: blur(0); }
}

/* ---------- Side section indicator (desktop) ---------- */
.sidenav { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 60; display: none; flex-direction: column; gap: 14px; }
.sidenav a { position: relative; display: grid; place-items: center; width: 16px; height: 16px; }
.sidenav a i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.35); transition: transform 0.4s var(--ease-spring), background 0.3s; }
.sidenav a::after { content: attr(data-label); position: absolute; right: 24px; top: 50%; transform: translate(6px, -50%); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; opacity: 0; transition: opacity 0.3s, transform 0.4s var(--ease-expo); pointer-events: none; }
.sidenav a:hover::after, .sidenav a.is-active::after { opacity: 1; transform: translate(0, -50%); }
.sidenav a.is-active i { background: var(--gold); transform: scale(1.8); box-shadow: 0 0 12px rgba(245,196,67,0.6); }
.sidenav.on-paper a i { background: rgba(11,11,12,0.3); }
.sidenav.on-paper a.is-active i { background: var(--ink); box-shadow: none; }
.sidenav.on-paper a::after { color: var(--ink-muted); }
@media (min-width: 1180px) and (pointer: fine) { .sidenav { display: flex; } }
.mobile-menu__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-width: 0; margin-top: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.mobile-menu__social { display: flex; gap: 8px; }
.mobile-menu__ca { flex: 1; min-width: 0; text-align: right; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__stats { grid-template-columns: repeat(4, 1fr); }
  .stat--links { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .socials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .nav__actions .icon-btn { display: none; }
  /* hero: full-bleed image on top, copy overlaps its fade */
  .hero { min-height: auto; }
  .hero__media { width: 100%; bottom: auto; height: 74svh; transform: none; }
  .hero__media img { object-position: 50% 20%; -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%); mask-image: linear-gradient(180deg, #000 55%, transparent 100%); }
  .hero__giant { display: none; }
  .hero__meta { gap: 8px; margin-bottom: 26px; }
  .hero__meta i { display: none; }
  .hero__meta > span { padding: 7px 12px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(7,7,8,0.55); font-size: 11px; letter-spacing: 0.12em; }
  .sec__bgword { display: none; }
  .sec__index { margin-bottom: 22px; }
  .hero__inner { padding: 50svh 0 40px; }
  .hero__copy { max-width: none; }
  .hero__title { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px 18px; border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat--links { grid-column: 1 / -1; padding-left: 0; }
  .ca { max-width: 100%; }
  .ca__value { max-width: 180px; }
  .about__grid { grid-template-columns: 1fr; }
  .coin-stage { width: min(70vw, 340px); }
  .pillars { grid-template-columns: 1fr; }
  .spec, .buy__grid, .faq__grid { grid-template-columns: 1fr; }
  .spec__chart, .buy__head, .faq__head { position: static; }
  .forge { grid-template-columns: 1fr; }
  .forge__preview { border-right: 0; border-bottom: 1px solid var(--line); }
  .roadmap__pin { position: static; height: auto; overflow: visible; padding-block: clamp(80px, 10vw, 140px) 60px; }
  .roadmap__track { flex-direction: column; gap: 0; padding: 0 clamp(18px, 4vw, 48px) 40px; transform: none !important; }
  .phase { flex-basis: auto; position: sticky; top: calc(var(--nav-h) + 6px + var(--k, 0) * 14px); margin-bottom: 22px; background: #111114; box-shadow: 0 -12px 40px rgba(0,0,0,0.55); }
  .phase:hover { transform: none; }
  .roadmap__hint, .roadmap__bar { display: none; }
  .buybar { display: flex; }
  .to-top { bottom: 104px; right: 16px; width: 44px; height: 44px; }
  .footer { padding-bottom: 130px; }
  /* softer edges on phones */
  .hero__strip { margin: 0 clamp(14px, 4vw, 48px) 26px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
  .hero__strip .container { width: auto; padding: 0 18px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { padding-right: 0; }
  .marquee-wrap { padding: 0 12px 14px; }
  .marquee { border-radius: 16px; }
  .marquee--dark { border: 1px solid var(--line); margin-top: 10px; }
  .horde__box { border-radius: 24px; }
  .forge { border-radius: 20px; }
  /* touch performance */
  .nav.is-scrolled, .hero__strip { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(7,7,8,0.98); }
  .noise { display: none; }
  .sec__bgword { animation: none; }
  /* The Look: absolute cover image, clipped + rounded — no sticky (unreliable in in-app browsers) */
  .look { height: auto; padding: 0 12px; }
  .look__sticky { position: relative; height: auto; overflow: hidden; border-radius: 28px; background: var(--bg); }
  .look__img { position: absolute; inset: 0; height: 100%; margin: 0; transform: none !important; object-position: 50% 22%; }
  .look__shade { background: radial-gradient(ellipse 90% 60% at 50% 50%, rgba(0,0,0,0.25), rgba(0,0,0,0.75) 100%), linear-gradient(180deg, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%); }
  .look__lines { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 13vh; padding: 16vh 24px 12vh; }
  .look__line { grid-area: auto; transform: translateY(30px); filter: none; }
  .look__line.is-on { transform: none; }
  .look__progress { display: none; }
}
@media (max-width: 600px) {
  .hero__meta { gap: 10px; font-size: 11px; }
  .marquee__track { font-size: 14px; gap: 26px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn, .ca { width: 100%; }
  .ca__value { flex: 1; max-width: none; }
  .buy__cta { flex-direction: column; }
  .buy__cta .btn { width: 100%; }
  .forge__actions .btn { flex: 1; }
  .sec__bgword { font-size: 5rem; }
  .step { grid-template-columns: 52px 1fr; }
  .step__ico { display: none; }
  .socials { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .acc__body { padding-left: 0; }
}
@media (hover: none) {
  .pillar:hover, .phase:hover, .social:hover, .icon-btn:hover, .btn--gold:hover, .btn--ghost:hover, .btn--ink:hover, .btn--ghost-ink:hover, .forge__presets button:hover, .to-top:hover { transform: none; }
  .legend li:hover, .spec__row:hover, .step:hover { padding-left: inherit; }
  .btn:hover .btn__txt::before { transform: none; }
  .btn:hover .btn__txt::after { transform: translateY(110%); }
  .beam:hover::after { opacity: 0; animation: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; scroll-behavior: auto !important; }
  .reveal-up, .reveal-left, .reveal-right, .hero__title .ch, .split .w > i { opacity: 1; transform: none; filter: none; }
  .look { height: auto; } .look__sticky { height: 70vh; } .look__line { opacity: 1; position: static; }
}
