/* ══════════════════════════════════════════════
   cheer — route token fees to Twitch
   design system
   ══════════════════════════════════════════════ */
:root {
  --bg: #07060b;
  --bg-2: #0c0a14;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --purple: #9146ff;
  --purple-bright: #a970ff;
  --purple-deep: #6a2bd9;
  --violet: #c084fc;
  --cyan: #67e8f9;
  --pink: #ff4d8d;
  --text: #f1eefc;
  --muted: #9a94b3;
  --muted-2: #6d6785;
  --up: #4ade80;
  --down: #ff6b81;
  --radius: 18px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(145, 70, 255, 0.45); color: #fff; }
a { color: inherit; text-decoration: none; }
b { font-weight: 600; }

code.mono {
  font-family: var(--font-mono); font-size: 0.85em;
  background: rgba(145,70,255,.14); border: 1px solid rgba(145,70,255,.3);
  padding: .1em .4em; border-radius: 6px; color: var(--violet);
}

/* ── ambient ─────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.orbs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; animation: drift 22s ease-in-out infinite alternate; }
.orb-a { width: 560px; height: 560px; background: radial-gradient(circle, rgba(145,70,255,.55), transparent 65%); top: -180px; left: -120px; }
.orb-b { width: 480px; height: 480px; background: radial-gradient(circle, rgba(106,43,217,.4), transparent 65%); top: 30%; right: -160px; animation-delay: -8s; }
.orb-c { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,77,141,.16), transparent 65%); bottom: -140px; left: 30%; animation-delay: -14s; }
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.12); }
}

/* ── announcement ────────────────────────── */
.announce {
  position: relative; z-index: 50;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple) 45%, #d946ef);
  text-align: center; font-size: 13px; font-weight: 500;
  padding: 9px 16px;
}
.announce a { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.announce-arrow { opacity: .85; text-decoration: underline; text-underline-offset: 3px; }
.announce-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #fff; animation: pulse 1.8s infinite; }

/* ── nav ─────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 40; padding: 14px 20px; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
.nav.scrolled {
  background: rgba(9, 7, 16, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 27px; height: 27px; flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(145,70,255,.8));
  animation: gemSpin 8s ease-in-out infinite;
}
@keyframes gemSpin { 0%,100% { transform: rotate(0) scale(1); } 50% { transform: rotate(8deg) scale(1.08); } }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.02em; }
.brand-sup { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-bright); background: rgba(145,70,255,.16); border: 1px solid rgba(145,70,255,.4); padding: 2px 6px; border-radius: 20px; margin-left: 7px; vertical-align: 6px; }
.nav-links { display: flex; gap: 2px; margin: 0 auto; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  padding: 8px 12px; border-radius: 10px; transition: .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--purple-bright); background: rgba(145,70,255,.12); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
}
.nav-burger span { display: block; height: 2px; border-radius: 2px; background: var(--text); transition: .25s; }
.nav-burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.on span:nth-child(2) { opacity: 0; }
.nav-burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  margin: 10px 20px 0; padding: 14px;
  background: rgba(12, 10, 20, .97);
  border: 1px solid var(--line); border-radius: 16px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.mobile-menu a { padding: 11px 14px; border-radius: 11px; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.mobile-menu a:hover { background: var(--surface-2); color: var(--text); }
.mobile-menu a.active { color: var(--purple-bright); background: rgba(145,70,255,.12); }
.mobile-menu .mm-actions { display: flex; gap: 10px; padding-top: 10px; margin-top: 8px; border-top: 1px solid var(--line); }
.mobile-menu .mm-actions .btn { flex: 1; font-size: 13px; padding: 11px; }
.mobile-menu.open { display: flex; animation: msgIn .25s ease; }

.token-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 8px 12px; cursor: pointer;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  transition: .2s;
}
.token-pill:hover { border-color: rgba(145,70,255,.6); background: rgba(145,70,255,.1); color: var(--text); }
.token-sym { color: var(--purple-bright); font-weight: 700; }
.copy-ico { width: 13px; height: 13px; opacity: .7; }
.tge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--purple-bright);
  background: rgba(145,70,255,.1); border: 1px solid rgba(145,70,255,.4);
  border-radius: 100px; padding: 9px 14px; transition: .2s;
}
.tge-pill:hover { background: rgba(145,70,255,.2); border-color: rgba(145,70,255,.7); }

/* ── buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .01em;
  border-radius: 14px; cursor: pointer; border: none; white-space: nowrap;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .25s, border-color .25s, opacity .2s;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 15px; height: 15px; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, #7c3aed 55%, #a855f7 110%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(145,70,255,.45), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(145,70,255,.65), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-ghost { background: var(--surface); border: 1px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.btn-sm { font-size: 13px; padding: 9px 16px; }
.btn-lg { font-size: 15px; padding: 14px 26px; border-radius: 16px; }
.btn-xl { font-size: 16px; padding: 17px 34px; border-radius: 18px; width: 100%; }

/* ── hero (home) ─────────────────────────── */
.hero { position: relative; z-index: 2; padding: 76px 20px 30px; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  min-height: 560px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; color: var(--purple-bright);
  background: rgba(145,70,255,.1); border: 1px solid rgba(145,70,255,.35);
  padding: 8px 15px; border-radius: 100px; margin-bottom: 26px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 12px var(--purple); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .55; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 1.0; letter-spacing: -.035em; font-weight: 700;
  margin-bottom: 26px;
}
.grad-word {
  background: linear-gradient(92deg, var(--purple-bright), var(--violet) 45%, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.twitch-word { display: inline-flex; align-items: center; gap: 14px; color: var(--purple-bright); position: relative; }
.twitch-word::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan));
  box-shadow: 0 0 24px rgba(145,70,255,.8);
}
.tw-inline { width: .82em; height: .82em; color: var(--purple-bright); filter: drop-shadow(0 0 14px rgba(145,70,255,.9)); animation: glitchFloat 5s ease-in-out infinite; }
@keyframes glitchFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-6px) rotate(-4deg); } }

