/* =========================================================
   Victor's Company · victors.company
   Palette and type match the Telegram Mini App.
   ========================================================= */
:root {
  --ink: #0d0826;
  --night: #120b33;
  --night-2: #1a1147;
  --night-3: #241a5c;
  --night-4: #2f2472;
  --line: rgba(196, 184, 255, 0.14);
  --line-2: rgba(196, 184, 255, 0.24);
  --text: #fff6e0;
  --muted: #b9b0e6;
  --dim: #8a80c2;

  --gold: #ffc83d;
  --gold-2: #ffa90f;
  --gold-dark: #b56a00;
  --orange: #ff7a1a;
  --mint: #2ee59d;
  --pink: #ff4fa3;
  --sky: #33d1ff;
  --grape: #8b5cf6;

  --font-game: 'Lilita One', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 24px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--night);
  background-image:
    radial-gradient(90% 50% at 50% -5%, #3b2a9a 0%, transparent 70%),
    linear-gradient(180deg, var(--night-2) 0%, var(--night) 40%, var(--ink) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-game); font-weight: 400; letter-spacing: 0.01em; line-height: 1.05; margin: 0; }
p { margin: 0; }
b { font-weight: 800; color: #fff; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 8px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: 10px; font-weight: 800; }
.skip:focus { left: 8px; }
.muted { color: var(--dim); }

.grad-gold { background: linear-gradient(180deg, #ffe89a 0%, #ffc83d 45%, #ff9a0f 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-pink { background: linear-gradient(120deg, #ff8fd0 0%, #ff4fa3 50%, #b36bff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-mint { background: linear-gradient(120deg, #9dffd7 0%, #2ee59d 55%, #33d1ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-sky { background: linear-gradient(120deg, #9ae9ff 0%, #33d1ff 50%, #8b5cf6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 60;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--sky));
  transform-origin: 0 50%; transform: scaleX(var(--p, 0));
}

/* ---------- buttons ---------- */
.btn {
  --shade: rgba(0,0,0,.35);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 16px; font-family: var(--font-game); font-size: 18px; letter-spacing: .02em;
  white-space: nowrap; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .2s, filter .2s;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn--sm { padding: 9px 16px; font-size: 16px; border-radius: 13px; }
.btn--lg { padding: 16px 28px; font-size: 20px; border-radius: 18px; }
.btn--gold {
  background: linear-gradient(180deg, #ffe07a 0%, #ffc83d 45%, #ffa90f 100%);
  color: #4a2600;
  box-shadow: 0 5px 0 var(--gold-dark), 0 12px 28px rgba(255, 169, 15, .35), inset 0 2px 0 rgba(255,255,255,.55);
}
.btn--gold::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.65) 50%, transparent 70%) no-repeat;
  background-size: 250% 100%; background-position: 150% 0; mix-blend-mode: soft-light;
}
.btn--gold:hover::after { animation: shine 1s var(--ease); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--gold-dark), 0 18px 34px rgba(255,169,15,.45), inset 0 2px 0 rgba(255,255,255,.55); }
.btn--gold:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--gold-dark), 0 6px 12px rgba(255,169,15,.3), inset 0 2px 0 rgba(255,255,255,.55); }
.btn--ghost {
  background: rgba(255,255,255,.06); color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--line-2); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--ghost svg { fill: none; }
