/* ═══════════════════════════════════════════════════════════════
   credithandle — built 1:1 on the usepaid.app shell.
   Measured from their compiled CSS: bg #0a0a0a, card #1a1a1a,
   hairline rgba(255,255,255,.06), input border #1f2228,
   16px card radius, 60/63 hero at 500 with -1.5px tracking,
   24/32 section heads at 400 with -.6px tracking.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --card: #1a1a1a;
  --row: #202020;
  --line: rgba(255,255,255,.06);
  --line-2: #1f2228;
  --ink: #fff;
  --ink-7: rgba(255,255,255,.7);
  --ink-5: rgba(255,255,255,.5);
  --ink-4: rgba(255,255,255,.4);
  --ink-3: rgba(255,255,255,.3);
  --green: #22c55e;
  --lime: #c9f74a;
  --lime-d: #a8d62e;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --amber: #f5a524;
  --tw: #9146ff;
  --tt-c: #25f4ee;
  --tt-r: #fe2c55;
  --yt: #ff0033;
  --kick: #53fc18;
  --side: 275px;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(.33,0,.15,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 16px/1.5 var(--sans); font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
::selection { background: var(--lime); color: #0a0a0a; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
svg { width: 1em; height: 1em; flex: none; }
img { display: block; }
.m-only { display: none !important; }

/* ═══ SHELL ═══ */
.app { display: grid; grid-template-columns: var(--side) minmax(0,1fr); min-height: 100vh; }