.hero-sub { font-size: 17.5px; color: var(--muted); max-width: 480px; margin-bottom: 34px; }
.hero-sub strong { color: var(--text); }
.inline-link { color: var(--purple-bright); text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--violet); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas.center { justify-content: center; }

.hero-visual { position: relative; height: 520px; perspective: 1000px; }

.paycard {
  position: absolute; width: 250px;
  background: linear-gradient(160deg, rgba(30,24,48,.92), rgba(16,13,28,.94));
  border: 1px solid var(--line-strong); border-radius: 16px; padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(145,70,255,.06);
  transition: transform .25s ease-out, border-color .25s;
}
.paycard:hover { border-color: rgba(145,70,255,.55); }
.paycard-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.paycard-amount { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.paycard-amount span { font-size: 11.5px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.paycard-time { font-size: 11px; color: var(--muted-2); font-family: var(--font-mono); }
.paycard-user { display: flex; align-items: center; gap: 10px; }
.paycard-handle { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--purple-bright); }
.paycard-bar { margin-top: 14px; height: 5px; border-radius: 5px; background: rgba(255,255,255,.07); overflow: hidden; }
.paycard-bar i { display: block; height: 100%; width: var(--w); border-radius: 5px; background: linear-gradient(90deg, var(--purple), var(--violet)); box-shadow: 0 0 12px rgba(145,70,255,.7); animation: fillbar 1.2s cubic-bezier(.22,1,.36,1) backwards; }
@keyframes fillbar { from { width: 0; } }

.f1 { top: 6%; left: 2%; z-index: 3; animation-delay: -1s; }
.f2 { top: 0; right: 4%; z-index: 2; }
.f3 { bottom: 10%; left: 8%; z-index: 3; animation-delay: -3s; }

.floaty { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.bits-pop {
  position: absolute; top: 40%; right: 2%; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a); color: #78350f;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 100px;
  box-shadow: 0 10px 30px rgba(251,191,36,.35);
}
.bits-pop svg { width: 17px; height: 17px; fill: #f59e0b; }

.live-pop {
  position: absolute; bottom: 2%; right: 10%; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,60,80,.14); border: 1px solid rgba(255,60,80,.45);
  color: #ff8fa3; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  padding: 8px 14px; border-radius: 100px; backdrop-filter: blur(8px);
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff4d6a; box-shadow: 0 0 10px #ff4d6a; animation: pulse 1.4s infinite; }

.chatwin {
  position: absolute; bottom: 16%; right: 6%; z-index: 2; width: 300px;
  background: rgba(14, 11, 24, .92);
  border: 1px solid var(--line-strong); border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(145,70,255,.08);
  overflow: hidden; transition: transform .25s ease-out;
}
.chatwin-head {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.chatwin-title { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.chatwin-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: .08em; color: #ff8fa3; font-family: var(--font-mono); }
.chatwin-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 9px; font-size: 12.5px; max-height: 230px; }
.chat-msg { display: flex; gap: 7px; line-height: 1.45; color: #c9c4dd; animation: msgIn .45s ease backwards; }
.chat-msg b { font-weight: 700; white-space: nowrap; }
.c-purple { color: var(--purple-bright); }
.c-mod { color: #34d399; }
.bits-tag { background: rgba(145,70,255,.18); border: 1px solid rgba(145,70,255,.4); border-radius: 8px; padding: 1px 8px; color: var(--violet); font-weight: 600; }
.bit-msg { align-items: center; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } }

/* ── avatars ─────────────────────────────── */
.ava {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.25);
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  position: relative; overflow: hidden;
}
.ava img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; border-radius: inherit; }
.ava-sm { width: 26px; height: 26px; font-size: 11px; }
.ava-xs { width: 18px; height: 18px; font-size: 8.5px; border-width: 1px; }
.ava-lg { width: 44px; height: 44px; font-size: 17px; }
.ava-xl { width: 72px; height: 72px; font-size: 27px; border-width: 2px; }
.grad-1 { background: linear-gradient(135deg, #9146ff, #6366f1); }
.grad-2 { background: linear-gradient(135deg, #f43f5e, #f97316); }
.grad-3 { background: linear-gradient(135deg, #ec4899, #a855f7); }
.grad-4 { background: linear-gradient(135deg, #0ea5e9, #22d3ee); }
.grad-5 { background: linear-gradient(135deg, #10b981, #84cc16); }
.grad-6 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.grad-7 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.grad-8 { background: linear-gradient(135deg, #64748b, #475569); }

/* ── ticker ──────────────────────────────── */
.ticker {
  margin-top: 60px; position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02); overflow: hidden; padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; gap: 44px; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.tick-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); white-space: nowrap; }
.tick-item b { color: var(--purple-bright); font-family: var(--font-mono); font-size: 12.5px; }
.tick-item .tick-amt { color: var(--text); font-weight: 600; font-family: var(--font-mono); font-size: 12.5px; }
.tick-item .tick-sep { color: var(--purple); }

/* ── stats ───────────────────────────────── */
.stats { position: relative; z-index: 2; padding: 70px 20px 10px; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 30px 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: .3s;
}
.stat:hover { border-color: rgba(145,70,255,.4); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(145,70,255,.12); }
.stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.03em;
  background: linear-gradient(180deg, #fff, #b8a5e8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* ── sections ────────────────────────────── */
.section, .how, .duo { position: relative; z-index: 2; padding: 90px 20px; max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.kicker {
  display: inline-block; font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--purple-bright);
  background: rgba(145,70,255,.1); border: 1px solid rgba(145,70,255,.3);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-head h2, .cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 16.5px; }
.section-head p b { color: var(--text); }

/* ── page hero (inner pages) ─────────────── */
.page { position: relative; z-index: 2; }
.page-hero { max-width: 1200px; margin: 0 auto; padding: 70px 20px 40px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5vw, 62px); letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero .sub { color: var(--muted); font-size: 17px; max-width: 560px; }
.page-hero .sub b { color: var(--text); }
.page-body { max-width: 1200px; margin: 0 auto; padding: 0 20px 110px; }

/* ── toolbar: search / chips / sort ──────── */
.toolbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 16px; margin-bottom: 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
}
.search {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 220px;
  background: rgba(0,0,0,.3); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; transition: .2s;
}
.search:focus-within { border-color: rgba(145,70,255,.6); box-shadow: 0 0 0 3px rgba(145,70,255,.15); }
.search svg { width: 16px; height: 16px; color: var(--muted-2); flex-shrink: 0; }
.search input {
  background: none; border: none; outline: none; color: var(--text);
  font-family: var(--font-mono); font-size: 13.5px; width: 100%;
}
.search input::placeholder { color: var(--muted-2); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 100px; cursor: pointer; transition: .2s;
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.on { color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-deep)); border-color: transparent; box-shadow: 0 4px 16px rgba(145,70,255,.35); }
.select {
  background: rgba(0,0,0,.3); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 10px 14px; border-radius: 12px; cursor: pointer; outline: none;
}
.select:focus { border-color: rgba(145,70,255,.6); }
.select option { background: #14101f; }

/* ── coin cards / grid ───────────────────── */
.coin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.coin-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 20px; transition: transform .25s ease-out, border-color .3s, box-shadow .3s;
}
.coin-card:hover { border-color: rgba(145,70,255,.5); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(145,70,255,.16); }
.coin-img {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 6px 18px rgba(0,0,0,.4);
  position: relative; overflow: hidden;
}
.coin-img::after {
  content: attr(data-letter);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.coin-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.dex-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(103,232,249,.09); border: 1px solid rgba(103,232,249,.3);
  padding: 1px 7px; border-radius: 7px;
}
.src-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  background: rgba(52,211,153,.08); border: 1px solid rgba(52,211,153,.3);
  padding: 6px 12px; border-radius: 100px;
}
.src-badge b { color: #34d399; }
.stamp { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.ci-1 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.ci-2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.ci-3 { background: linear-gradient(135deg, #06b6d4, #6366f1); }
.ci-4 { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.ci-5 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.ci-6 { background: linear-gradient(135deg, #f43f5e, #d946ef); }
.ci-7 { background: linear-gradient(135deg, #22d3ee, #10b981); }
.ci-8 { background: linear-gradient(135deg, #f97316, #fbbf24); }
.coin-meta { flex: 1; min-width: 0; }
.coin-name { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.coin-name span { font-family: var(--font-mono); font-size: 11.5px; color: var(--purple-bright); background: rgba(145,70,255,.12); padding: 2px 7px; border-radius: 7px; margin-left: 7px; vertical-align: 1px; }
.coin-route { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); margin-top: 5px; }
.coin-stats { text-align: right; }
.coin-stats b { font-family: var(--font-display); font-size: 16.5px; letter-spacing: -.01em; }
.coin-stats span { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.coin-fees { text-align: right; }
.coin-fees b { font-family: var(--font-mono); font-size: 12.5px; color: #34d399; display: block; }
.coin-fees span { font-size: 10px; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; }
.coin-chg { font-family: var(--font-mono); font-size: 12px; font-weight: 700; padding: 5px 9px; border-radius: 9px; }
.coin-chg.up { color: #34d399; background: rgba(52,211,153,.1); }
.coin-chg.down { color: #ff6b81; background: rgba(255,107,129,.1); }
.empty-state {
  text-align: center; padding: 70px 20px; color: var(--muted);
  border: 1px dashed var(--line-strong); border-radius: 18px;
}
.empty-state b { display: block; font-family: var(--font-display); font-size: 18px; color: var(--text); margin-bottom: 6px; }

/* ── how / steps ─────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 60px; }
.step-card {
  position: relative; padding: 34px 28px 30px; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line); border-radius: 20px;
  transition: transform .25s ease-out, border-color .3s, box-shadow .3s;
}
.step-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(145,70,255,.13), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover { border-color: rgba(145,70,255,.45); box-shadow: 0 20px 50px rgba(145,70,255,.15); }
.step-ico { font-size: 30px; margin-bottom: 18px; filter: drop-shadow(0 4px 14px rgba(145,70,255,.4)); }
.step-num { position: absolute; top: 22px; right: 24px; font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: rgba(255,255,255,.18); }
.step-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--muted); }

.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tech-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; transition: border-color .3s, transform .25s;
}
.tech-card:hover { border-color: rgba(145,70,255,.35); transform: translateY(-3px); }
.tech-card h4 { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 9px; }
.tech-card p { font-size: 13.8px; color: var(--muted); }
.tech-ico { filter: drop-shadow(0 2px 8px rgba(145,70,255,.5)); }

.abi-table { margin-top: 16px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-family: var(--font-mono); font-size: 11.5px; }
.abi-row { display: grid; grid-template-columns: 44px 56px 1fr; gap: 8px; padding: 7px 12px; border-bottom: 1px solid var(--line); color: var(--muted-2); }
.abi-row:last-child { border-bottom: none; }
.abi-row.hi { background: rgba(145,70,255,.14); color: var(--violet); font-weight: 700; }

.burn-meter { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.burn-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
.burn-row span { width: 140px; flex-shrink: 0; font-size: 11px; }
.burn-row i { height: 8px; border-radius: 8px; display: block; }
.burn-a { width: 100%; background: linear-gradient(90deg, var(--purple), var(--violet)); box-shadow: 0 0 10px rgba(145,70,255,.6); }
.burn-b { width: 78%; background: linear-gradient(90deg, #22d3ee, #67e8f9); box-shadow: 0 0 10px rgba(103,232,249,.5); }
.burn-c { width: 22%; background: linear-gradient(90deg, #f97316, #ef4444); box-shadow: 0 0 10px rgba(239,68,68,.6); }

/* ── duo panels (home) ───────────────────── */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 20px; }
.duo-col { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px; }
.panel-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.panel-head h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.panel-link { font-size: 12.5px; color: var(--purple-bright); font-weight: 600; }
.panel-link:hover { color: var(--violet); }

.lb-list, .rc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lb-row, .rc-row {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.02); border: 1px solid transparent;
  transition: .2s;
}
.lb-row:hover, .rc-row:hover { background: rgba(145,70,255,.06); border-color: rgba(145,70,255,.3); }
.lb-rank {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  color: var(--muted-2); background: rgba(255,255,255,.05);
}
.lb-rank.r1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #451a03; }
.lb-rank.r2 { background: linear-gradient(135deg, #d1d5db, #9ca3af); color: #1f2937; }
.lb-rank.r3 { background: linear-gradient(135deg, #f97316, #c2410c); color: #fff7ed; }
.lb-main { flex: 1; min-width: 0; }
.lb-main b { display: block; font-size: 14px; font-family: var(--font-display); }
.lb-main span { font-size: 11.5px; color: var(--muted); font-family: var(--font-mono); }
.lb-amt { font-family: var(--font-mono); font-size: 13px; color: var(--violet); }
.rc-main { flex: 1; min-width: 0; }
.rc-main b { display: block; font-size: 14px; font-family: var(--font-display); }
.rc-main span { font-size: 11.5px; color: var(--muted); }
.rc-right { text-align: right; }
.rc-right b { display: block; font-family: var(--font-mono); font-size: 13px; color: #34d399; }
.rc-right span { font-size: 11px; color: var(--muted-2); font-family: var(--font-mono); }

/* ── big tables (leaderboard) ────────────── */
.table-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  padding: 26px; overflow: hidden;
}
.tbl { width: 100%; border-collapse: collapse; }
.tbl th {
  text-align: left; font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-2);
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.tbl td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 14px; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tbody tr { transition: background .2s; }
.tbl tbody tr:hover { background: rgba(145,70,255,.06); }
.tbl .num { font-family: var(--font-mono); font-size: 13px; }
.tbl .green { color: #34d399; }
.tbl .purple { color: var(--violet); }
.cell-main { display: flex; align-items: center; gap: 12px; }
.cell-main .txt b { display: block; font-family: var(--font-display); font-size: 14.5px; }
.cell-main .txt span { font-size: 11.5px; color: var(--muted); font-family: var(--font-mono); }
.tok-img { width: 38px; height: 38px; border-radius: 11px; font-size: 13px; }
.rank-badge {
  width: 28px; height: 28px; border-radius: 9px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--muted-2); background: rgba(255,255,255,.05);
}
.rank-badge.r1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #451a03; }
.rank-badge.r2 { background: linear-gradient(135deg, #d1d5db, #9ca3af); color: #1f2937; }
.rank-badge.r3 { background: linear-gradient(135deg, #f97316, #c2410c); color: #fff7ed; }

/* podium */
.podium { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 16px; align-items: end; margin-bottom: 26px; }
.podium-card {
  position: relative; text-align: center; padding: 34px 22px 28px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  transition: .3s;
}
.podium-card:hover { transform: translateY(-5px); border-color: rgba(145,70,255,.45); }
.podium-card.first {
  padding: 44px 22px 34px;
  background: linear-gradient(180deg, rgba(145,70,255,.18), rgba(255,255,255,.03));
  border-color: rgba(145,70,255,.5);
  box-shadow: 0 20px 60px rgba(145,70,255,.25);
}
.podium-crown { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 26px; filter: drop-shadow(0 4px 10px rgba(251,191,36,.6)); }
.podium-rank { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--muted-2); margin-bottom: 12px; }
.podium-card .ava-xl { margin: 0 auto 14px; }
.podium-handle { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.podium-amt { font-family: var(--font-mono); font-size: 15px; color: var(--violet); font-weight: 700; margin-top: 4px; }
.podium-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* tabs */
.tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.tab {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 100px; cursor: pointer;
  color: var(--muted); background: var(--surface); border: 1px solid var(--line);
  transition: .2s;
}
.tab:hover { color: var(--text); }
.tab.on { color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-deep)); border-color: transparent; box-shadow: 0 6px 22px rgba(145,70,255,.4); }

/* ── charts (analytics) ──────────────────── */
.chart-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 18px; margin-bottom: 18px; }
.chart-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  padding: 26px;
}
.chart-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.chart-card .chart-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.chart-wrap { position: relative; height: 260px; }
.chart-wrap canvas { width: 100%; height: 100%; display: block; }
.range-chips { display: flex; gap: 6px; margin-left: auto; }
.range-chips .chip { padding: 5px 12px; font-size: 11.5px; }

.legend { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.legend-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.legend-swatch { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.legend-row .lbl { color: var(--muted); flex: 1; }
.legend-row b { font-family: var(--font-mono); font-size: 13px; }

.barlist { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.barlist-row { display: grid; grid-template-columns: 150px 1fr 74px; align-items: center; gap: 12px; }
.barlist-row .who { display: flex; align-items: center; gap: 9px; font-size: 13px; font-family: var(--font-mono); color: var(--text); white-space: nowrap; overflow: hidden; }
.barlist-track { height: 10px; border-radius: 10px; background: rgba(255,255,255,.06); overflow: hidden; }
.barlist-track i {
  display: block; height: 100%; width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--purple), var(--violet));
  box-shadow: 0 0 12px rgba(145,70,255,.55);
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.barlist-row .val { font-family: var(--font-mono); font-size: 12px; color: var(--violet); text-align: right; }

/* ── receipts feed (payments) ────────────── */
.feed { display: flex; flex-direction: column; gap: 10px; }
.feed-row {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  transition: border-color .2s, transform .2s;
}
.feed-row:hover { border-color: rgba(145,70,255,.4); transform: translateX(4px); }
.feed-row.fresh { animation: msgIn .6s ease; border-color: rgba(145,70,255,.55); box-shadow: 0 0 24px rgba(145,70,255,.18); }
.feed-main { flex: 1; min-width: 0; }
.feed-main b { display: block; font-family: var(--font-display); font-size: 15px; }
.feed-main span { font-size: 12px; color: var(--muted); }
.feed-mile { width: 130px; }
.feed-mile .mtrack { height: 6px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; margin-bottom: 5px; }
.feed-mile .mtrack i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--purple), var(--violet)); box-shadow: 0 0 10px rgba(145,70,255,.6); }
.feed-mile small { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); }
.feed-right { text-align: right; }
.feed-right b { display: block; font-family: var(--font-mono); font-size: 14px; color: #34d399; }
.feed-right span { font-size: 11px; color: var(--muted-2); font-family: var(--font-mono); }

/* ── forms / launch wizard ───────────────── */
.launch-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; align-items: start; }
.wizard-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 30px;
}
.wiz-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; }
.wiz-dot {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--muted-2);
}
.wiz-dot i {
  width: 28px; height: 28px; border-radius: 50%; font-style: normal;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.03);
  transition: .3s;
}
.wiz-dot.on i { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); border-color: transparent; color: #fff; box-shadow: 0 0 18px rgba(145,70,255,.5); }
.wiz-dot.done i { background: rgba(52,211,153,.18); border-color: rgba(52,211,153,.5); color: #34d399; }
.wiz-dot.on { color: var(--text); }
.wiz-line { flex: 1; height: 1px; background: var(--line); min-width: 20px; }
.wiz-line.done { background: rgba(145,70,255,.5); }

.wiz-pane { display: none; animation: msgIn .45s ease; }
.wiz-pane.on { display: block; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: .03em; }
.input, .textarea {
  width: 100%;
  background: rgba(0,0,0,.3); border: 1px solid var(--line); border-radius: 13px;
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px; outline: none; transition: .2s;
}
.input:focus, .textarea:focus { border-color: rgba(145,70,255,.6); box-shadow: 0 0 0 3px rgba(145,70,255,.15); }
.input.mono { font-family: var(--font-mono); font-size: 14px; }
.input.err { border-color: rgba(255,107,129,.7); box-shadow: 0 0 0 3px rgba(255,107,129,.12); }
.hint { font-size: 12px; color: var(--muted-2); margin-top: 7px; }
.hint.bad { color: #ff6b81; }
.hint.ok { color: #34d399; }
.field-row { display: grid; grid-template-columns: 1fr 130px; gap: 14px; }
.prefix-wrap { position: relative; }
.prefix-wrap .pfx {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 14px; color: var(--muted-2); pointer-events: none;
}
.prefix-wrap .input { padding-left: 34px; }

.emoji-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.emoji-opt {
  font-size: 19px; text-align: center; padding: 9px 0;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 11px;
  cursor: pointer; transition: .15s; filter: grayscale(.55); opacity: .75;
}
.emoji-opt:hover { filter: none; opacity: 1; transform: scale(1.1); }
.emoji-opt.on { filter: none; opacity: 1; border-color: rgba(145,70,255,.7); background: rgba(145,70,255,.15); box-shadow: 0 0 14px rgba(145,70,255,.3); }

.check-row { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; user-select: none; }
.check-row input { display: none; }
.check-box {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid var(--line-strong); background: rgba(255,255,255,.04);
  display: inline-flex; align-items: center; justify-content: center;
  transition: .2s;
}
.check-box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transform: scale(.4); transition: .2s; }
.check-row input:checked + .check-box { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); border-color: transparent; }
.check-row input:checked + .check-box svg { opacity: 1; transform: scale(1); }
.check-row .txt { font-size: 13px; color: var(--muted); }
.check-row .txt b { color: var(--text); }

.wiz-actions { display: flex; gap: 12px; margin-top: 26px; }
.wiz-actions .btn { flex: 1; }

.review-box {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-bottom: 4px;
}
.review-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 13.5px; }
.review-row:last-child { border-bottom: none; }
.review-row .k { color: var(--muted); }
.review-row .v { font-family: var(--font-mono); font-size: 13px; text-align: right; }
.review-row .v.hl { color: var(--purple-bright); font-weight: 700; }

.sidebar-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px;
  margin-bottom: 18px;
}
.sidebar-card h4 { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; margin-bottom: 16px; }
.split-visual { display: flex; height: 44px; border-radius: 13px; overflow: hidden; border: 1px solid var(--line-strong); margin-bottom: 12px; }
.split-a {
  width: 85%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(90deg, var(--purple), var(--purple-deep));
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: #fff;
}
.split-b {
  width: 15%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, #f97316, #ef4444);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
}
.split-legend { font-size: 12.5px; color: var(--muted); display: flex; flex-direction: column; gap: 6px; }
.split-legend span b { font-family: var(--font-mono); }
.split-legend .fire { color: #ff8a5c; }

.launch-done { text-align: center; padding: 30px 10px; display: none; }
.launch-done.on { display: block; }
.done-gem { width: 84px; height: 84px; margin: 0 auto 22px; filter: drop-shadow(0 0 34px rgba(145,70,255,.9)); animation: gemPop .8s cubic-bezier(.34,1.56,.64,1); }
@keyframes gemPop { from { transform: scale(0) rotate(-30deg); opacity: 0; } }
.launch-done h3 { font-family: var(--font-display); font-size: 26px; letter-spacing: -.02em; margin-bottom: 8px; }
.launch-done p { color: var(--muted); font-size: 14px; max-width: 380px; margin: 0 auto 24px; }
.mint-pill {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--violet);
  background: rgba(145,70,255,.1); border: 1px solid rgba(145,70,255,.4);
  padding: 11px 18px; border-radius: 12px; margin-bottom: 26px; transition: .2s;
}
.mint-pill:hover { background: rgba(145,70,255,.2); }
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 90; overflow: hidden; }
.confetti i {
  position: absolute; top: -20px; width: 8px; height: 14px; border-radius: 2px;
  animation: confFall 2.8s linear forwards;
}
@keyframes confFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: .9; }
}

/* ── claim ───────────────────────────────── */
.claim-box {
  max-width: 640px; margin: 0 auto 40px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px;
}
.claim-row { display: flex; gap: 12px; }
.claim-row .prefix-wrap { flex: 1; }
.claim-result { display: none; animation: msgIn .5s ease; }
.claim-result.on { display: block; }
.claim-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.claim-head .who b { display: block; font-family: var(--font-display); font-size: 20px; }
.claim-head .who span { font-size: 12.5px; color: var(--muted); display: block; }
.claim-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  color: #ff8fa3; background: rgba(255,60,80,.12); border: 1px solid rgba(255,60,80,.4);
  padding: 6px 12px; border-radius: 100px;
}
.claim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.claim-stat { background: rgba(0,0,0,.25); border: 1px solid var(--line); border-radius: 15px; padding: 16px; text-align: center; }
.claim-stat b { display: block; font-family: var(--font-display); font-size: 20px; letter-spacing: -.02em; }
.claim-stat span { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.claim-next { margin-top: 4px; }
.claim-note { text-align: center; font-size: 12px; color: var(--muted-2); margin-top: 14px; }

/* ── docs ────────────────────────────────── */
.docs-layout { display: grid; grid-template-columns: 230px 1fr; gap: 40px; align-items: start; }
.docs-nav { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 4px; }
.docs-nav a {
  font-size: 13.5px; color: var(--muted); padding: 9px 14px; border-radius: 11px;
  border-left: 2px solid transparent; transition: .2s;
}
.docs-nav a:hover { color: var(--text); background: var(--surface-2); }
.docs-nav a.on { color: var(--purple-bright); background: rgba(145,70,255,.1); border-left-color: var(--purple); }
.docs-content { max-width: 660px; }
.doc-section { margin-bottom: 60px; scroll-margin-top: 100px; }
.doc-section h2 {
  font-family: var(--font-display); font-size: 27px; font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 16px; padding-top: 10px;
}
.doc-section p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.doc-section p b { color: var(--text); }
.doc-callout {
  background: rgba(145,70,255,.08); border: 1px solid rgba(145,70,255,.35);
  border-radius: 16px; padding: 18px 20px; font-size: 14px; color: var(--muted); margin: 18px 0;
}
.doc-callout b { color: var(--purple-bright); }
.faq-item {
  border: 1px solid var(--line); border-radius: 15px; overflow: hidden; margin-bottom: 10px;
  background: rgba(0,0,0,.2);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-mono); color: var(--purple-bright); font-size: 17px; transition: .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: rgba(145,70,255,.05); }
.faq-item .faq-body { padding: 0 20px 18px; font-size: 14px; color: var(--muted); }

/* ── cta ─────────────────────────────────── */
.cta { padding: 40px 20px 110px; position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  padding: 76px 32px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(145,70,255,.14), rgba(12,10,20,.4));
  border: 1px solid rgba(145,70,255,.35);
}
.cta-glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(145,70,255,.5), transparent 70%);
  filter: blur(60px); pointer-events: none; animation: pulse 4s ease-in-out infinite;
}
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-size: 16.5px; }

/* ── footer ──────────────────────────────── */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 40px 20px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer-brand { display: flex; gap: 13px; align-items: center; }
.footer-brand .brand-mark { width: 24px; height: 24px; }
.footer-brand b { font-family: var(--font-display); font-size: 17px; }
.footer-brand p { font-size: 12.5px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; margin: 0 auto; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: .2s; }
.footer-links a:hover { color: var(--purple-bright); }
.footer-note { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--muted-2); text-align: right; }
.footer-note .mono { font-family: var(--font-mono); font-size: 11px; color: var(--purple-bright); }

/* ── toast ───────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 100;
  transform: translate(-50%, 80px);
  background: rgba(20, 16, 34, .95); border: 1px solid rgba(145,70,255,.5);
  color: var(--text); font-size: 13.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(145,70,255,.35);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .35s;
  opacity: 0; pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ── reveal ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── skeletons ───────────────────────────── */
.skeleton { display: flex; flex-direction: column; gap: 10px; }
.skeleton i {
  display: block; height: 46px; border-radius: 14px;
  background: linear-gradient(100deg, rgba(255,255,255,.035) 30%, rgba(255,255,255,.085) 50%, rgba(255,255,255,.035) 70%);
  background-size: 200% 100%; animation: shimmer 1.3s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.foot-status { display: inline-flex; align-items: center; gap: 7px; color: #8de8b4; }
.foot-status b { color: #8de8b4; font-weight: 600; }

/* ── responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-actions .btn-sm { display: none; }
  .nav-burger { display: flex; }
  .steps, .tech-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .launch-layout { grid-template-columns: 1fr; }
  .chart-grid { grid-template-columns: 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-nav { position: static; flex-direction: row; flex-wrap: wrap; margin-bottom: 10px; }
  .podium { grid-template-columns: 1fr; }
  .podium-card.first { order: -1; }
}
@media (max-width: 680px) {
  .orb { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .coin-grid { grid-template-columns: 1fr; }
  .token-addr, .copy-ico { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { margin: 0; }
  .footer-note { text-align: left; }
  .claim-grid { grid-template-columns: 1fr; }
  .feed-mile { display: none; }
  .emoji-grid { grid-template-columns: repeat(5, 1fr); }
  .field-row { grid-template-columns: 1fr; }
}