@keyframes shine { from { background-position: 150% 0; } to { background-position: -50% 0; } }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 14px 0; transition: padding .3s var(--ease); }
.nav::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: rgba(18, 11, 51, .72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled { padding: 8px 0; }
.nav.is-scrolled::before { opacity: 1; }
.nav__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-game); font-size: 22px; }
.brand img { width: 40px; height: 40px; filter: drop-shadow(0 4px 10px rgba(255,200,61,.4)); transition: transform .5s var(--spring); }
.brand:hover img { transform: rotate(-12deg) scale(1.08); }
.brand b { font-weight: 400; color: var(--gold); }
.nav__links { display: flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px var(--line); }
.nav__links a { position: relative; padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 15px; color: var(--muted); transition: color .2s, background-color .2s; }
.nav__links a:hover { color: #fff; }
.nav__links a.is-active { color: var(--ink); background: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px var(--line-2); position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2.5px; border-radius: 2px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
.burger span:first-child { top: 16px; } .burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 20.5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 20.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45; display: grid; place-items: center;
  background: rgba(13, 8, 38, .94); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mobile-menu a:not(.btn) { font-family: var(--font-game); font-size: 34px; padding: 6px 12px; opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease), transform .45s var(--ease), color .2s; }
.mobile-menu a:not(.btn):hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 18px; opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease) .3s, transform .45s var(--ease) .3s; }
.mobile-menu.is-open a { opacity: 1 !important; transform: none !important; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .05s; } .mobile-menu.is-open a:nth-child(3) { transition-delay: .1s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .15s; } .mobile-menu.is-open a:nth-child(5) { transition-delay: .2s; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s), filter .9s var(--ease) var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 130px 0 40px; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: drift 18s ease-in-out infinite alternate; }
.blob--a { width: 520px; height: 520px; background: #6d3cff; top: -120px; left: -140px; }
.blob--b { width: 460px; height: 460px; background: #ff4fa3; opacity: .28; top: 30%; right: -160px; animation-delay: -6s; }
.blob--c { width: 380px; height: 380px; background: #ffc83d; opacity: .16; bottom: -120px; left: 30%; animation-delay: -12s; }
@keyframes drift { to { transform: translate(60px, 40px) scale(1.12); } }

.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px; border-radius: 999px;
  background: rgba(46, 229, 157, .1); box-shadow: inset 0 0 0 1px rgba(46,229,157,.3); color: #aaffdc; font-weight: 800; font-size: 14px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(46,229,157,.7); animation: ping 1.8s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(46,229,157,0); } 100% { box-shadow: 0 0 0 0 rgba(46,229,157,0); } }
.hero__title { font-size: clamp(52px, 8.4vw, 112px); margin: 22px 0 22px; line-height: .96; text-shadow: 0 6px 0 rgba(0,0,0,.25); }
.hero__title .line { display: block; overflow: hidden; padding: .06em 0 .08em; }
.hero__title .word { display: inline-block; transform: translateY(110%) rotate(6deg); transition: transform 1s var(--ease); }
.hero__title.is-in .word { transform: none; }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 30px 0 0; color: var(--muted); font-weight: 700; font-size: 15px; }
.hero__chips li { display: inline-flex; align-items: center; gap: 8px; }
.hero__chips img { width: 20px; height: 20px; }
.hero__chips svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* portal */
.hero__stage { position: relative; }
.portal { position: relative; aspect-ratio: 4 / 4.3; max-width: 560px; margin-left: auto; perspective: 1200px; }
.portal__frame {
  position: absolute; inset: 0; border-radius: 40px; overflow: hidden; transform-style: preserve-3d;
  box-shadow: 0 0 0 6px rgba(255,255,255,.08), 0 0 0 7px rgba(18,11,51,1), 0 40px 80px -20px rgba(0,0,0,.7), 0 0 120px -20px rgba(139,92,246,.7);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .5s var(--ease);
}
.portal__scenes, .portal__scenes img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portal__scenes img { opacity: 0; transform: scale(1.12); transition: opacity 1.1s var(--ease), transform 6s linear; }
.portal__scenes img.is-on { opacity: 1; transform: scale(1); }
.portal__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,11,51,.55) 0%, transparent 28%, transparent 55%, rgba(18,11,51,.85) 100%); }
.portal__miner { position: absolute; left: 50%; bottom: 13%; width: 62%; aspect-ratio: 1; transform: translateX(-50%); }
.miner-sprite { position: absolute; inset: 0; background-repeat: no-repeat; background-size: auto 100%; filter: drop-shadow(0 18px 18px rgba(0,0,0,.45)); }
.miner-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 18px 18px rgba(0,0,0,.45)); animation: bob 2.4s ease-in-out infinite; transform-origin: 50% 100%; }
.miner-enter { animation: pop .7s var(--spring) both; }
@keyframes bob { 50% { transform: translateY(-6px) scaleY(1.02); } }
@keyframes pop { from { opacity: 0; transform: translateY(30px) scale(.8); } }
.portal__hud { position: absolute; top: 22px; left: 22px; right: 22px; display: flex; justify-content: space-between; align-items: flex-start; }
.hud__label { display: block; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,246,224,.7); }
.hud__value { font-family: var(--font-game); font-size: 22px; text-shadow: 0 2px 0 var(--ink); }
.hud__value--big { font-size: 44px; line-height: 1; color: var(--gold); -webkit-text-stroke: 1.5px var(--ink); paint-order: stroke fill; text-shadow: 0 4px 0 var(--ink); font-variant-numeric: tabular-nums; }
.hud__level { text-align: right; }
.portal__bar { position: absolute; left: 22px; right: 22px; bottom: 58px; height: 12px; border-radius: 99px; background: rgba(13,8,38,.7); box-shadow: inset 0 0 0 2px rgba(255,255,255,.12); overflow: hidden; }
.portal__bar span { display: block; height: 100%; width: 0.1%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), var(--sky), var(--grape), var(--pink), var(--gold)); background-size: 560px 100%; transition: width .25s linear; }
.portal__zone { position: absolute; left: 22px; bottom: 20px; font-family: var(--font-game); font-size: 18px; color: var(--text); text-shadow: 0 2px 0 var(--ink); transition: opacity .4s; }
.float-coin { position: absolute; filter: drop-shadow(0 10px 14px rgba(0,0,0,.45)); animation: float 6s ease-in-out infinite; }
.fc1 { top: -18px; left: -26px; }
.fc2 { top: 40%; right: -24px; animation-delay: -2s; }
.fc3 { bottom: 10%; left: -30px; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-18px) rotate(10deg); } }
.sticker {
  position: absolute; padding: 10px 16px; border-radius: 16px; background: rgba(255,246,224,.96); color: var(--ink);
  box-shadow: 0 5px 0 rgba(0,0,0,.25), 0 16px 30px rgba(0,0,0,.35); display: flex; flex-direction: column; line-height: 1.15;
  animation: float 7s ease-in-out infinite;
}
.sticker small { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: #6b5aa8; }
.sticker b { font-family: var(--font-game); font-weight: 400; font-size: 20px; color: var(--ink); font-variant-numeric: tabular-nums; }
.sticker--speed { right: -22px; top: 22%; transform: rotate(4deg); animation-delay: -3s; }
.sticker--shift { left: -34px; bottom: 26%; animation-delay: -1s; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: clamp(48px, 7vw, 80px) 0 0; }
.stat { padding: 20px 22px; border-radius: 20px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line); opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stats.is-in .stat { opacity: 1; transform: none; }
.stats.is-in .stat:nth-child(2) { transition-delay: .08s; } .stats.is-in .stat:nth-child(3) { transition-delay: .16s; } .stats.is-in .stat:nth-child(4) { transition-delay: .24s; }
.stat dt { font-size: 13px; font-weight: 800; color: var(--dim); text-transform: uppercase; letter-spacing: .1em; }
.stat dd { margin: 4px 0 0; font-family: var(--font-game); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat dd small { font-size: .45em; color: var(--gold); margin-left: 6px; }

/* ---------- marquee ---------- */
.marquee { position: relative; margin: 40px 0 0; padding: 18px 0; overflow: hidden; background: linear-gradient(90deg, var(--gold), var(--orange)); transform: rotate(-2deg) scale(1.04); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.marquee__track { display: flex; width: max-content; gap: 0; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 14px; padding: 0 26px; font-family: var(--font-game); font-size: 26px; color: var(--ink); white-space: nowrap; }
.marquee__item img { width: 64px; height: 44px; object-fit: cover; border-radius: 10px; box-shadow: 0 0 0 3px var(--ink); }
.marquee__item::after { content: '✦'; margin-left: 26px; font-size: 18px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- live stats ---------- */
.section--live { padding-top: clamp(90px, 11vw, 130px); }
.live-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--mint); }
.live__updated { display: inline-block; color: var(--dim); font-size: .9em; }
.live__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.live-card {
  position: relative; padding: 24px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(47,36,114,.55), rgba(26,17,71,.75));
  box-shadow: inset 0 0 0 1px var(--line), 0 24px 50px -24px rgba(0,0,0,.7);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.live-card::after { content: ''; position: absolute; left: 24px; right: 24px; top: 0; height: 3px; border-radius: 0 0 3px 3px; background: var(--accent); opacity: .85; }
.live-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent), 0 30px 60px -24px rgba(0,0,0,.8); }
.live-card__label { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.live-card__value { font-family: var(--font-game); font-size: clamp(34px, 3.6vw, 48px); line-height: 1.1; margin: 8px 0 4px; font-variant-numeric: tabular-nums; color: #fff; }
.live-card__value span { display: inline-block; transition: color .6s; }
.live-card__value span.is-bumped { color: var(--accent); }
.live-card__hint { font-size: 14px; color: var(--muted); }
.live-card--online { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px;
  background: radial-gradient(120% 90% at 50% 0%, rgba(46,229,157,.22), transparent 60%), linear-gradient(180deg, rgba(47,36,114,.6), rgba(26,17,71,.8)); }
.live-card--online .live-card__value { font-size: clamp(60px, 7vw, 92px); color: var(--mint); text-shadow: 0 0 40px rgba(46,229,157,.45); }
.radar { position: absolute; top: 26px; right: 26px; width: 64px; height: 64px; }
.radar span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--mint); opacity: 0; animation: radar 3s var(--ease) infinite; }
.radar span:nth-child(2) { animation-delay: 1s; } .radar span:nth-child(3) { animation-delay: 2s; }
.radar::after { content: ''; position: absolute; inset: 24px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 20px var(--mint); }
@keyframes radar { 0% { transform: scale(.3); opacity: .9; } 100% { transform: scale(1.2); opacity: 0; } }
.skeleton .live-card__value span { color: transparent; border-radius: 10px; min-width: 3.2ch;
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.14) 50%, rgba(255,255,255,.06) 75%) 0 0 / 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