/* ═══ SIDEBAR ═══ */
.side {
  position: sticky; top: 0; height: 100vh; z-index: 30;
  display: flex; flex-direction: column;
  padding: 12px 12px 22px; border-right: 1px solid var(--line-2);
}
.side-top { display: flex; align-items: center; height: 40px; padding-left: 12px; margin-bottom: 18px; }
.logo { display: grid; place-items: center; }
.logo svg { width: 30px; height: 30px; }
.collapse {
  position: absolute; right: -16px; top: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px; color: var(--ink-7);
  background: var(--bg); border: 1px solid var(--line-2);
}
.collapse:hover { color: #fff; }
.nav { display: flex; flex-direction: column; gap: 2px; }
.nav a {
  display: flex; align-items: center; gap: 20px; width: fit-content;
  padding: 12px; border-radius: 999px;
  font-size: 20px; line-height: 26px; color: var(--ink-7);
  transition: background .2s, color .2s;
}
.nav a svg { font-size: 26px; }
.nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav a.on { color: #fff; font-weight: 600; }
.me { margin-top: auto; display: flex; align-items: center; gap: 12px; padding: 0 10px; }
.me-av { width: 42px; height: 42px; border-radius: 50%; background: #1a1a1a; border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.me-av svg { width: 20px; height: 20px; }
.me-t { flex: 1; display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.me-t b { font-size: 14px; font-weight: 600; }
.me-t small { font-size: 14px; color: var(--ink-5); }
.me-x { font-size: 16px; color: var(--ink-7); padding: 6px; }

/* ═══ TOP BAR ═══ */
.top {
  position: fixed; left: var(--side); right: 0; top: 0; height: 64px; z-index: 25;
  display: flex; align-items: center; gap: 12px; padding: 0 24px;
  background: var(--bg); border-bottom: 1px solid var(--line-2);
}
.search {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: min(520px, 34vw); height: 44px;
  display: flex; align-items: center; gap: 4px; padding-left: 14px;
  border: 1px solid var(--line-2); border-radius: 999px;
  color: var(--ink-5); font-size: 15px;
  transition: border-color .2s;
}
.search:focus-within { border-color: rgba(255,255,255,.35); }
.search input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: none; color: #fff; font: 400 14px var(--sans); padding: 0 16px 0 4px; }
.search input::placeholder { color: var(--ink-5); }
.top-r { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.burger { font-size: 24px; width: 36px; height: 36px; place-items: center; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 20px; border-radius: 999px;
  font: 500 14px/20px var(--sans); white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn:active { transform: scale(.97); }
.btn.sm { height: 36px; padding: 0 16px; }
.btn.o.sm { font-size: 13px; border-color: rgba(255,255,255,.12); }
.btn.w { background: #fff; color: #0a0a0a; }
.btn.w:hover { background: #e6e6e6; }
.btn.o { border: 1px solid var(--line-2); color: #fff; }
.btn.o:hover { background: var(--card); }

/* ═══ MAIN ═══ */
main { min-width: 0; padding: 64px 24px 0; }

/* ═══ AVATARS + PLATFORM BADGES ═══ */
.av-w { position: relative; display: inline-block; flex: none; width: 40px; height: 40px; }
.av-w > img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #222; }
.av-w.sm { width: 24px; height: 24px; }
.pb {
  position: absolute; right: -3px; bottom: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  display: grid; place-items: center; font-size: 9px;
  background: #000; color: #fff; box-shadow: 0 0 0 2px var(--card);
}
.pb:empty { display: none; }
.av-w.sm .pb { width: 12px; height: 12px; font-size: 7px; right: -3px; bottom: -2px; }
.pb.tiktok svg { filter: drop-shadow(-.7px 0 0 var(--tt-c)) drop-shadow(.7px 0 0 var(--tt-r)); }
.pb.twitch { background: var(--tw); }
.pb.youtube { background: var(--yt); }
.pb.kick { background: var(--kick); color: #000; }
.pb.eth { background: #627eea; }
.pb.sol { background: linear-gradient(135deg,#9945ff,#14f195); }
.vf { width: 16px; height: 16px; vertical-align: -3px; }

/* ═══ HERO ═══ */
.hero { text-align: center; padding: 48px 0 80px; }
.toast {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px 0 10px; border-radius: 999px;
  background: #151515; border: 1px solid rgba(255,255,255,.1);
  font-size: 15px; transition: opacity .3s, transform .3s var(--ease);
}
.toast.out { opacity: 0; transform: translateY(-4px); }
.t-d { width: 26px; height: 26px; border-radius: 50%; background: #2a2a2a; display: grid; place-items: center; font-size: 15px; }
.toast b { font-weight: 600; }
.t-s { color: var(--ink-5); }
.toast .av-w .pb { box-shadow: 0 0 0 2px #151515; }

.hero h1 {
  margin: 34px auto 0; max-width: 720px;
  font-size: 60px; line-height: 63px; font-weight: 500; letter-spacing: -1.5px;
}
.rot { position: relative; display: inline-block; width: .8em; height: .8em; vertical-align: -.08em; margin: 0 .04em; }
.rot svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transform: translateY(22%); transition: opacity .4s, transform .6s var(--ease); }
.rot svg.on { opacity: 1; transform: none; }
.rot svg.gone { opacity: 0; transform: translateY(-22%); }
.rot svg:nth-child(2).on { filter: drop-shadow(-2px 0 0 var(--tt-c)) drop-shadow(2px 0 0 var(--tt-r)); }
.rot svg:nth-child(3) { color: #a970ff; }
.rot svg:nth-child(4) { color: var(--yt); }
.rot svg:nth-child(5) { color: var(--kick); }
.sub {
  margin: 28px auto 0; max-width: 510px;
  font-size: 18px; line-height: 29px; color: var(--ink-5); text-wrap: balance;
}
.xi { width: 14px; height: 14px; color: var(--ink-5); vertical-align: -1px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px 0 8px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.12); background: #111;
  color: #fff; font-size: 15px; vertical-align: 1px;
}
.chip svg { font-size: 14px; }
.chip:first-of-type svg { color: #8ea2ff; }
.chip:last-of-type svg { color: #14f195; }
.ctas { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }

/* ═══ BENTO ═══ */
.bento { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.tile {
  position: relative; isolation: isolate; overflow: hidden; height: 280px;
  border-radius: 16px; background: var(--card); border: 1px solid var(--line);
  transition: border-color .25s;
}
.tile:hover { border-color: rgba(255,255,255,.14); }
.t-explore, .t-pays { grid-column: span 3; }
.t-stat, .t-out, .t-card { grid-column: span 2; }
.tile-f {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 44px 16px 14px; font-size: 14px;
  background: linear-gradient(to bottom, rgba(26,26,26,0), rgba(26,26,26,.92) 55%, var(--card));
}
.open { display: inline-flex; align-items: center; gap: 4px; color: var(--ink-5); transition: color .2s; }
.open svg { font-size: 12px; }
.tile:hover .open { color: #fff; }

/* Explore: offset columns drifting in opposite directions */
.ex-cols { position: absolute; inset: 0; display: flex; gap: 9px; transform: translateX(-56px); }
.ex-col { flex: none; width: 156px; display: flex; flex-direction: column; gap: 9px; animation: up 44s linear infinite; }
.ex-col:nth-child(even) { animation-name: down; }
@keyframes up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.ec { flex: none; width: 156px; height: 206px; border-radius: 16px; overflow: hidden; background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; }
.ec-img { position: relative; height: 130px; margin: 6px 6px 0; border-radius: 11px; overflow: hidden; background: #222; }
.ec-img > img { width: 100%; height: 100%; object-fit: cover; }
.ec-t { position: absolute; right: 6px; top: 6px; font-size: 9px; padding: 1px 6px; border-radius: 999px; background: rgba(0,0,0,.65); }
.ec-who { position: absolute; left: 6px; bottom: 6px; display: flex; align-items: center; gap: 4px; padding: 2px 7px 2px 3px; border-radius: 999px; background: rgba(0,0,0,.75); font-size: 9.5px; font-weight: 600; max-width: calc(100% - 12px); white-space: nowrap; overflow: hidden; }
.ec-who .av-w { width: 14px; height: 14px; }
.ec-who .vf { width: 10px; height: 10px; vertical-align: 0; }
.ec-b { padding: 8px 10px; font-size: 11px; white-space: nowrap; overflow: hidden; }
.ec-b small { color: var(--ink-4); font-size: 9px; margin-left: 4px; font-family: var(--mono); }
.ec-b div { margin-top: 3px; font-weight: 600; font-size: 12.5px; }
.ec-b div i { font-style: normal; color: var(--ink-4); font-weight: 400; font-size: 9px; margin-left: 3px; }

/* Payments loop */
.pl-wrap { position: absolute; inset: 0 28px; overflow: hidden; -webkit-mask: linear-gradient(transparent, #000 8%, #000 78%, transparent); mask: linear-gradient(transparent, #000 8%, #000 78%, transparent); }
.pl { display: flex; flex-direction: column; gap: 10px; padding-top: 10px; animation: up 34s linear infinite; }
.plr { flex: none; display: flex; align-items: center; gap: 12px; height: 62px; padding: 0 12px; border-radius: 16px; background: var(--bg); border: 1px solid var(--line); }
.plr .amt { flex: 1; min-width: 0; line-height: 1.15; }
.plr .amt > b { display: block; font-size: 21px; font-weight: 600; letter-spacing: -.3px; }
.plr .amt > span { font-size: 12.5px; color: var(--ink-5); white-space: nowrap; }
.plr .amt > span b { color: #fff; }
.plr .amt .vf { width: 12px; height: 12px; vertical-align: -2px; }
.pair { display: flex; align-items: center; gap: 12px; color: var(--ink-4); }
.pair .av-w { width: 32px; height: 32px; }
.pair > svg { font-size: 16px; }
.plr .pb { box-shadow: 0 0 0 2px var(--bg); }
.plr time { align-self: flex-end; padding-bottom: 10px; font-size: 11px; color: var(--ink-5); min-width: 22px; text-align: right; }

/* Stat tile */
.t-stat { padding: 20px; }
.st-head { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-7); }
.tabs { display: flex; gap: 10px; color: var(--ink-4); }
.tabs i { font-style: normal; }
.tabs i.on { color: var(--ink-7); }
.odo { display: flex; margin-top: 4px; font-size: 36px; font-weight: 500; letter-spacing: -1px; line-height: 44px; height: 44px; overflow: hidden; font-variant-numeric: tabular-nums; }
.odo .dg { display: inline-block; height: 44px; overflow: hidden; }
.odo .dg > span { display: flex; flex-direction: column; transition: transform 1.4s var(--ease); }
.odo .dg > span > i { font-style: normal; height: 44px; }
.spark { position: absolute; left: 0; right: 0; bottom: 38px; width: 100%; height: 90px; }
.t-stat::before { content: ""; position: absolute; left: 0; right: 0; bottom: 128px; border-top: 1px solid var(--line); }

/* Paying out */
.t-out { padding: 20px; }
.mono-lab { font: 500 11px var(--mono); letter-spacing: .12em; color: var(--ink-5); }
.po-who { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px; border-radius: 12px; background: var(--bg); border: 1px solid var(--line); }
.po-who .av-w { width: 32px; height: 32px; }
.po-who .pb { box-shadow: 0 0 0 2px var(--bg); }
.po-t { display: flex; flex-direction: column; line-height: 1.2; font-size: 14px; }
.po-t b { font-weight: 600; margin-right: 3px; }
.po-t small { color: var(--ink-5); font-size: 12.5px; }
.po-amt { display: flex; align-items: center; gap: 2px; margin-top: 18px; font-size: 26px; font-weight: 600; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.po-amt svg { font-size: 24px; }
.po-ok { display: flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 13px; color: var(--green); }
.po-ok svg { font-size: 14px; }
.po-who, .po-amt, .po-ok { transition: opacity .3s; }
.t-out.swap .po-who, .t-out.swap .po-amt, .t-out.swap .po-ok { opacity: 0; }

/* Card tile */
.t-card { display: grid; place-items: center; padding-bottom: 38px; perspective: 900px; background: radial-gradient(70% 60% at 50% 40%, #262626, var(--card)); }
.mini-card {
  width: 250px; aspect-ratio: 1.586; border-radius: 14px; padding: 16px 18px;
  display: grid; grid-template-rows: auto auto 1fr auto; color: #f2f2f2;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 3px),
    linear-gradient(125deg, #4a4d52 0%, #1c1d20 40%, #36393d 64%, #0e0f11 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 0 0 1px rgba(255,255,255,.08), 0 30px 50px -20px #000;
  transform: rotateX(14deg) rotateY(-16deg) rotateZ(4deg);
  transition: transform .6s var(--ease);
  animation: cardFloat 7s ease-in-out infinite;
}
.t-card:hover .mini-card { animation-play-state: paused; }
@keyframes cardFloat { 50% { transform: rotateX(8deg) rotateY(-6deg) rotateZ(2deg) translateY(-6px); } }
.mc-top { display: flex; justify-content: space-between; align-items: center; }
.mc-brand { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13px; letter-spacing: -.3px; }
.mc-brand svg { width: 14px; height: 14px; }
.mc-nfc { width: 12px; height: 12px; border: 2px solid rgba(255,255,255,.55); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(45deg); }
.mc-chip { width: 32px; height: 24px; margin-top: 12px; border-radius: 5px; background: linear-gradient(135deg,#e8d9a8,#b99b52 40%,#f3e6bd 60%,#a88a45); box-shadow: inset 0 0 0 1px rgba(0,0,0,.25); }
.mc-h { align-self: end; font-size: 18px; font-weight: 500; letter-spacing: -.3px; }
.mc-bot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 4px; }
.mc-bal small { display: block; font-size: 7.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.mc-bal b { font-weight: 500; font-size: 13px; font-variant-numeric: tabular-nums; }
.mc-net { display: flex; gap: 6px; font-size: 13px; opacity: .8; }

/* ═══ SPLIT SECTIONS ═══ */
.split { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 40px; padding-top: 88px; scroll-margin-top: 40px; }
.sh { display: flex; align-items: center; gap: 12px; min-height: 32px; margin-bottom: 24px; }
.sh h2 { margin: 0; font-size: 24px; line-height: 32px; font-weight: 400; letter-spacing: -.6px; white-space: nowrap; }
.pager { margin-left: auto; display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--ink-7); white-space: nowrap; }
.pager svg { font-size: 16px; color: #fff; cursor: pointer; }
.pager svg.dis { color: var(--ink-3); cursor: default; }

.fchips { display: flex; gap: 6px; margin-left: 6px; }
.fchips button {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.1); background: #111;
  font-size: 13px; color: var(--ink-7); transition: all .2s; white-space: nowrap;
}
.fchips button svg { font-size: 12px; }
.fchips button[data-f="tiktok"] svg { filter: drop-shadow(-.8px 0 0 var(--tt-c)) drop-shadow(.8px 0 0 var(--tt-r)); color: #fff; }
.fchips button[data-f="twitch"] svg { color: #a970ff; }
.fchips button[data-f="kick"] svg { color: var(--kick); }
.fchips button i { font-style: normal; font-size: 10.5px; padding: 1px 6px; border-radius: 999px; background: #262626; color: var(--ink-5); }
.fchips button.on { background: #262626; border-color: rgba(255,255,255,.3); color: #fff; }
.fchips button.soon { opacity: .6; cursor: default; }

/* Top handles grid */
.hgrid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.hc, .hc-b { min-width: 0; }
.hc {
  border-radius: 16px; background: var(--card); border: 1px solid var(--line); padding: 8px 8px 14px;
  transition: border-color .25s, transform .25s var(--ease); animation: fin .5s var(--ease) both;
}
.hc:hover { border-color: rgba(255,255,255,.16); transform: translateY(-2px); }
@keyframes fin { from { opacity: 0; transform: translateY(8px); } }
.hc-img { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: #222; }
.hc-img > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.hc:hover .hc-img > img { transform: scale(1.04); }
.hc-p { position: absolute; left: 10px; top: 10px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: rgba(0,0,0,.72); }
.hc-p.twitch { color: #a970ff; }
.hc-p.kick { color: var(--kick); }
.hc-p.youtube { color: var(--yt); }
.hc-p.tiktok svg { filter: drop-shadow(-.7px 0 0 var(--tt-c)) drop-shadow(.7px 0 0 var(--tt-r)); }
.hc-t { position: absolute; right: 10px; top: 10px; font-size: 11px; padding: 1px 8px; border-radius: 999px; background: rgba(0,0,0,.65); }
.hc-who { position: absolute; left: 10px; bottom: 10px; display: flex; align-items: center; gap: 6px; max-width: calc(100% - 20px); padding: 3px 9px 3px 4px; border-radius: 999px; background: rgba(0,0,0,.78); font-size: 12px; font-weight: 600; white-space: nowrap; }
.hc-who .d { width: 18px; height: 18px; display: grid; place-items: center; font-size: 13px; }
.hc-who .av-w { width: 20px; height: 20px; }
.hc-who .nm { overflow: hidden; text-overflow: ellipsis; }
.hc-who .vf { width: 13px; height: 13px; vertical-align: 0; }
.hc-b { padding: 12px 6px 0; }
.hc-n { display: flex; gap: 8px; align-items: baseline; font-size: 14px; white-space: nowrap; overflow: hidden; }
.hc-n small { font: 400 11px var(--mono); color: var(--ink-4); overflow: hidden; text-overflow: ellipsis; }
.hc-v { margin-top: 4px; font-size: 18px; font-weight: 600; letter-spacing: -.3px; font-variant-numeric: tabular-nums; }
.hc-v i { font-style: normal; font-size: 11px; font-weight: 400; color: var(--ink-4); margin-left: 5px; letter-spacing: 0; }

/* Top profiles */
.profs { display: flex; flex-direction: column; gap: 16px; }
.pf { border-radius: 16px; overflow: hidden; background: var(--card); border: 1px solid var(--line); animation: fin .5s var(--ease) both; transition: border-color .25s; }
.pf:hover { border-color: rgba(255,255,255,.16); }
.pf-ban { height: 112px; background: #222; }
.pf-ban img { width: 100%; height: 100%; object-fit: cover; }
.pf-b { position: relative; padding: 0 16px 16px; }
.pf-b > .av-w { width: 68px; height: 68px; margin-top: -40px; }
.pf-b > .av-w > img { border: 3px solid var(--card); }
.pf-b > .av-w .pb { width: 20px; height: 20px; font-size: 11px; right: 0; bottom: 2px; }
.pf-n { margin-top: 6px; font-size: 19px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.pf-n .vf { width: 19px; height: 19px; }
.pf-h { font-size: 15px; color: var(--ink-5); }
.pf-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 2px 9px; border-radius: 4px; background: #2a2a2a; font-size: 13px; color: var(--ink-5); }
.pf-tag svg { font-size: 14px; }
.pf-s { display: flex; gap: 18px; margin-top: 10px; font-size: 14px; color: var(--ink-5); align-items: baseline; }
.pf-s b { font-size: 18px; color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.pf-s .rx { display: inline-flex; align-items: center; gap: 2px; }
.pf-s .rx svg { color: #fff; font-size: 17px; align-self: center; }

/* Rows */
.rows { display: flex; flex-direction: column; gap: 12px; }
.r {
  position: relative; display: flex; align-items: center; height: 86px; padding: 0 12px;
  border-radius: 12px; background: var(--row); border: 1px solid var(--line);
  animation: fin .45s var(--ease) both;
}
.r-l { width: 296px; flex: none; min-width: 0; line-height: 1.15; }
.r-l > b { display: block; font-size: 30px; font-weight: 600; letter-spacing: -.6px; font-variant-numeric: tabular-nums; }
.r-l > span { font-size: 16px; color: var(--ink-5); white-space: nowrap; }
.r-l > span b { color: #fff; font-weight: 600; }
.r .pair { gap: 14px; }
.r .pair .av-w { width: 40px; height: 40px; }
.r .pair .pb { box-shadow: 0 0 0 2px var(--row); }
.r .pair .glyph { width: 20px; height: 20px; color: #fff; }
.coin { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; background: #0a0a0a; color: #fff; flex: none; }
.coin.eth { background: #1c1f35; color: #8ea2ff; }
.coin.card { border-radius: 7px; width: 48px; height: 31px; font-size: 13px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 3px), linear-gradient(125deg,#4a4d52,#1c1d20 50%,#0e0f11); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.r-r { margin-left: auto; align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; padding: 12px 0 13px; }
.r-r .dn { font-size: 14px; color: var(--ink-5); }
.r-r .meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-7); }
.st { display: inline-flex; align-items: center; gap: 5px; height: 20px; padding: 0 8px; border-radius: 5px; font-size: 11.5px; font-weight: 600; background: #333; color: #ddd; }
.st.amber { background: rgba(245,165,36,.15); color: var(--amber); }
.st.amber::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); }
.r.most { justify-content: space-between; }
.r.most .amt { font-size: 22px; font-weight: 600; letter-spacing: -.3px; font-variant-numeric: tabular-nums; }
.r.nc .r-l { width: auto; margin-right: 14px; }
.r.nc .r-l > b { font-size: 28px; }

.ttabs { display: flex; gap: 4px; margin-left: 16px; }
.ttabs button { height: 28px; padding: 0 10px; border-radius: 999px; font-size: 14px; color: var(--ink-5); transition: color .2s; }
.ttabs button.on, .ttabs button:hover { color: #fff; }

/* ═══ SEND BOX ═══ */
.sendbox {
  margin-top: 88px; padding: 28px; border-radius: 16px;
  background: var(--card); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 12px 28px; align-items: center;
  scroll-margin-top: 90px;
}
.sb-l h2 { margin: 0; font-size: 24px; line-height: 32px; font-weight: 400; letter-spacing: -.6px; }
.sb-l p { margin: 4px 0 0; color: var(--ink-5); font-size: 15px; }
.sb-form { display: flex; gap: 10px; }
.sb-in, .sb-amt { display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 14px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line-2); transition: border-color .2s; }
.sb-in { padding-left: 10px; }
.sb-in:focus-within, .sb-amt:focus-within { border-color: rgba(255,255,255,.35); }
.sb-in { flex: 1; min-width: 0; }
.sb-plat { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; background: #222; flex: none; transition: background .25s, color .25s; }
.sb-plat.twitch { background: var(--tw); }
.sb-plat.tiktok svg { filter: drop-shadow(-.8px 0 0 var(--tt-c)) drop-shadow(.8px 0 0 var(--tt-r)); }
.sb-plat.youtube { background: var(--yt); }
.sb-plat.kick { background: var(--kick); color: #000; }
.sb-in input, .sb-amt input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; color: #fff; font: 400 15px var(--sans); }
.sb-amt { width: 130px; }
.sb-amt svg { font-size: 16px; color: var(--ink-7); }
.sb-amt input { font-weight: 600; font-variant-numeric: tabular-nums; }
.sb-msg { grid-column: 2; margin: 0; font-size: 13px; color: var(--ink-5); padding-left: 14px; }
.sb-msg.ok { color: var(--green); }

/* ═══ FOOTER ═══ */
.foot {
  margin: 88px -24px 0; padding: 72px 24px 90px; border-top: 1px solid var(--line-2);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.foot h4 { margin: 0 0 16px; font-size: 13px; font-weight: 500; }
.foot a { display: block; font-size: 11px; color: var(--ink-4); margin-bottom: 16px; transition: color .2s; width: fit-content; }
.foot a:hover { color: #fff; }
.f-brand b { display: block; font-size: 15px; font-weight: 500; letter-spacing: -.3px; }
.f-brand small { display: block; font-size: 11px; color: var(--ink-4); margin-top: 8px; }
.f-brand a { margin: 26px 0; font-size: 16px; color: var(--ink-5); }
.f-brand .f-na { font-size: 10px; }

/* ═══ MOBILE TAB BAR ═══ */
.tabbar { display: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1280px) {
  :root { --side: 88px; }
  .side { align-items: center; }
  .side-top { padding-left: 0; justify-content: center; }
  .nav a span, .me-t, .me-x, .collapse { display: none; }
  .me { padding: 0; }
  .split { grid-template-columns: minmax(0,1fr) 300px; gap: 28px; }
  .hgrid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .r-l { width: 230px; }
  .r-l > b { font-size: 26px; }
}
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .bento .t-explore, .bento .t-pays { grid-column: span 6; }
  .sendbox { grid-template-columns: 1fr; }
  .sb-msg { grid-column: 1; }
}
@media (max-width: 760px) {
  :root { --side: 0px; }
  .app { grid-template-columns: 1fr; }
  .side, .d-only { display: none !important; }
  .m-only { display: grid !important; }
  .top { left: 0; padding: 0 16px; }
  main { padding: 64px 16px 100px; }
  .hero { padding: 32px 0 44px; }
  .toast { font-size: 14px; height: 42px; padding-right: 16px; }
  .hero h1 { font-size: 36px; line-height: 38px; letter-spacing: -.9px; margin-top: 26px; }
  .sub { font-size: 16px; line-height: 27px; margin-top: 18px; }
  .ctas { margin-top: 26px; }
  .bento { grid-template-columns: 1fr; }
  .bento .tile { grid-column: auto !important; }
  .split { padding-top: 64px; }
  .sh { flex-wrap: wrap; row-gap: 12px; margin-bottom: 18px; }
  .fchips { margin-left: 0; order: 3; width: 100%; overflow-x: auto; scrollbar-width: none; }
  .fchips button { flex: none; }
  .ttabs { margin-left: 0; }
  .hgrid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .r { height: 78px; }
  .r-l { width: auto; flex: 1; }
  .r-l > b { font-size: 24px; }
  .r-l > span { font-size: 14px; }
  .r .pair { display: none; }
  .r.most .pair { display: flex; }
  .sendbox { padding: 20px; }
  .sb-form { flex-wrap: wrap; }
  .sb-in { flex-basis: 100%; }
  .sb-amt { flex: 1; }
  .sb-msg { padding-left: 0; }
  .foot { grid-template-columns: 1fr 1fr; margin: 64px -16px 0; padding: 48px 16px 110px; }
  .tabbar {
    display: flex; justify-content: space-around; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    height: calc(64px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom);
    background: rgba(10,10,10,.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--line-2);
  }
  .tabbar a { width: 48px; height: 44px; display: grid; place-items: center; font-size: 25px; color: #fff; }
  .tabbar .tb-plus { width: 52px; height: 36px; border-radius: 11px; font-size: 18px; color: #000; background: #fff; box-shadow: -3px 0 0 var(--tt-c), 3px 0 0 var(--tt-r); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND LAYER — what makes it credithandle, not a usepaid clone:
   one lime accent, the @ mark on a lime tile, serif-italic words
   in headlines, and the metal card as the brand object.
   ═══════════════════════════════════════════════════════════════ */
.logo { width: 34px; height: 34px; border-radius: 10px; background: var(--lime); color: #0a0a0a; box-shadow: 0 0 0 1px rgba(201,247,74,.3), 0 8px 24px -8px rgba(201,247,74,.5); }
.logo svg { width: 22px; height: 22px; }
.me-av { background: var(--lime); color: #0a0a0a; border-color: transparent; }
.nav a.on svg { color: var(--lime); }
.t-d { background: var(--lime); color: #0a0a0a; }
.t-d svg { width: 16px; height: 16px; }

em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.hero h1 em { color: var(--lime); font-size: 1.12em; letter-spacing: -1px; line-height: 0; }
.sh h2 em, .sb-l h2 em { font-size: 1.12em; letter-spacing: -.3px; color: var(--lime); }
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; left: 50%; top: 80px; width: 820px; height: 420px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(201,247,74,.09), transparent 70%); pointer-events: none; z-index: -1;
}

.btn.lime { background: var(--lime); color: #0a0a0a; font-weight: 600; }
.btn.lime:hover { background: #d8ff66; }
.top .btn.w { background: var(--lime); }
.top .btn.w:hover { background: #d8ff66; }

.tile:hover { border-color: rgba(201,247,74,.28); }
.tile:hover .open { color: var(--lime); }
.tabs i.on { color: var(--lime); }
#sparkL { stroke: var(--lime); }
.spark stop:first-child { stop-color: var(--lime); }
.po-ok { color: var(--lime); }
.mono-lab { color: var(--lime); opacity: .8; }

.fchips button.on, .ttabs button.on { background: var(--lime); border-color: var(--lime); color: #0a0a0a; }
.ttabs button.on { font-weight: 600; }
.fchips button.on svg { color: #0a0a0a !important; filter: none !important; }
.hc:hover, .pf:hover { border-color: rgba(201,247,74,.3); }
.pf-tag { background: rgba(201,247,74,.1); color: var(--lime); }
.st.green { background: rgba(201,247,74,.12); color: var(--lime); }

/* the card: graphite with a lime edge and a lime @ */
.mini-card { box-shadow: inset 0 1px 0 rgba(255,255,255,.3), inset 0 0 0 1px rgba(201,247,74,.18), 0 30px 60px -22px rgba(0,0,0,.9), 0 0 60px -20px rgba(201,247,74,.25); }
.mc-brand svg { color: var(--lime); }
.mc-h { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; }
.t-card { background: radial-gradient(70% 60% at 50% 40%, rgba(201,247,74,.1), var(--card) 70%); }
.coin.card { box-shadow: inset 0 0 0 1px rgba(201,247,74,.3); color: var(--lime); }

.sendbox { background: linear-gradient(135deg, rgba(201,247,74,.07), transparent 45%), var(--card); }
#sbGo { background: var(--lime); }
.f-brand b::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 2px; background: var(--lime); margin-right: 8px; vertical-align: 1px; }
.f-brand .f-chain { font-family: var(--mono); color: var(--ink-5); margin-top: 10px; }
.tabbar .tb-plus { background: var(--lime); }

/* ═══ credited — logo image + X link ═══ */
.logo { background: #000; box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 24px -10px rgba(255,255,255,.25); overflow: hidden; }
.logo img, .me-av img, .t-d img { width: 100%; height: 100%; object-fit: cover; display: block; }
.me-av { background: #000; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.t-d { background: #000; overflow: hidden; }
.mc-brand img { width: 16px; height: 16px; border-radius: 4px; }
.mini-card.xl .mc-brand img { width: 22px; height: 22px; border-radius: 5px; }
.coin.card img { width: 16px; height: 16px; border-radius: 4px; }
.top-x { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 16px; color: #fff; border: 1px solid rgba(255,255,255,.12); transition: background .2s, border-color .2s; }
.top-x:hover { background: #1a1a1a; border-color: var(--lime); }
