/* RAPPY — the PONS light look. Inter everywhere, #F4F4F4 page, white 28px cards with the soft stacked
   shadow, pill controls, lime #D4FC50 only on the primary action. Quiet, round, airy. */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");
:root {
  --bg: #F4F4F4; --card: #FFFFFF; --card2: #FAFAFA; --inset: #ECECEC; --inset2: #E3E3E3; --line: rgba(17, 17, 17, .08); --line2: rgba(17, 17, 17, .14);
  --ink: #111111; --ink2: rgba(17, 17, 17, .55); --ink3: rgba(17, 17, 17, .4); --white: #fff;
  --lime: #D4FC50; --lime2: #C6F23A; --lime-soft: #F3FFD4; --lime-ink: #111111;
  --up: #1F9D55; --down: #FF3B30; --warn: #FFB020; --up-soft: rgba(31, 157, 85, .1); --down-soft: rgba(255, 59, 48, .1);
  --sh: 0 1px 2px rgba(17, 17, 17, .04), 0 8px 24px rgba(17, 17, 17, .06), 0 24px 48px rgba(17, 17, 17, .04), inset 0 1px 0 rgba(255, 255, 255, .7);
  --sh2: 0 1px 3px rgba(17, 17, 17, .08);
  --ff: "Inter", system-ui, -apple-system, sans-serif; --ff-m: "JetBrains Mono", ui-monospace, monospace;
  --r: 14px; --r2: 28px; --pill: 999px; --ease: cubic-bezier(.22, 1, .36, 1); --w: min(1200px, calc(100% - 48px));
}
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 15.5px/1.55 var(--ff); -webkit-font-smoothing: antialiased; min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
.wrap { width: var(--w); margin: 0 auto; }
.mono { font-family: var(--ff-m); font-feature-settings: "tnum"; }
.muted { color: var(--ink2); } .dim { color: var(--ink3); }
.pay { color: var(--up); } .stamp-c { color: var(--down); } .gold-t { color: var(--ink); }
.hidden { display: none !important; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
h1 { font-size: clamp(36px, 4.6vw, 60px); letter-spacing: -.035em; line-height: 1.02; }
h2 { font-size: clamp(24px, 2.6vw, 32px); }
h3 { font-size: 18px; letter-spacing: -.01em; }
p { margin: 0; }
.lede { font-size: 18px; line-height: 1.5; color: var(--ink2); max-width: 58ch; }
.cap { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); }
.link { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line2); }
.link:hover { text-decoration-color: var(--ink); }