.payday { margin-top: 16px; display: flex; align-items: center; gap: 18px; padding: 14px 18px; border-radius: 20px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line); }
.payday[hidden] { display: none; }
.payday__title { display: inline-flex; align-items: center; gap: 8px; flex: none; font-family: var(--font-game); font-size: 18px; color: var(--gold); }
.payday__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.payday__list::-webkit-scrollbar { display: none; }
.payday__list a { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; padding: 8px 14px; border-radius: 14px; background: rgba(13,8,38,.55); box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; font-weight: 700; color: var(--muted); transition: box-shadow .2s, color .2s, transform .2s var(--ease); }
.payday__list a:hover { color: #fff; box-shadow: inset 0 0 0 1px rgba(46,229,157,.5); transform: translateY(-2px); }
.payday__list b { color: var(--mint); font-weight: 800; }
.payday__list .ago { color: var(--dim); font-weight: 600; }
.payday__list .new { animation: swapIn .6s var(--ease) both; }

.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); margin-left: 4px; vertical-align: 1px; animation: ping 1.8s infinite; }
.price-fact:not(.is-live) .live-dot { display: none; }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(80px, 11vw, 140px) 0; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section__head--left { text-align: left; margin: 0; }
.kicker { display: inline-block; font-weight: 900; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section h2 { font-size: clamp(38px, 5.6vw, 68px); text-shadow: 0 5px 0 rgba(0,0,0,.2); }
.section__lead { color: var(--muted); font-size: clamp(17px, 1.5vw, 19px); margin-top: 18px; }
.section__head--left .section__lead { margin-bottom: 26px; }

/* steps */
.steps { position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps__path { position: absolute; left: 4%; right: 4%; top: 44px; width: 92%; height: 40px; overflow: visible; z-index: 0; }
.steps__path path { fill: none; stroke: rgba(255,200,61,.5); stroke-width: 3; stroke-dasharray: 8 10; stroke-dashoffset: 1200; transition: stroke-dashoffset 2.4s var(--ease); }
.steps.is-in .steps__path path { stroke-dashoffset: 0; }
.step { position: relative; z-index: 1; padding: 26px 24px 28px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(47,36,114,.7), rgba(26,17,71,.7)); box-shadow: inset 0 0 0 1px var(--line), 0 20px 40px -20px rgba(0,0,0,.6); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: inset 0 0 0 1px var(--line-2), 0 30px 50px -20px rgba(0,0,0,.7); }
.step__num { position: absolute; top: 20px; right: 22px; font-family: var(--font-game); font-size: 36px; color: rgba(255,255,255,.08); }
.step__icon { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 20px; background: color-mix(in srgb, var(--c) 18%, transparent); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c) 45%, transparent), 0 0 30px -6px var(--c); }
.step__icon svg { width: 30px; height: 30px; fill: none; stroke: var(--c); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- road ---------- */
.section--road { background: radial-gradient(70% 60% at 50% 40%, rgba(139,92,246,.18), transparent 70%); }
.road { display: grid; grid-template-columns: 230px 1fr; gap: 20px; }
.road__tabs { display: flex; flex-direction: column; gap: 6px; }
.road__tab {
  position: relative; display: flex; align-items: center; gap: 12px; padding: 8px 12px 8px 8px; border-radius: 16px; text-align: left;
  color: var(--muted); font-weight: 800; font-size: 15px; transition: background-color .25s, color .25s, transform .3s var(--ease);
}
.road__tab img { width: 38px; height: 38px; object-fit: contain; object-position: bottom; flex: none; transition: transform .4s var(--spring); }
.road__tab .num { font-family: var(--font-game); font-size: 13px; color: var(--dim); display: block; line-height: 1; font-weight: 400; }
.road__tab:hover { background: rgba(255,255,255,.05); color: #fff; }
.road__tab:hover img { transform: scale(1.15) rotate(-6deg); }
.road__tab[aria-selected="true"] { background: rgba(255,200,61,.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,200,61,.5); }
.road__tab[aria-selected="true"] .num { color: var(--gold); }
.road__tab[aria-selected="true"] img { transform: scale(1.18); }

.road__stage { position: relative; min-height: 600px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 0 0 1px var(--line-2), 0 50px 100px -30px rgba(0,0,0,.8); isolation: isolate; }
.road__scene, .road__scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.road__scene img { transition: opacity .8s var(--ease), transform 1.2s var(--ease), filter .8s; }
.road__scene img.is-leaving { opacity: 0; transform: scale(1.08); filter: blur(6px); }
.road__scene img.is-entering { opacity: 0; transform: scale(1.08); }
.road__glow { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,8,38,.9) 0%, rgba(13,8,38,.55) 38%, transparent 65%), linear-gradient(0deg, rgba(13,8,38,.7), transparent 40%); pointer-events: none; }
.road__miner { position: absolute; right: 4%; bottom: 3%; width: min(52%, 440px); aspect-ratio: 1; }
.road__card {
  position: absolute; left: 24px; top: 24px; bottom: 24px; width: min(400px, calc(100% - 48px)); padding: 28px; border-radius: 26px; display: flex; flex-direction: column;
  background: rgba(18,11,51,.62); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); box-shadow: inset 0 0 0 1px var(--line-2);
}
.road__card-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pill { padding: 5px 12px; border-radius: 999px; background: var(--gold); color: var(--ink); font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.road__levels { font-weight: 800; color: var(--muted); font-size: 14px; font-variant-numeric: tabular-nums; }
.road__card h3 { font-size: clamp(34px, 3.4vw, 44px); margin: 18px 0 4px; }
.road__zone { color: var(--gold); font-weight: 800; }
.road__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0 0; }
.road__stats div { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.06); }
.road__stats dt { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); }
.road__stats dd { margin: 2px 0 0; font-family: var(--font-game); font-size: 18px; font-variant-numeric: tabular-nums; }
.swap { animation: swapIn .6s var(--ease) both; }
@keyframes swapIn { from { opacity: 0; transform: translateY(10px); filter: blur(4px); } }
.road__nav { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px var(--line-2); transition: background-color .2s, transform .2s var(--ease); }
.icon-btn:hover { background: var(--gold); color: var(--ink); transform: scale(1.06); }
.icon-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.road__progress { flex: 1; height: 8px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; }
.road__progress span { display: block; height: 100%; width: 10%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--pink)); transition: width .6s var(--ease); }
.road__progress.is-auto span { animation: none; }
.road__note { text-align: center; color: var(--muted); margin-top: 26px; }
.road__note .up { color: var(--mint); } .road__note .down { color: var(--pink); }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  --mx: 50%; --my: 50%;
  position: relative; padding: 28px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(47,36,114,.55), rgba(26,17,71,.75)); box-shadow: inset 0 0 0 1px var(--line), 0 24px 50px -24px rgba(0,0,0,.7);
  transition: transform .5s var(--ease), box-shadow .4s var(--ease);
  transform-style: preserve-3d;
}
.card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx) var(--my), color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.card:hover::before { opacity: 1; }
.card:hover { box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 50%, transparent), 0 30px 60px -24px rgba(0,0,0,.8); }
.card h3 { font-size: 26px; margin-bottom: 10px; position: relative; }
.card p { color: var(--muted); font-size: 16px; position: relative; }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.card__icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; background: color-mix(in srgb, var(--accent) 16%, transparent); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 40%, transparent); }
.card--xl { grid-column: span 2; grid-row: span 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; padding: 36px; }
.card--xl h3 { font-size: clamp(32px, 3.4vw, 44px); }
.card--xl .card__body p { font-size: 17px; }
.card__art { position: relative; align-self: end; }
.card__art img { width: 100%; max-width: 320px; margin-left: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.5)); animation: bob 3s ease-in-out infinite; }
.card--xl::after { content: ''; position: absolute; right: -80px; bottom: -80px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,200,61,.35), transparent 65%); pointer-events: none; }
.tag { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--accent); margin-bottom: 18px; }
.calc { margin-top: 26px; border-radius: 18px; background: rgba(13,8,38,.5); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.calc__row { display: flex; justify-content: space-between; gap: 12px; padding: 13px 18px; font-size: 15px; border-bottom: 1px dashed var(--line); }
.calc__row span { color: var(--muted); font-weight: 700; }
.calc__row b { font-weight: 800; text-align: right; }
.calc__row--total { border: 0; background: rgba(255,200,61,.1); }
.calc__row--total span, .calc__row--total b { color: var(--gold); }
.card--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 20px; }
.lineup { display: flex; align-items: flex-end; justify-content: flex-end; height: 150px; }
.lineup img { height: 100%; width: auto; margin-left: -26px; filter: drop-shadow(0 12px 14px rgba(0,0,0,.5)); transition: transform .5s var(--spring); }
.lineup img:nth-child(1) { height: 62%; } .lineup img:nth-child(2) { height: 72%; } .lineup img:nth-child(3) { height: 82%; } .lineup img:nth-child(4) { height: 91%; }
.card--wide:hover .lineup img { transform: translateY(-8px); }
.card--wide:hover .lineup img:nth-child(2) { transition-delay: .05s; } .card--wide:hover .lineup img:nth-child(3) { transition-delay: .1s; }
.card--wide:hover .lineup img:nth-child(4) { transition-delay: .15s; } .card--wide:hover .lineup img:nth-child(5) { transition-delay: .2s; }
.shift-meter { margin-top: 20px; height: 12px; border-radius: 99px; background: rgba(13,8,38,.6); overflow: hidden; position: relative; }
.shift-meter span { position: absolute; inset: 0; background: linear-gradient(90deg, var(--sky), var(--mint)); transform-origin: 0 50%; animation: fill 6s var(--ease) infinite; border-radius: inherit; }
@keyframes fill { 0% { transform: scaleX(0); } 80%, 100% { transform: scaleX(1); } }

/* ---------- token ---------- */
.section--token { overflow: hidden; }
.section--token::before { content: ''; position: absolute; inset: 10% 0; background: linear-gradient(180deg, transparent, rgba(255,200,61,.07), transparent); pointer-events: none; }
.token { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.token__coin { position: relative; aspect-ratio: 1; max-width: 460px; width: 100%; margin: 0 auto; display: grid; place-items: center; perspective: 1000px; }
.coin3d { position: relative; width: 58%; aspect-ratio: 1; transform-style: preserve-3d; animation: spin 7s linear infinite; }
.coin3d__face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 50%; }
.coin3d__face img { width: 100%; height: 100%; filter: drop-shadow(0 0 40px rgba(255,200,61,.5)); }
.coin3d__back { transform: rotateY(180deg); }
.coin3d::before { content: ''; position: absolute; inset: 1%; border-radius: 50%; background: #b86a00; transform: translateZ(-6px); }
@keyframes spin { to { transform: rotateY(360deg); } }
.coin-shadow { position: absolute; bottom: 8%; width: 40%; height: 7%; border-radius: 50%; background: radial-gradient(rgba(0,0,0,.55), transparent 70%); animation: shadow 7s linear infinite; }
@keyframes shadow { 25%, 75% { transform: scaleX(.55); } }
.orbit { position: absolute; inset: 4%; border-radius: 50%; border: 1.5px dashed rgba(255,200,61,.3); animation: rot 40s linear infinite; }
.orbit--2 { inset: 16%; border-color: rgba(139,92,246,.35); animation-direction: reverse; animation-duration: 28s; }
.orbit::before { content: ''; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.orbit--2::before { background: var(--pink); box-shadow: 0 0 18px var(--pink); top: auto; bottom: -7px; }
@keyframes rot { to { transform: rotate(360deg); } }
.token__copy h2 { font-size: clamp(46px, 7vw, 88px); }
.token__facts { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.token__facts li { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px var(--line); }
.token__facts span { display: block; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); }
.token__facts b { font-family: var(--font-game); font-weight: 400; font-size: 18px; }
.contract { margin-top: 16px; padding: 16px 18px; border-radius: 18px; background: rgba(13,8,38,.6); box-shadow: inset 0 0 0 1px var(--line-2); }
.contract__label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); }
.contract__row { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.contract code { flex: 1; min-width: 0; font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; font-size: 14.5px; color: var(--gold); overflow-wrap: anywhere; }
.copy { display: inline-flex; align-items: center; gap: 6px; flex: none; padding: 9px 14px; border-radius: 12px; font-weight: 800; font-size: 14px; background: rgba(255,200,61,.14); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(255,200,61,.4); transition: background-color .2s, color .2s, transform .2s var(--spring); }
.copy svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.copy:hover { background: var(--gold); color: var(--ink); }
.copy.is-done { background: var(--mint); color: var(--ink); transform: scale(1.05); box-shadow: none; }
.token__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- trust ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust__item { padding: 28px 24px; border-radius: var(--radius); background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line); transition: background-color .3s, transform .4s var(--ease); }
.trust__item:hover { background: rgba(255,255,255,.06); transform: translateY(-4px); }
.trust__badge { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; font-weight: 900; margin-bottom: 18px; background: linear-gradient(135deg, var(--sky), var(--grape)); box-shadow: 0 10px 24px -6px rgba(51,209,255,.5); color: #fff; }
.trust__badge svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.trust__item h3 { font-size: 22px; margin-bottom: 8px; }
.trust__item p { color: var(--muted); font-size: 15.5px; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.faq .section__head { position: sticky; top: 110px; }
.faq h2 { font-size: clamp(36px, 4.4vw, 56px); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq details { border-radius: 20px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line); transition: background-color .3s, box-shadow .3s; }
.faq details[open] { background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,200,61,.35); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 60px 20px 24px; font-family: var(--font-game); font-size: 21px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 18px; top: 50%; width: 32px; height: 32px; margin-top: -16px; border-radius: 10px; display: grid; place-items: center; font-family: var(--font-body); font-weight: 900; font-size: 22px; background: rgba(255,255,255,.08); transition: transform .4s var(--spring), background-color .3s, color .3s; }
.faq details[open] summary::after { transform: rotate(135deg); background: var(--gold); color: var(--ink); }
.faq details > div { overflow: hidden; }
.faq details > div > p { padding: 0 24px 22px; color: var(--muted); }
.faq details.is-closing summary::after { transform: none; background: rgba(255,255,255,.08); color: inherit; }
.faq a:not(.btn) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- cta ---------- */
.cta-wrap { padding: 20px 0 clamp(80px, 10vw, 130px); }
.cta { position: relative; border-radius: 40px; overflow: hidden; padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 60px); text-align: center; isolation: isolate; box-shadow: 0 0 0 1px var(--line-2), 0 50px 100px -30px rgba(0,0,0,.8); }
.cta__bg { position: absolute; inset: 0; z-index: -1; background: url('/assets/zones/zone-9.webp') center / cover; }
.cta__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 50%, rgba(18,11,51,.55), rgba(18,11,51,.92)); }
.cta h2 { font-size: clamp(38px, 4.6vw, 58px); text-shadow: 0 5px 0 rgba(0,0,0,.35); }
.cta p { color: var(--text); font-size: 19px; margin-top: 16px; opacity: .85; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta__copy { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.cta__miner { position: absolute; bottom: -8px; height: min(78%, 360px); width: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.6)); transition: transform .8s var(--ease); }
.cta__miner--l { left: 2%; height: min(58%, 260px); transform: translateX(-30%); }
.cta__miner--r { right: 1%; transform: translateX(30%); }
.cta.is-in .cta__miner { transform: none; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 28px; background: rgba(13,8,38,.6); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { color: var(--dim); margin-top: 14px; max-width: 300px; }
.footer h4 { font-size: 18px; margin-bottom: 14px; color: var(--gold); }
.footer__grid > div:not(.footer__brand) a { display: block; color: var(--muted); padding: 4px 0; font-weight: 700; transition: color .2s, transform .2s var(--ease); }
.footer__grid > div:not(.footer__brand) a:hover { color: #fff; transform: translateX(4px); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav__links a { padding: 8px 11px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps__path { display: none; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .live__grid { grid-template-columns: repeat(3, 1fr); }
  .live-card--online { grid-row: auto; grid-column: span 3; min-height: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--xl { grid-column: span 2; grid-row: auto; }
  .card--wide { grid-column: span 2; }
}
@media (max-width: 1180px) {
  .cta { padding-bottom: 230px; }
  .cta__miner { height: 220px; } .cta__miner--l { height: 170px; }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .hero { padding-top: 110px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__lead { margin: 0 auto; }
  .hero__actions, .hero__chips { justify-content: center; }
  .portal { margin: 10px auto 0; max-width: 480px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .road { grid-template-columns: 1fr; }
  .road__tabs { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 8px; scrollbar-width: none; margin: 0 calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); }
  .road__tabs::-webkit-scrollbar { display: none; }
  .road__tab { flex: none; scroll-snap-align: start; padding: 6px 14px 6px 6px; background: rgba(255,255,255,.04); }
  .road__stage { min-height: 0; display: flex; flex-direction: column; }
  .road__scene { position: relative; aspect-ratio: 4 / 3; }
  .road__glow { background: linear-gradient(0deg, rgba(13,8,38,1) 0%, transparent 45%); height: calc(100vw * .75); max-height: 75%; }
  .road__miner { position: absolute; top: 0; bottom: auto; right: 50%; transform: translateX(50%); width: 62%; margin-top: 12%; }
  .road__card { position: relative; inset: auto; width: auto; margin: -40px 12px 12px; }
  .token { grid-template-columns: 1fr; }
  .token__coin { max-width: 320px; }
  .token__copy { text-align: center; }
  .token__actions { justify-content: center; }
  .token__facts { text-align: left; }
  .contract { text-align: left; }
  .faq { grid-template-columns: 1fr; }
  .faq .section__head { position: static; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .br-lg { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand span { font-size: 19px; }
  .nav__cta .btn--sm { display: none; }
  .hero__actions .btn { width: 100%; }
  .sticker { padding: 8px 12px; }
  .sticker b { font-size: 16px; }
  .sticker--speed { right: -6px; }
  .sticker--shift { left: -6px; }
  .fc1 { left: -8px; } .fc2 { right: -8px; } .fc3 { left: -10px; }
  .hud__value { font-size: 18px; } .hud__value--big { font-size: 36px; }
  .stats { gap: 10px; }
  .stat { padding: 16px; }
  .marquee__item { font-size: 20px; padding: 0 18px; }
  .marquee__item img { width: 48px; height: 34px; }
  .steps, .trust, .bento { grid-template-columns: 1fr; }
  .live__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .live-card--online { grid-column: span 2; }
  .live-card { padding: 20px 18px; }
  .live-card__value { font-size: 32px; }
  .radar { width: 48px; height: 48px; top: 20px; right: 20px; } .radar::after { inset: 18px; }
  .payday { flex-direction: column; align-items: stretch; gap: 10px; }
  .card--xl, .card--wide { grid-column: auto; grid-template-columns: 1fr; padding: 26px; }
  .card__art img { max-width: 220px; margin: 0 auto; }
  .lineup { justify-content: center; height: 120px; }
  .road__card { padding: 22px; }
  .road__stats dd { font-size: 16px; }
  .token__facts { grid-template-columns: repeat(2, 1fr); }
  .contract__row { flex-direction: column; align-items: stretch; }
  .copy { justify-content: center; }
  .token__actions .btn { flex: 1 1 100%; }
  .faq summary { font-size: 18px; padding: 18px 56px 18px 20px; }
  .cta { border-radius: 28px; padding-bottom: 180px; }
  .cta__miner { height: 170px; } .cta__miner--l { height: 130px; }
  .cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__title .word { transform: none; }
}