/* ---- buttons & pills: everything is a pill, like PONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 20px; border-radius: var(--pill); border: 0; background: var(--card); color: var(--ink); font-weight: 600; font-size: 15px; white-space: nowrap; box-shadow: var(--sh2); transition: transform .25s var(--ease), background .2s, opacity .2s, box-shadow .25s var(--ease); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--sh); }
.btn:active { transform: translateY(0) scale(.98); }
.btn.gold { background: var(--lime); color: var(--lime-ink); }
.btn.gold:hover { background: var(--lime2); }
.btn.dark { background: var(--ink); color: #fff; box-shadow: none; }
.btn.dark:hover { background: #2a2a2a; }
.btn.line { background: transparent; box-shadow: inset 0 0 0 1.5px var(--line2); }
.btn.line:hover { background: rgba(17, 17, 17, .04); box-shadow: inset 0 0 0 1.5px var(--line2); }
.btn.pill { border-radius: var(--pill); }
.btn.sm { height: 36px; padding: 0 14px; font-size: 13.5px; }
.btn.lg { height: 54px; padding: 0 28px; font-size: 16px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--pill); background: var(--inset); font-size: 12px; font-weight: 600; color: var(--ink2); white-space: nowrap; }
.tag.up, .tag.ok { background: var(--up-soft); color: var(--up); } .tag.warn, .tag.down { background: var(--down-soft); color: var(--down); } .tag.gold { background: var(--lime-soft); color: var(--ink); }

/* ---- header ---- */
.top { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .96); backdrop-filter: blur(14px); }
.top-in { height: 72px; display: flex; align-items: center; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: 6px; }
.brand img { width: 40px; height: 40px; border-radius: 12px; display: block; }
.brand span { font-weight: 700; font-size: 17px; letter-spacing: -.02em; }
.nav { display: flex; gap: 2px; padding: 4px; border-radius: var(--pill); background: var(--inset); }
.nav a { padding: 8px 16px; border-radius: var(--pill); font-weight: 500; font-size: 15px; color: var(--ink2); transition: background .2s, color .2s, box-shadow .2s; }
.nav a:hover { color: var(--ink); }
.nav a.on { background: var(--card); color: var(--ink); box-shadow: var(--sh2); }
.sp { flex: 1; }
.search { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px; border-radius: var(--pill); background: var(--inset); min-width: 210px; color: var(--ink3); }
.search span { font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.search input { flex: 1; border: 0; outline: 0; background: none; font-size: 14px; color: var(--ink); font-weight: 500; }
.search input::placeholder { color: var(--ink3); }
.burger { display: none; }
.xbtn { width: 44px; padding: 0; font-weight: 800; }
#privySlot .btn { height: 44px; }

/* ---- hero ---- */
.hero-band { background: var(--bg); }
.hero { padding: 56px 0 40px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero .cap { display: inline-flex; padding: 6px 12px; border-radius: var(--pill); background: var(--card); box-shadow: var(--sh2); text-transform: none; letter-spacing: 0; font-size: 13px; color: var(--ink2); }
.hero h1 { margin-top: 18px; }
.hero h1 em { font-style: normal; color: var(--ink2); }
.hero .lede { margin-top: 20px; }
.hero .cta { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; align-items: center; }
.hero .cta .link { color: var(--ink2); margin-left: 6px; font-weight: 500; }
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.feats div { background: var(--card); border-radius: 20px; padding: 14px 16px; box-shadow: var(--sh2); }
.feats b { display: block; font-weight: 600; font-size: 15px; } .feats span { font-size: 13px; color: var(--ink2); }
.liveline { margin-top: 18px; font-size: 13px; font-weight: 500; color: var(--ink2); display: flex; align-items: center; gap: 8px; }
.liveline i { width: 8px; height: 8px; border-radius: 50%; background: var(--up); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(31, 157, 85, .35); } 60% { box-shadow: 0 0 0 8px transparent; } }
.liveline b { color: var(--ink); }
.hero .stub { animation: bob 7s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* the pay stub — hero, dialogs, launch summary, tour */
.stub { position: relative; background: var(--card); color: var(--ink); border-radius: var(--r2); padding: 24px 26px 26px; box-shadow: var(--sh); }
.stub .hd { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.stub .hd b { font-weight: 600; font-size: 18px; white-space: nowrap; letter-spacing: -.02em; }
.stub .hd span { font-size: 12.5px; color: var(--ink3); text-align: right; }
.stub .who { display: flex; align-items: center; gap: 12px; margin: 18px 0 8px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--inset); display: grid; place-items: center; color: var(--ink2); font-weight: 700; flex: 0 0 auto; }
.stub .who b { display: block; font-size: 15px; font-weight: 600; } .stub .who small { color: var(--ink3); font-size: 12.5px; }
.stub .ln { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.stub .ln span:first-child { color: var(--ink2); }
.stub .ln .v { font-weight: 600; text-align: right; }
.stub .net { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 16px; padding-top: 4px; }
.stub .net span { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); }
.stub .net b { font-weight: 700; font-size: 38px; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.stub .net small { display: block; font-size: 12px; color: var(--ink3); text-align: right; margin-top: 4px; }
.stamp { position: absolute; right: 22px; top: 62px; padding: 6px 12px; border-radius: var(--pill); background: var(--lime); color: var(--ink); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; transform: rotate(-6deg); }
.stamp.due { background: var(--inset); color: var(--ink2); }
.stamp.dq { background: var(--down); color: #fff; }
.printing .ln, .printing .who, .printing .net { animation: rise .5s var(--ease) both; }
.printing .ln:nth-child(2) { animation-delay: .1s; } .printing .ln:nth-child(3) { animation-delay: .2s; } .printing .ln:nth-child(4) { animation-delay: .3s; } .printing .ln:nth-child(5) { animation-delay: .4s; } .printing .ln:nth-child(6) { animation-delay: .5s; } .printing .net { animation-delay: .65s; }
.printing .stamp { animation: slap .45s var(--ease) 1s both; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes slap { from { transform: rotate(-6deg) scale(1.6); opacity: 0; } to { transform: rotate(-6deg) scale(1); opacity: 1; } }

/* ---- ticker strip ---- */
.tape { overflow: hidden; }
.tape-in { display: flex; gap: 40px; width: max-content; padding: 12px 0; animation: tickerScroll 40s linear infinite; font-size: 13px; font-weight: 500; color: var(--ink2); }
.tape-in span b { color: var(--ink); font-weight: 600; }
.tape-in span i { font-style: normal; color: var(--up); font-weight: 600; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ---- stats tiles ---- */
.totals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.totals div { background: var(--card); border-radius: 22px; padding: 20px 22px; box-shadow: var(--sh2); }
.totals .cap { display: block; }
.totals b { display: block; margin-top: 10px; font-weight: 700; font-size: 30px; letter-spacing: -.04em; line-height: 1; }
.totals small { display: block; margin-top: 8px; font-size: 13px; color: var(--ink3); }

/* ---- sections ---- */
.sec { padding: 44px 0 0; }
.sec-h { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.sec-h p { margin-top: 6px; color: var(--ink2); }
.tabs { display: inline-flex; gap: 2px; padding: 4px; border-radius: var(--pill); background: var(--inset); }
.tabs button { height: 34px; padding: 0 14px; border: 0; border-radius: var(--pill); background: transparent; font-weight: 500; font-size: 13.5px; color: var(--ink2); transition: background .2s, color .2s, box-shadow .2s; }
.tabs button.on { background: var(--card); color: var(--ink); box-shadow: var(--sh2); }

/* ---- coin cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tcard { display: grid; grid-template-columns: 84px 1fr; gap: 16px; align-items: center; background: var(--card); border-radius: 22px; padding: 18px; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; box-shadow: var(--sh2); }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.tcard .disc { position: relative; width: 84px; height: 84px; border-radius: 22px; background: var(--inset); display: grid; place-items: center; overflow: hidden; }
.tcard .disc img { width: 100%; height: 100%; object-fit: cover; }
.tcard .disc .ph { font-weight: 700; font-size: 26px; color: var(--ink2); }
.tcard .rank { position: absolute; left: 6px; top: 6px; padding: 3px 8px; border-radius: var(--pill); background: var(--card); color: var(--ink); font-weight: 600; font-size: 11.5px; box-shadow: var(--sh2); }
.tcard .nm { font-weight: 600; font-size: 17px; letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tcard .sy { display: flex; justify-content: space-between; align-items: center; color: var(--ink3); font-size: 13.5px; margin-top: 2px; }
.tcard .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.tcard .row2 b { display: block; font-weight: 600; font-size: 16px; } .tcard .row2 span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); margin-top: 2px; }
.tcard .next { margin-top: 10px; font-size: 12.5px; color: var(--ink3); }
.tcard .next b { color: var(--ink); font-family: var(--ff-m); font-weight: 500; }
.up { color: var(--up); } .down { color: var(--down); }
.empty { padding: 40px 20px; text-align: center; color: var(--ink2); background: var(--card); border-radius: var(--r2); box-shadow: var(--sh2); }

/* ---- tables inside cards ---- */
.card { background: var(--card); border-radius: var(--r2); padding: 22px 24px; box-shadow: var(--sh); }
.card.pad0 { padding: 0; overflow: hidden; }
.ledger { width: 100%; border-collapse: collapse; }
.ledger th { text-align: left; padding: 12px 14px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); border-bottom: 1px solid var(--line); }
.ledger td { padding: 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: middle; }
.ledger tr:last-child td { border-bottom: 0; }
.ledger tr.link { cursor: pointer; transition: background .15s; } .ledger tr.link:hover td { background: var(--card2); }
.ledger .n { text-align: right; font-family: var(--ff-m); font-feature-settings: "tnum"; }
.ledger .idx { font-family: var(--ff-m); font-size: 12px; color: var(--ink3); width: 48px; }
.coin { display: flex; align-items: center; gap: 12px; }
.coin img, .coin .ph { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; background: var(--inset); display: grid; place-items: center; font-weight: 700; color: var(--ink2); }
.coin b { display: block; font-size: 15px; font-weight: 600; } .coin span { color: var(--ink3); font-size: 12.5px; }

/* ---- feeds ---- */
.two { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.payrow { display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.payrow:last-of-type { border-bottom: 0; }
.payrow .who b { display: block; font-size: 15px; font-weight: 600; } .payrow .who span { color: var(--ink3); font-size: 12.5px; }
.payrow .amt { font-weight: 600; color: var(--up); font-size: 16px; text-align: right; font-family: var(--ff-m); }
.payrow .amt small { display: block; font-weight: 500; color: var(--ink3); font-size: 11.5px; font-family: var(--ff); }
.toplist div { display: grid; grid-template-columns: 30px 44px 1fr auto; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); }
.toplist div:last-child { border-bottom: 0; }
.toplist .rk { width: 28px; height: 28px; border-radius: 50%; background: var(--inset); display: grid; place-items: center; font-weight: 600; font-size: 12px; color: var(--ink2); }
.toplist .rk.r1 { background: var(--lime); color: var(--ink); }
.toplist b { font-size: 15px; font-weight: 600; } .toplist .amt { font-weight: 600; color: var(--up); font-family: var(--ff-m); }
.total-line { display: flex; justify-content: space-between; margin-top: 12px; font-size: 13px; color: var(--ink3); }
.total-line b { color: var(--ink); font-weight: 600; }

/* ---- how it works: three tiles ---- */
.sheet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sheet > div { background: var(--card); border-radius: var(--r2); padding: 24px; box-shadow: var(--sh2); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.sheet > div:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.sheet .cap { display: inline-flex; padding: 5px 10px; border-radius: var(--pill); background: var(--lime-soft); color: var(--ink); }
.sheet h3 { margin-top: 16px; font-size: 24px; letter-spacing: -.03em; }
.sheet p { margin-top: 10px; color: var(--ink2); font-size: 14.5px; }
.sheet .ex { margin-top: 14px; font-family: var(--ff-m); font-size: 12px; color: var(--ink2); background: var(--inset); padding: 10px 12px; border-radius: 12px; }

/* ---- banners ---- */
.banners { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.banner-t { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 150px; border-radius: var(--r2); padding: 26px 28px; background: var(--card); box-shadow: var(--sh2); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.banner-t:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.banner-t.gold { background: var(--lime); color: var(--ink); }
.banner-t h3 { font-size: 24px; letter-spacing: -.03em; } .banner-t p { margin-top: 6px; color: var(--ink2); }
.banner-t.gold p { color: rgba(17, 17, 17, .6); }
.banner-t .go { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 20px; flex: 0 0 auto; transition: transform .3s var(--ease); }
.banner-t:hover .go { transform: translateX(4px); }
.banner-t .mark { display: none; }

/* ---- film ---- */
.film { position: relative; border-radius: var(--r2); overflow: hidden; background: var(--inset); aspect-ratio: 16 / 9; box-shadow: var(--sh); }
.film video { width: 100%; height: 100%; display: block; }
.film .play { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; }
.film .play b { width: 84px; height: 84px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 26px; box-shadow: var(--sh); transition: transform .3s var(--ease); }
.film .play:hover b { transform: scale(1.08); }
.film .play span { position: absolute; left: 22px; bottom: 18px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink2); }

/* ---- footer ---- */
.foot { margin-top: 64px; padding: 30px 0 40px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink3); }
.foot-in { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot a:hover { color: var(--ink); }

/* ---- forms ---- */
.form { display: grid; gap: 14px; }
.fs { background: var(--card); border-radius: var(--r2); padding: 22px 24px; box-shadow: var(--sh2); }
.fs > .cap { display: block; }
.fs > p.note { margin: 6px 0 16px; }
.f label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 7px; }
.f label small { color: var(--ink3); font-weight: 500; margin-left: 6px; }
.f .cnt { float: right; font-family: var(--ff-m); font-size: 11px; color: var(--ink3); }
.f input, .f textarea, .f select { width: 100%; background: var(--inset); border: 1.5px solid transparent; border-radius: 14px; padding: 12px 14px; font-size: 15px; outline: 0; transition: border-color .2s, background .2s; }
.f input:focus, .f textarea:focus, .f select:focus { border-color: var(--ink); background: var(--card); }
.f textarea { resize: vertical; min-height: 96px; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.drop { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1.5px dashed var(--line2); border-radius: 16px; background: var(--card2); cursor: pointer; transition: border-color .2s; }
.drop:hover, .drop.over { border-color: var(--ink); }
.drop img { width: 56px; height: 56px; border-radius: 16px; object-fit: cover; background: var(--inset); }
.drop .ph { width: 56px; height: 56px; border-radius: 16px; background: var(--inset); display: grid; place-items: center; color: var(--ink3); font-size: 22px; }
.drop.banner img, .drop.banner .ph { width: 168px; height: 56px; border-radius: 14px; }
.drop b { font-weight: 600; } .drop small { display: block; color: var(--ink3); font-size: 12.5px; }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choices button { height: 38px; padding: 0 16px; border: 0; border-radius: var(--pill); background: var(--inset); font-weight: 500; font-size: 13.5px; color: var(--ink2); transition: all .2s; }
.choices button.on { background: var(--ink); color: #fff; }
.note { font-size: 13.5px; color: var(--ink2); }
.note b { color: var(--ink); }
.launch-grid { display: grid; grid-template-columns: 1fr 380px; gap: 22px; align-items: start; }
.summary { position: sticky; top: 92px; }
.summary .stub { animation: none; }
.steps-h { display: flex; gap: 8px; margin: 22px 0 0; }
.steps-h span { flex: 1; padding: 10px 14px; border-radius: var(--pill); background: var(--card); color: var(--ink3); font-weight: 500; font-size: 13px; display: flex; gap: 10px; align-items: center; box-shadow: var(--sh2); }
.steps-h span i { width: 22px; height: 22px; border-radius: 50%; background: var(--inset); display: grid; place-items: center; font-style: normal; font-size: 11px; font-weight: 700; }
.steps-h span.on { color: var(--ink); } .steps-h span.on i { background: var(--lime); color: var(--ink); }
.steps-h span.done { color: var(--up); } .steps-h span.done i { background: var(--up-soft); color: var(--up); }
.addr { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: var(--inset); font-family: var(--ff-m); font-size: 13px; word-break: break-all; }
.addr button { margin-left: auto; }
.progress { height: 10px; border-radius: var(--pill); background: var(--inset); overflow: hidden; }
.progress i { display: block; height: 100%; width: var(--w, 0%); background: var(--lime); border-radius: var(--pill); transition: width .8s var(--ease); }
.log { display: grid; gap: 8px; margin-top: 14px; font-size: 14px; }
.log div { display: flex; gap: 10px; align-items: flex-start; color: var(--ink2); }
.log div i { font-style: normal; width: 18px; flex: 0 0 auto; color: var(--ink); }
.log div.ok i { color: var(--up); } .log div.err { color: var(--down); } .log div.err i { color: var(--down); }
.warnbox { border-radius: 14px; background: var(--down-soft); padding: 12px 14px; font-size: 13.5px; color: var(--ink2); }

/* ---- coin page ---- */
.tok-head { display: flex; align-items: center; gap: 20px; padding: 34px 0 20px; flex-wrap: wrap; }
.tok-head .logo { width: 88px; height: 88px; border-radius: 26px; object-fit: cover; background: var(--inset); box-shadow: var(--sh2); }
.tok-head h1 { font-size: clamp(28px, 3.4vw, 42px); }
.tok-head h1 em { font-style: normal; color: var(--ink3); font-weight: 500; }
.tok-head .meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
.tok-head .meta span, .tok-head .meta a { padding: 5px 10px; border-radius: var(--pill); background: var(--card); font-size: 12.5px; font-weight: 500; color: var(--ink2); box-shadow: var(--sh2); }
.tok-head .acts { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.banner { height: 170px; border-radius: var(--r2); background: var(--inset) center/cover; margin-top: 24px; box-shadow: var(--sh2); }
.figs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px 0 26px; }
.fig { background: var(--card); border-radius: 20px; padding: 16px 18px; box-shadow: var(--sh2); }
.fig span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); }
.fig b { display: block; margin-top: 8px; font-weight: 700; font-size: 24px; letter-spacing: -.03em; line-height: 1; }
.fig small { display: block; margin-top: 6px; color: var(--ink3); font-size: 12.5px; }
.tok-grid { display: grid; grid-template-columns: 1fr 360px; gap: 18px; align-items: start; }
.board-h { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.board-h .acts { display: flex; gap: 8px; flex-wrap: wrap; }
.rapper { display: flex; align-items: center; gap: 10px; min-width: 0; }
.rapper .avatar { width: 34px; height: 34px; }
.rapper b { display: block; font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.rapper small { display: flex; gap: 6px; align-items: center; color: var(--ink3); font-size: 12px; }
.sbar { display: inline-block; width: 80px; height: 8px; border-radius: var(--pill); background: var(--inset); vertical-align: middle; overflow: hidden; }
.sbar i { display: block; height: 100%; width: var(--w, 0%); background: var(--lime2); border-radius: var(--pill); animation: fillIn 1s var(--ease) both; }
@keyframes fillIn { from { width: 0; } }
.side { display: grid; gap: 14px; }
.side .card .cap { display: flex; justify-content: space-between; align-items: baseline; }
.side .card .cap small { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink3); font-size: 12px; }
.kv { display: grid; }
.kv .row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.kv .row:last-child { border-bottom: 0; }
.kv .row span { color: var(--ink2); } .kv .row b { font-weight: 600; text-align: right; }
.potline { padding: 14px 0 12px; border-bottom: 1px solid var(--line); }
.potline b { display: block; font-weight: 700; font-size: 36px; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.potline small { display: block; margin-top: 6px; font-size: 12.5px; color: var(--ink3); }
.countdown { font-family: var(--ff-m); font-weight: 500; font-size: 20px; }
.rounds div { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; color: var(--ink2); padding: 9px 0; border-bottom: 1px solid var(--line); }
.rounds div:last-child { border-bottom: 0; }
.rounds div b { color: var(--up); font-weight: 600; font-family: var(--ff-m); } .rounds div b.z { color: var(--ink3); font-weight: 500; }
.curve { height: 8px; border-radius: var(--pill); background: var(--inset); overflow: hidden; margin-top: 10px; }
.curve i { display: block; height: 100%; width: var(--w, 0%); background: var(--lime2); border-radius: var(--pill); }

/* ---- dialogs ---- */
dialog { border: 0; padding: 0; background: transparent; width: min(560px, calc(100% - 32px)); overflow: visible; }
dialog::backdrop { background: rgba(17, 17, 17, .35); backdrop-filter: blur(6px); }
.dlg { position: relative; background: var(--card); border-radius: var(--r2); padding: 28px 30px 30px; box-shadow: var(--sh); animation: popin .35s var(--ease) both; }
@keyframes popin { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.dlg h2 { font-size: 26px; margin-bottom: 8px; }
.dlg .x { position: absolute; right: 16px; top: 16px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--inset); font-weight: 700; }
.plat { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.plat button { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding: 12px 14px; border-radius: 16px; border: 1.5px solid transparent; background: var(--inset); text-align: left; transition: border-color .2s, background .2s; }
.plat button b { font-size: 14px; font-weight: 600; } .plat button span { font-size: 12px; color: var(--ink3); }
.plat button.on { border-color: var(--ink); background: var(--card); }
.code { font-family: var(--ff-m); font-size: 22px; font-weight: 500; letter-spacing: .04em; padding: 12px 14px; background: var(--inset); border-radius: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.privy-panel { border-radius: 16px; padding: 12px 14px; background: var(--lime-soft); display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.privy-panel .sp { flex: 1; }
.postlist { display: grid; max-height: 260px; overflow: auto; }
.postlist a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--ink2); }
.postlist a b { color: var(--ink); font-weight: 600; font-family: var(--ff-m); }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); opacity: 0; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--pill); font-weight: 600; font-size: 14px; z-index: 60; transition: .3s var(--ease); pointer-events: none; max-width: min(520px, calc(100% - 32px)); }
.toast.show { opacity: 1; transform: translateX(-50%); } .toast.err { background: var(--down); color: #fff; }

/* ---- docs ---- */
.docs { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; padding-top: 40px; }
.toc { position: sticky; top: 92px; display: grid; gap: 4px; }
.toc a { padding: 8px 12px; border-radius: var(--pill); color: var(--ink3); font-weight: 500; font-size: 13.5px; transition: all .2s; }
.toc a:hover, .toc a.on { color: var(--ink); background: var(--card); box-shadow: var(--sh2); }
.doc h2 { margin: 48px 0 12px; scroll-margin-top: 90px; } .doc h2:first-of-type { margin-top: 28px; }
.doc h3 { margin: 22px 0 6px; }
.doc p, .doc li { color: var(--ink2); font-size: 15.5px; } .doc p + p { margin-top: 10px; }
.dtbl { width: 100%; border-collapse: collapse; margin: 14px 0 6px; font-size: 14.5px; background: var(--card); border-radius: 18px; overflow: hidden; box-shadow: var(--sh2); }
.dtbl th, .dtbl td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.dtbl th { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink3); }
.dtbl tr:last-child td { border-bottom: 0; }
.dtbl td:last-child { font-weight: 600; color: var(--ink); white-space: nowrap; font-family: var(--ff-m); font-size: 13.5px; }
.doc ol { counter-reset: s; list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 10px; }
.doc ol li { position: relative; padding-left: 44px; }
.doc ol li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 700; font-size: 13px; display: grid; place-items: center; }
.doc code { font-family: var(--ff-m); font-size: 13px; background: var(--inset); padding: 2px 7px; border-radius: 8px; color: var(--ink); }
.callout { border-radius: 18px; padding: 14px 18px; background: var(--card); box-shadow: var(--sh2); margin: 14px 0; }
.faq details { border-top: 1px solid var(--line); padding: 14px 0; } .faq summary { cursor: pointer; font-weight: 600; font-size: 15.5px; } .faq details p { margin-top: 8px; }
.cta-line { margin: 56px 0 10px; padding: 34px 36px; border-radius: var(--r2); background: var(--lime); color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-line h2 { font-size: clamp(24px, 3vw, 36px); } .cta-line .muted { color: rgba(17, 17, 17, .6); }

/* ---- preloader ---- */
#boot { position: fixed; inset: 0; z-index: 100; background: var(--bg); color: var(--ink); display: grid; place-items: center; transition: transform .7s var(--ease), opacity .4s; }
#boot.gone { transform: translateY(-100%); opacity: .98; visibility: hidden; transition: transform .7s var(--ease), opacity .3s .5s, visibility 0s .8s; }
.boot-in { text-align: center; }
.boot-rec { width: 84px; height: 84px; margin: 0 auto; border-radius: 24px; display: block; animation: bob 1.6s ease-in-out infinite; }
.boot-word { margin-top: 20px; font-weight: 700; font-size: clamp(32px, 5vw, 48px); letter-spacing: -.04em; line-height: 1; animation: rise .6s var(--ease) .1s both; }
.boot-sub { margin-top: 10px; font-weight: 500; font-size: 13px; color: var(--ink3); animation: rise .6s var(--ease) .3s both; }

/* ---- tour ---- */
.tour { width: min(620px, calc(100% - 32px)); }
.tour .art { border-radius: 20px; background: var(--inset); padding: 18px; min-height: 150px; display: grid; place-items: center; }
.tour .art .stub { width: 100%; padding: 16px 18px; animation: none; }
.tour .art .chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tour .art .chips span { padding: 8px 14px; border-radius: var(--pill); background: var(--card); font-weight: 500; font-size: 13px; box-shadow: var(--sh2); animation: rise .5s var(--ease) both; }
.tour .art .chips span:nth-child(2) { animation-delay: .1s; } .tour .art .chips span:nth-child(3) { animation-delay: .2s; } .tour .art .chips span:nth-child(4) { animation-delay: .3s; } .tour .art .chips span:nth-child(5) { animation-delay: .4s; }
.tour .dots { display: flex; gap: 6px; } .tour .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--inset2); transition: .3s var(--ease); } .tour .dots i.on { background: var(--ink); width: 24px; border-radius: 4px; }
.tour .nav-r { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 20px; }
.tour h2 { margin-top: 18px; font-size: 26px; } .tour p { color: var(--ink2); margin-top: 8px; font-size: 15px; }
.tour .k { display: inline-flex; margin-top: 16px; padding: 5px 10px; border-radius: var(--pill); background: var(--lime-soft); color: var(--ink); }
.filmdlg { width: min(1000px, calc(100% - 32px)); }
.filmdlg .dlg { padding: 0; background: #111; overflow: hidden; }
.filmdlg video { width: 100%; display: block; }

/* ---- reveal ---- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  :root { --w: calc(100% - 32px); }
  .hero, .two, .tok-grid, .launch-grid, .docs { grid-template-columns: 1fr; gap: 24px; }
  .totals, .cards, .banners { grid-template-columns: 1fr 1fr; }
  .sheet, .feats { grid-template-columns: 1fr; }
  .figs { grid-template-columns: 1fr 1fr; }
  .nav, .search { display: none; } .burger { display: inline-flex; }
  .nav.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: var(--card); border-radius: 0 0 24px 24px; box-shadow: var(--sh); padding: 10px 16px 16px; }
  .toc { position: static; display: flex; flex-wrap: wrap; } .summary { position: static; }
  .ledger .hide-m { display: none; }
}
@media (max-width: 600px) {
  .totals, .cards, .banners { grid-template-columns: 1fr; }
  .top-in { gap: 6px; } .top .btn { padding: 0 12px; font-size: 13.5px; } .brand span { display: none; }
  h1 { font-size: clamp(30px, 9vw, 40px); }
  .stub { padding: 20px 18px 22px; }
}
