/* party: OpenAI-style minimal. White, Inter, hairline borders, pill buttons, black primary, one green for "live". */
:root {
  --bg: #ffffff; --bg2: #f7f7f8; --bg3: #efeff1; --line: #e5e5e5; --line2: #d9d9de;
  --fg: #0d0d0d; --fg2: #5d5d66; --fg3: #8e8ea0;
  --pri: #0d0d0d; --on-pri: #ffffff;
  --green: #10a37f; --green-soft: rgba(16,163,127,.12); --red: #e5484d; --red-soft: rgba(229,72,77,.1); --amber: #b7791f;
  --r: 16px; --r-sm: 12px; --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0d0d0d; --bg2: #171717; --bg3: #212121; --line: #2a2a2a; --line2: #383838;
    --fg: #ececec; --fg2: #a3a3ad; --fg3: #75757f; --pri: #ececec; --on-pri: #0d0d0d;
    --green-soft: rgba(16,163,127,.18); --red-soft: rgba(229,72,77,.16);
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35); color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0d0d0d; --bg2: #171717; --bg3: #212121; --line: #2a2a2a; --line2: #383838;
  --fg: #ececec; --fg2: #a3a3ad; --fg3: #75757f; --pri: #ececec; --on-pri: #0d0d0d;
  --green-soft: rgba(16,163,127,.18); --red-soft: rgba(229,72,77,.16);
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35); color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--fg); font: 15px/1.55 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }
.num { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--mono); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 16px; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--pri);
  background: var(--pri); color: var(--on-pri); font-weight: 500; font-size: 14px; text-decoration: none; white-space: nowrap; transition: opacity .15s, background .15s, transform .1s; }
.btn:hover { opacity: .86; }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .45; cursor: default; transform: none; }
.btn.line { background: transparent; color: var(--fg); border-color: var(--line2); }
.btn.line:hover { background: var(--bg2); opacity: 1; }
.btn.sm { height: 34px; padding: 0 14px; font-size: 13.5px; }
.btn.lg { height: 46px; padding: 0 22px; font-size: 15px; }
.btn.full { width: 100%; }
.btn.green { background: var(--green); border-color: var(--green); color: #fff; }
.btn.red { background: var(--red); border-color: var(--red); color: #fff; }
.btn .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- header ---------- */
header.top { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s; }
header.top.scrolled { border-bottom-color: var(--line); }
.bar { height: 64px; display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 600; font-size: 18px; letter-spacing: -.02em; }
.logo img { width: 28px; height: 28px; }
.links { display: flex; gap: 4px; }
.links a { text-decoration: none; color: var(--fg2); font-size: 14px; padding: 6px 12px; border-radius: 999px; transition: background .15s, color .15s; }
.links a:hover { background: var(--bg2); color: var(--fg); }
.links a.on { color: var(--fg); background: var(--bg2); }
.bar .right { margin-left: auto; display: flex; gap: 8px; align-items: center; position: relative; }
.menu { position: absolute; top: 44px; right: 0; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; min-width: 190px; display: none; }
.menu.open { display: block; }
.menu button { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 9px 12px; border-radius: 9px; font-size: 14px; }
.menu button:hover { background: var(--bg2); }
@media (max-width: 760px) { .links { display: none; } .hide-s { display: none !important; } .bar { gap: 12px; } }

/* ---------- hero ---------- */
.hero { padding: 72px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 5px 13px 5px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: var(--fg2); text-decoration: none; transition: background .15s; }
.pill:hover { background: var(--bg2); }
.live { position: relative; width: 8px; height: 8px; display: inline-block; }
.live i, .live::after { position: absolute; inset: 0; border-radius: 50%; background: var(--green); content: ''; }
.live::after { animation: ping 1.8s cubic-bezier(0, 0, .2, 1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }
.hero h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.04; letter-spacing: -.035em; font-weight: 600; margin: 22px 0 18px; }
.lede { font-size: 18px; color: var(--fg2); max-width: 520px; margin: 0 0 28px; }
.ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.ticks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 8px; color: var(--fg2); font-size: 14px; }
.ticks li { display: flex; gap: 9px; align-items: center; }
.ticks svg { width: 16px; height: 16px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; flex: none; }
@media (max-width: 900px) { .hero { padding: 40px 0 32px; } .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

/* hero demo: a party card */
.hero-demo { min-height: 460px; }
.demo { border: 1px solid var(--line); border-radius: 22px; background: var(--bg); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; height: 460px; }
.demo .dhead { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.demo .dhead .cav { width: 32px; height: 32px; border-radius: 10px; }
.demo .dhead b { font-size: 15px; }
.demo .dhead small { display: block; color: var(--fg3); font-size: 12px; }
.demo .dhead .herec { margin-left: auto; font-size: 12.5px; color: var(--fg2); display: flex; align-items: center; gap: 7px; }
.example { font-size: 11px; font-weight: 500; color: var(--fg3); border: 1px solid var(--line); border-radius: 999px; padding: 1px 8px; margin-left: 6px; }
.demo .dvoice { padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg2); }
.demo .dmsgs { flex: 1; overflow: hidden; padding: 8px 6px; display: flex; flex-direction: column; justify-content: flex-end; }
.demo .dcomp { padding: 12px; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .hero-demo { min-height: 0; } .demo { height: 400px; } }

/* ---------- sections ---------- */
.block { padding: 64px 0; }
.block.soft { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.sec-head.center { justify-content: center; text-align: center; }
.sec-head h2, .cta-block h2 { font-size: 30px; letter-spacing: -.025em; font-weight: 600; margin: 0 0 4px; }
.sec-head p { margin: 0; color: var(--fg2); }
.tools { display: flex; gap: 10px; flex-wrap: wrap; }
.search { display: flex; align-items: center; gap: 8px; height: 36px; border: 1px solid var(--line); border-radius: 999px; padding: 0 14px; background: var(--bg); }
.search svg { width: 15px; height: 15px; fill: none; stroke: var(--fg3); stroke-width: 2; stroke-linecap: round; }
.search input { border: 0; outline: 0; background: transparent; width: 160px; font-size: 14px; }
.seg { display: inline-flex; background: var(--bg2); border: 1px solid var(--line); border-radius: 999px; padding: 3px; gap: 2px; }
.seg button { border: 0; background: none; padding: 5px 12px; border-radius: 999px; font-size: 13px; color: var(--fg2); font-weight: 500; }
.seg button.on { background: var(--bg); color: var(--fg); box-shadow: 0 1px 2px rgba(0,0,0,.08); }
:root[data-theme="dark"] .seg button.on { background: var(--bg3); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .seg button.on { background: var(--bg3); } }
@media (max-width: 640px) { .block { padding: 44px 0; } .search { flex: 1; } .search input { width: 100%; } .tools { width: 100%; } }

/* coin cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.pcard { display: flex; flex-direction: column; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; background: var(--bg); transition: border-color .15s, box-shadow .15s, transform .15s; min-height: 176px; animation: rise .4s both; }
.pcard:hover { border-color: var(--line2); box-shadow: var(--shadow); transform: translateY(-1px); }
.pcard.sk { background: linear-gradient(90deg, var(--bg2), var(--bg3), var(--bg2)); background-size: 200% 100%; animation: sk 1.2s infinite linear; border-color: transparent; }
@keyframes sk { to { background-position: -200% 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } }
.pc-top { display: flex; gap: 12px; align-items: center; }
.cav { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; background: var(--bg2); flex: none; }
.cav.ph { display: grid; place-items: center; font-weight: 600; color: var(--fg2); }
.pc-top .nm { min-width: 0; flex: 1; }
.pc-top b { display: block; font-size: 15px; font-weight: 600; }
.pc-top small { display: block; color: var(--fg3); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pc-mc { text-align: right; font-size: 14px; font-weight: 500; }
.pc-mc small { display: block; font-size: 12px; color: var(--fg3); font-weight: 400; }
.up { color: var(--green) !important; } .dn { color: var(--red) !important; }
.pc-party { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg2); }
.pc-party .livepill { display: inline-flex; align-items: center; gap: 6px; background: var(--green-soft); color: var(--green); border-radius: 999px; padding: 2px 9px; font-weight: 500; font-size: 12.5px; }
.pc-party .quiet { color: var(--fg3); }
.pc-last { font-size: 13.5px; color: var(--fg2); background: var(--bg2); border-radius: 12px; padding: 9px 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: auto; }
.pc-last b { color: var(--fg); font-weight: 500; }
.pc-last.none { color: var(--fg3); }
.empty { padding: 48px 20px; text-align: center; color: var(--fg2); border: 1px dashed var(--line2); border-radius: var(--r); }
.empty b { color: var(--fg); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.step .n { width: 28px; height: 28px; border-radius: 50%; background: var(--pri); color: var(--on-pri); display: grid; place-items: center; font-size: 13px; font-weight: 600; }
.step h3 { margin: 14px 0 6px; font-size: 17px; font-weight: 600; }
.step p { margin: 0; color: var(--fg2); font-size: 14.5px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.cta-block { text-align: center; }
.cta-block p { color: var(--fg2); margin: 0 0 22px; }

/* ---------- page heads, forms, docs ---------- */
.phead { padding: 44px 0 26px; }
.phead h1 { font-size: 36px; letter-spacing: -.03em; font-weight: 600; margin: 0 0 6px; }
.phead p { margin: 0; color: var(--fg2); }
.launch-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; padding-bottom: 64px; }
@media (max-width: 900px) { .launch-grid { grid-template-columns: 1fr; } }
.card { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); }
.form { padding: 22px; display: grid; gap: 16px; }
.imgrow { display: grid; grid-template-columns: 124px 1fr; gap: 16px; }
.drop { width: 124px; height: 124px; border: 1px dashed var(--line2); border-radius: 18px; display: grid; place-items: center; cursor: pointer; overflow: hidden; color: var(--fg3); font-size: 13px; transition: background .15s; }
.drop:hover { background: var(--bg2); }
.drop span { display: grid; justify-items: center; gap: 6px; }
.drop svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.drop img { width: 100%; height: 100%; object-fit: cover; }
.fcol { display: grid; gap: 12px; align-content: start; }
.field { display: grid; gap: 6px; min-width: 0; }
.field label { font-size: 13px; font-weight: 500; }
.field small { color: var(--fg3); font-weight: 400; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); padding: 10px 13px; outline: 0; transition: border-color .15s, box-shadow .15s; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--fg3); box-shadow: 0 0 0 3px var(--bg3); }
.f3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 640px) { .f3 { grid-template-columns: 1fr; } .imgrow { grid-template-columns: 96px 1fr; } .drop { width: 96px; height: 96px; } }
.suffix { position: relative; }
.suffix span { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--fg3); font-size: 13px; }
.msg { font-size: 13.5px; min-height: 0; }
.msg:empty { display: none; }
.msg.bad { color: var(--red); }
.msg.ok { color: var(--green); }
.lsteps { display: grid; gap: 8px; font-size: 14px; color: var(--fg3); }
.lsteps div { display: flex; align-items: center; gap: 10px; }
.lsteps i { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--line2); flex: none; }
.lsteps .on { color: var(--fg); } .lsteps .on i { border-color: var(--fg); border-top-color: transparent; animation: spin .8s linear infinite; }
.lsteps .ok { color: var(--fg2); } .lsteps .ok i { background: var(--green); border-color: var(--green); }
.lsteps .bad { color: var(--red); } .lsteps .bad i { background: var(--red); border-color: var(--red); }
.done { padding: 14px 16px; border-radius: 12px; background: var(--green-soft); font-size: 14px; }
.launch-side { display: grid; gap: 16px; position: sticky; top: 84px; }
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; color: var(--fg2); }
.facts li { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; }
.facts b { color: var(--fg); font-weight: 600; }
.doc { max-width: 720px; padding-bottom: 72px; }
.doc h2 { font-size: 20px; letter-spacing: -.015em; font-weight: 600; margin: 34px 0 8px; }
.doc p, .doc li { color: var(--fg2); }
.doc b { color: var(--fg); }
.doc ul { padding-left: 20px; display: grid; gap: 6px; }

.spin { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--line2); border-top-color: var(--fg); border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- avatars (a wallet's own two colours) ---------- */
.av { width: 30px; height: 30px; border-radius: 50%; flex: none; display: inline-block; }
.av.s { width: 22px; height: 22px; }
.av.l { width: 52px; height: 52px; }

/* ---------- the party (chat + voice) ---------- */
.party { display: flex; flex-direction: column; min-height: 0; border: 1px solid var(--line); border-radius: 20px; background: var(--bg); overflow: hidden; }
.phd { display: flex; align-items: center; gap: 10px; padding: 12px 14px 12px 16px; border-bottom: 1px solid var(--line); }
.phd h3 { margin: 0; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.phd .herec { font-size: 13px; color: var(--fg2); }
.phd .sp { flex: 1; }
.icb { width: 32px; height: 32px; border-radius: 50%; border: 1px solid transparent; background: none; display: grid; place-items: center; color: var(--fg2); transition: background .15s; }
.icb:hover { background: var(--bg2); color: var(--fg); }
.icb svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icb.on { background: var(--bg2); color: var(--fg); }

.voice { padding: 12px 14px; border-bottom: 1px solid var(--line); background: var(--bg2); display: grid; gap: 10px; }
.vrow { display: flex; align-items: center; gap: 10px; }
.vppl { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 0; }
.vp { position: relative; display: grid; justify-items: center; gap: 3px; width: 50px; }
.vp .av { width: 38px; height: 38px; box-shadow: 0 0 0 2px var(--bg2); transition: box-shadow .12s; }
.vp.talk .av { box-shadow: 0 0 0 2px var(--bg2), 0 0 0 4.5px var(--green); }
.vp small { font-size: 11px; color: var(--fg2); max-width: 50px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vp .mut { position: absolute; top: 24px; right: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; }
.vp .mut svg { width: 10px; height: 10px; stroke: var(--red); fill: none; stroke-width: 2.4; stroke-linecap: round; }
.vp .dv { position: absolute; top: -4px; right: 2px; font-size: 9px; font-weight: 700; background: var(--pri); color: var(--on-pri); border-radius: 6px; padding: 0 4px; }
.vinfo { font-size: 13px; color: var(--fg2); flex: 1; }
.vinfo b { color: var(--fg); font-weight: 500; }
.vbtns { display: flex; gap: 6px; }
.vbtn { height: 34px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line2); background: var(--bg); font-size: 13.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 7px; }
.vbtn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vbtn.pri { background: var(--pri); color: var(--on-pri); border-color: var(--pri); }
.vbtn.live { background: var(--green); color: #fff; border-color: var(--green); }
.vbtn.leave { color: var(--red); }
.vbtn:disabled { opacity: .5; cursor: default; }
.vnote { font-size: 12.5px; color: var(--fg3); }

.msgs { flex: 1; overflow-y: auto; padding: 8px 6px 4px; min-height: 0; overscroll-behavior: contain; position: relative; }
.m { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 6px 10px; border-radius: 12px; position: relative; }
.m:hover { background: var(--bg2); }
.m.cont { padding-top: 1px; }
.m.cont .av { visibility: hidden; height: 0; }
.m .mh { display: flex; align-items: baseline; gap: 6px; min-width: 0; font-size: 13px; }
.m .mh b { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.m .mh .w { color: var(--fg3); font-family: var(--mono); font-size: 11.5px; }
.m .mh .t { color: var(--fg3); font-size: 11.5px; margin-left: auto; opacity: 0; transition: opacity .15s; white-space: nowrap; }
.m:hover .mh .t { opacity: 1; }
.m .tx { font-size: 14.5px; line-height: 1.45; overflow-wrap: anywhere; }
.m.new { animation: rise .25s both; }
.bdg { font-size: 10.5px; font-weight: 600; border-radius: 6px; padding: 1px 6px; white-space: nowrap; }
.bdg.dev { background: var(--pri); color: var(--on-pri); }
.bdg.mod { background: var(--bg3); color: var(--fg); }
.bdg.h { background: var(--bg2); color: var(--fg2); border: 1px solid var(--line); font-weight: 500; }
.bdg.whale { background: var(--green-soft); color: var(--green); border-color: transparent; }
.m .ca { font-family: var(--mono); font-size: 12.5px; background: var(--bg3); border-radius: 6px; padding: 1px 5px; cursor: pointer; border: 0; }
.m .mm { position: absolute; right: 8px; top: 4px; display: none; gap: 2px; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 2px; box-shadow: var(--shadow); }
.m:hover .mm { display: flex; }
.m .mm button { border: 0; background: none; font-size: 12px; padding: 4px 8px; border-radius: 7px; color: var(--fg2); }
.m .mm button:hover { background: var(--bg2); color: var(--fg); }
.m .mm button.x { color: var(--red); }
.tr { display: flex; align-items: center; gap: 8px; padding: 3px 12px 3px 50px; font-size: 12.5px; color: var(--fg3); text-decoration: none; }
.tr i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.tr.buy i { background: var(--green); } .tr.sell i { background: var(--red); }
.tr b { font-weight: 500; }
.tr.buy b { color: var(--green); } .tr.sell b { color: var(--red); }
.tr:hover { color: var(--fg2); }
.mempty { height: 100%; display: grid; place-items: center; text-align: center; color: var(--fg3); font-size: 14px; padding: 30px; }
.mempty b { display: block; color: var(--fg); font-size: 15px; margin-bottom: 4px; }
.newpill { position: absolute; left: 50%; transform: translateX(-50%); bottom: 84px; z-index: 3; border: 1px solid var(--line); background: var(--bg); box-shadow: var(--shadow); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 500; }
.comp { padding: 10px 12px 12px; border-top: 1px solid var(--line); }
.cbox { display: flex; align-items: flex-end; gap: 8px; border: 1px solid var(--line); border-radius: 24px; padding: 6px 6px 6px 16px; background: var(--bg); transition: border-color .15s, box-shadow .15s; }
.cbox:focus-within { border-color: var(--fg3); box-shadow: 0 0 0 3px var(--bg3); }
.cbox textarea { flex: 1; border: 0; outline: 0; background: transparent; resize: none; padding: 7px 0; max-height: 120px; font-size: 14.5px; line-height: 1.45; }
.send { width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--pri); color: var(--on-pri); display: grid; place-items: center; flex: none; transition: opacity .15s; }
.send:disabled { opacity: .25; cursor: default; }
.send svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.cnote { font-size: 12.5px; color: var(--fg3); margin: 8px 4px 0; display: flex; gap: 8px; justify-content: space-between; }
.cnote a, .cnote button { color: var(--fg2); background: none; border: 0; padding: 0; font-size: 12.5px; text-decoration: underline; text-underline-offset: 2px; }
.cnote.bad { color: var(--red); }
.gate { display: grid; gap: 8px; text-align: center; }
.gate p { margin: 0; font-size: 13px; color: var(--fg2); }
.roster { position: absolute; right: 10px; top: 54px; z-index: 5; width: 260px; max-height: 360px; overflow: auto; background: var(--bg); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 6px; }
.roster .rr { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 9px; font-size: 13.5px; }
.roster .rr .n { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.roster h4 { margin: 6px 8px; font-size: 12px; color: var(--fg3); font-weight: 500; }

/* ---------- coin page ---------- */
.chead { padding: 22px 0 18px; }
.back { font-size: 13.5px; color: var(--fg2); text-decoration: none; }
.back:hover { color: var(--fg); }
.chrow { display: flex; align-items: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.chrow .cav { width: 60px; height: 60px; border-radius: 16px; }
.chrow h1 { margin: 0; font-size: 26px; letter-spacing: -.025em; font-weight: 600; line-height: 1.2; }
.chrow h1 .sub { color: var(--fg3); font-weight: 400; font-size: 17px; margin-left: 4px; }
.cmeta { display: flex; gap: 14px; align-items: center; margin-top: 4px; font-size: 13.5px; color: var(--fg2); flex-wrap: wrap; }
.cabox { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12.5px; background: var(--bg2); border: 1px solid var(--line); border-radius: 999px; padding: 2px 4px 2px 10px; }
.cabox button { border: 0; background: var(--bg); border-radius: 999px; font-family: var(--sans); font-size: 12px; padding: 2px 9px; border: 1px solid var(--line); }
.cacts { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.cacts a { font-size: 13px; color: var(--fg2); text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; transition: background .15s; }
.cacts a:hover { background: var(--bg2); color: var(--fg); }
.cgrid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 18px; align-items: start; padding-bottom: 48px; }
.ccol { display: grid; gap: 18px; min-width: 0; }
.cside { position: sticky; top: 80px; height: calc(100vh - 100px); min-height: 520px; display: flex; flex-direction: column; }
.cside .party { flex: 1; }
.subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.panel { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); }
.panel .pb { padding: 16px; }
.panel h3 { margin: 0 0 10px; font-size: 15px; font-weight: 600; }
.ctabs { display: none; }
@media (max-width: 1060px) {
  .cgrid { grid-template-columns: 1fr; }
  .cside { position: static; height: auto; min-height: 0; }
  .ctabs { display: flex; position: sticky; top: 64px; z-index: 20; background: var(--bg); padding: 8px 0 10px; }
  .ctabs .seg { width: 100%; } .ctabs .seg button { flex: 1; padding: 7px 0; font-size: 14px; }
  .cgrid[data-tab="party"] .ccol { display: none; }
  .cgrid[data-tab="chart"] .cside, .cgrid[data-tab="chart"] .tradebox { display: none; }
  .cgrid[data-tab="trade"] .cside, .cgrid[data-tab="trade"] .chartbox { display: none; }
  .cgrid[data-tab="party"] .cside .party { height: calc(100dvh - 64px - 56px - 16px); min-height: 420px; }
  .subgrid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) { .chrow { display: grid; grid-template-columns: 44px 1fr; gap: 10px 12px; margin-top: 8px; } .chrow .cav { width: 44px; height: 44px; border-radius: 12px; } .chrow h1 { font-size: 20px; } .chrow h1 .sub { font-size: 14px; } .cmeta { gap: 10px; font-size: 12.5px; } .cacts { grid-column: 1 / -1; margin-left: 0; flex-wrap: nowrap; overflow-x: auto; } .cacts a { padding: 4px 10px; font-size: 12px; white-space: nowrap; } .chead { padding: 10px 0 2px; } }

/* chart */
.lchart { overflow: hidden; }
.lhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 14px 16px 6px; flex-wrap: wrap; }
.lhead .lbl { font-size: 12.5px; color: var(--fg3); }
.lprice { font-size: 24px; font-weight: 600; letter-spacing: -.02em; transition: color .5s; }
.lprice.up { animation: fu 1s; } .lprice.down { animation: fd 1s; }
@keyframes fu { 0% { color: var(--green); } } @keyframes fd { 0% { color: var(--red); } }
.ltools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.ltools .seg button { padding: 3px 9px; font-size: 12px; }
.livedot { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--fg3); }
.livedot i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.lcanvas { height: 380px; }
@media (max-width: 640px) { .lcanvas { height: 300px; } }
.prog { padding: 0 16px 14px; font-size: 12.5px; color: var(--fg3); display: flex; align-items: center; gap: 10px; }
.prog .pbar { flex: 1; height: 5px; border-radius: 99px; background: var(--bg3); overflow: hidden; }
.prog .pbar i { display: block; height: 100%; background: var(--green); border-radius: 99px; }

/* trade */
.ttabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; margin: 12px 12px 0; background: var(--bg2); border-radius: 999px; }
.ttabs button { border: 0; background: none; border-radius: 999px; padding: 7px; font-weight: 500; font-size: 14px; color: var(--fg2); }
.ttabs button.on { background: var(--green); color: #fff; }
.ttabs button.on.sell { background: var(--red); }
.tbal { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--fg3); margin-bottom: 8px; gap: 8px; }
.tbal b { color: var(--fg); font-weight: 500; }
.tin { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; transition: border-color .15s; }
.tin:focus-within { border-color: var(--fg3); }
.tin input { flex: 1; border: 0; outline: 0; background: transparent; padding: 11px 0; font-size: 18px; font-weight: 500; min-width: 0; }
.tin span { color: var(--fg3); font-size: 13px; }
.tquick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 8px 0; }
.tquick button, .tslip button { border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 5px 0; font-size: 12.5px; color: var(--fg2); }
.tquick button:hover, .tslip button:hover { background: var(--bg2); }
.tslip { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--fg3); margin-bottom: 12px; }
.tslip button { padding: 3px 9px; }
.tslip button.on { border-color: var(--fg); color: var(--fg); }
.tfoot { font-size: 12px; color: var(--fg3); margin-top: 10px; }
.trade .msg { margin-top: 10px; }
.about p { margin: 0 0 12px; color: var(--fg2); font-size: 14px; overflow-wrap: anywhere; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 13.5px; }
.kv span { color: var(--fg3); }
.kv b { font-weight: 500; text-align: right; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.feed .fr { display: grid; grid-template-columns: 44px 1fr 1fr 1fr 56px; gap: 8px; padding: 6px 16px; font-size: 12.5px; text-decoration: none; border-top: 1px solid var(--line); align-items: center; }
.feed .fr:hover { background: var(--bg2); }
.feed .fs { font-weight: 600; } .feed .buy .fs { color: var(--green); } .feed .sell .fs { color: var(--red); }
.feed .fdim { color: var(--fg3); } .feed .ft2 { text-align: right; }
.feed .fhead { display: flex; justify-content: space-between; padding: 10px 16px; font-size: 13px; font-weight: 600; border-top: 1px solid var(--line); }
.feed .flist { max-height: 280px; overflow-y: auto; }
.feed .new { animation: rise .3s both; }

/* voice dock (you're in a voice room while on another page) */
.vdock { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 60; display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); padding: 6px 6px 6px 14px; font-size: 13.5px; max-width: calc(100vw - 32px); }
.vdock a { text-decoration: none; font-weight: 600; white-space: nowrap; }
.vdock .vtalk { display: flex; gap: 3px; align-items: flex-end; height: 14px; }
.vdock .vtalk i { width: 3px; background: var(--green); border-radius: 2px; height: 5px; animation: eq .9s ease-in-out infinite; }
.vdock .vtalk i:nth-child(2) { animation-delay: .15s; } .vdock .vtalk i:nth-child(3) { animation-delay: .3s; }
@keyframes eq { 50% { height: 14px; } }

/* wallet picker, dialogs */
.wpick { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.4); display: grid; place-items: center; padding: 16px; animation: fade .15s; }
@keyframes fade { from { opacity: 0; } }
.wpick-in { width: 100%; max-width: 380px; background: var(--bg); border-radius: 22px; padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.wpick h3 { margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.wpick p { margin: 0 0 16px; color: var(--fg2); font-size: 14px; }
.wpick .list2 { display: grid; gap: 8px; }
.wpick .list2 button { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); background: var(--bg); border-radius: 14px; padding: 11px 14px; font-weight: 500; text-align: left; }
.wpick .list2 button:hover { background: var(--bg2); }
.wpick .list2 img { width: 28px; height: 28px; border-radius: 8px; }
.wpick .field { margin-bottom: 14px; }
.wpick .row2 { display: flex; gap: 8px; justify-content: flex-end; }
.toast { position: fixed; left: 50%; bottom: 80px; transform: translateX(-50%); background: var(--pri); color: var(--on-pri); border-radius: 999px; padding: 9px 16px; font-size: 13.5px; z-index: 120; animation: rise .2s both; max-width: calc(100vw - 32px); }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 28px 0 40px; }
.fbar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fbar .logo { font-size: 16px; } .fbar .logo img { width: 24px; height: 24px; }
.fbar nav { display: flex; gap: 16px; }
.fbar nav a { color: var(--fg2); text-decoration: none; font-size: 14px; }
.fbar p { margin: 0 0 0 auto; color: var(--fg3); font-size: 12.5px; }
@media (max-width: 760px) { .fbar p { margin: 0; width: 100%; } }
body.coinpage .foot { display: none; }

/* ---------- the stage ---------- */
.stage { border-bottom: 1px solid var(--line); padding: 10px 14px; display: grid; gap: 8px; }
.snow { display: flex; align-items: center; gap: 10px; }
.crown { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #f5b40f22; color: #d99a00; flex: none; }
.crown svg, .payl svg, .pc-stage svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.crown.off { background: var(--bg2); color: var(--fg3); }
.snow .sl { flex: 1; min-width: 0; }
.snow .sl small, .snow .spot small { display: block; font-size: 11.5px; color: var(--fg3); }
.snow .sl b { display: block; font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.snow .spot { text-align: right; } .snow .spot b { font-size: 14px; font-weight: 600; color: var(--green); }
.sboard { display: grid; gap: 4px; }
.sr { display: grid; grid-template-columns: 22px minmax(0, 1fr) 64px 34px 76px; gap: 8px; align-items: center; font-size: 13px; padding: 3px 0; }
.sr .sn { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
.sr .sn small { color: var(--fg3); font-weight: 400; }
.sr.away { opacity: .55; }
.sr.lead .sn::before { content: '♛ '; color: #d99a00; }
.sbar { height: 6px; border-radius: 99px; background: var(--bg3); overflow: hidden; }
.sbar i { display: block; height: 100%; background: var(--fg3); border-radius: 99px; transition: width .4s; }
.sr.lead .sbar i { background: #e0a800; }
.sp { text-align: right; color: var(--fg2); font-size: 12px; }
.sv { white-space: nowrap; height: 26px; border-radius: 999px; border: 1px solid var(--line2); background: var(--bg); font-size: 12px; font-weight: 500; padding: 0 10px; }
.sv:hover { background: var(--bg2); }
.sv.on { background: var(--pri); color: var(--on-pri); border-color: var(--pri); }
span.sv { border: 0; background: none; }
.sfoot { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; color: var(--fg3); flex-wrap: wrap; }
.sfoot button { background: none; border: 0; padding: 0; font-size: 12px; color: var(--fg); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.sfoot b { color: var(--fg2); font-weight: 500; }
.shelp { margin: 0; font-size: 13px; color: var(--fg2); }
.vp.lead .av { box-shadow: 0 0 0 2px var(--bg2), 0 0 0 4.5px #e0a800; }
.m .mm button.v { color: var(--fg); font-weight: 500; }
.roster .sv { margin-left: 4px; height: 24px; padding: 0 9px; }
.payl { display: flex; align-items: center; gap: 8px; margin: 4px 8px; padding: 7px 10px; border-radius: 10px; background: #f5b40f18; color: var(--fg2); font-size: 13px; text-decoration: none; }
.payl svg { color: #d99a00; flex: none; }
.payl b { color: var(--fg); font-weight: 600; }
.payl .fdim { margin-left: auto; color: var(--fg3); font-size: 12px; }
.pc-stage { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--fg2); }
.pc-stage svg { color: #d99a00; flex: none; }
.pc-stage b { color: var(--fg); font-weight: 600; }
.pc-stage .quiet { color: var(--fg3); }
.pc-stage .pot { margin-left: auto; color: var(--green); font-size: 12.5px; white-space: nowrap; }
.demo .stage { background: var(--bg); }
/* the official coin's CA bar */
.cabar { background: var(--pri); color: var(--on-pri); font-size: 13px; }
.cabar .wrap { display: flex; align-items: center; gap: 10px; height: 38px; }
.cabar .ca2 { opacity: .75; font-size: 12px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cabar button, .cabar a { border: 1px solid color-mix(in srgb, var(--on-pri) 30%, transparent); background: none; color: inherit; border-radius: 999px; padding: 3px 11px; font-size: 12px; text-decoration: none; white-space: nowrap; }
.cabar a { margin-left: auto; background: var(--on-pri); color: var(--pri); }

/* the party column never widens the page on phones */
.cside, .cside .party, .stage, .snow { min-width: 0; }
.stage { overflow: hidden; }

/* =====================================================================================================
   v2 polish: hero, stats, sections, features, FAQ, CTA band, docs, footer
   ===================================================================================================== */
.logo .mark { width: 28px; height: 28px; display: block; }
h1, h2, h3 { text-wrap: balance; }
.eyebrow { font-size: 12.5px; font-weight: 600; color: var(--green); letter-spacing: .04em; margin-bottom: 10px; text-transform: uppercase; }
.sub { color: var(--fg2); font-size: 16px; margin: 10px 0 18px; max-width: 460px; }
.textlink { color: var(--fg); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--line2); padding-bottom: 1px; transition: border-color .15s; }
.textlink:hover { border-color: var(--fg); }

/* hero */
.hero { position: relative; overflow: hidden; padding: 88px 0 72px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 20%, transparent 75%); opacity: .7; }
.hero .wrap { position: relative; }
.hero h1 { font-size: clamp(44px, 6.4vw, 76px); letter-spacing: -.045em; line-height: 1; margin: 22px 0 20px; }
.pill .arr { color: var(--fg3); margin-left: 2px; }
.hero-meta { display: flex; gap: 32px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-meta div { display: grid; }
.hero-meta b { font-size: 22px; font-weight: 600; letter-spacing: -.02em; }

.hero-visual { position: relative; }
.hero-visual .demo { box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 24px 60px -12px rgba(0,0,0,.18); }
.float-pay { position: absolute; left: -28px; bottom: 34px; display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 10px 14px 10px 10px; box-shadow: 0 12px 32px -8px rgba(0,0,0,.2); font-size: 13.5px; animation: floaty 5s ease-in-out infinite; z-index: 2; }
.float-pay small { display: block; font-size: 11.5px; color: var(--fg3); }
.float-pay b { font-weight: 600; }
.float-pay [data-fpamt] { color: var(--green); font-weight: 600; margin-left: 4px; }
.float-pay .fp-ic { width: 34px; height: 34px; border-radius: 10px; background: #f5b40f22; color: #d99a00; display: grid; place-items: center; }
.float-pay .fp-ic svg { width: 17px; height: 17px; fill: currentColor; }
.float-pay.pop { animation: pop .5s ease, floaty 5s ease-in-out .5s infinite; }
@keyframes floaty { 50% { transform: translateY(-6px); } }
@keyframes pop { 0% { transform: scale(.9); opacity: .4; } 60% { transform: scale(1.04); } }
@media (max-width: 900px) { .hero { padding: 48px 0 40px; } .float-pay { left: 12px; bottom: -18px; } .hero-meta { gap: 22px; } }

/* stats */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats > div { padding: 26px 24px; border-left: 1px solid var(--line); display: grid; gap: 2px; }
.stats > div:first-child { border-left: 0; padding-left: 0; }
.stats b { font-size: 30px; font-weight: 600; letter-spacing: -.03em; }
.stats span { font-size: 13.5px; color: var(--fg3); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } .stats > div { padding: 18px 14px; } .stats > div:nth-child(3) { border-left: 0; padding-left: 0; } .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); } .stats b { font-size: 24px; } }

/* sections */
.block { padding: 88px 0; }
.sec-head h2, .split-sec h2, .faq-sec h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.035em; line-height: 1.1; font-weight: 600; margin: 0 0 6px; }
.sec-head.center h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.sec-head { margin-bottom: 32px; }
@media (max-width: 640px) { .block { padding: 56px 0; } }

/* steps with little illustrations */
.steps { gap: 16px; }
.step { padding: 0 0 24px; overflow: hidden; }
.step > :not(.step-art) { margin-left: 24px; margin-right: 24px; }
.step .n { display: block; width: auto; height: auto; background: none; color: var(--fg3); font: 500 12.5px var(--mono); margin-top: 20px; }
.step h3 { margin-top: 6px; font-size: 18px; letter-spacing: -.015em; }
.step-art { height: 150px; background: var(--bg2); border-bottom: 1px solid var(--line); display: grid; place-items: center; position: relative; }
.a1 .sa-coin { width: 70px; height: 70px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line2); display: grid; place-items: center; font: 600 28px var(--sans); box-shadow: var(--shadow); }
.a1 .sa-lock { position: absolute; left: calc(50% + 16px); top: calc(50% + 6px); width: 36px; height: 36px; border-radius: 50%; background: var(--pri); color: var(--on-pri); display: grid; place-items: center; }
.a1 .sa-lock svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.a2 { display: flex; align-items: center; justify-content: center; gap: 6px; }
.a2 i { width: 8px; border-radius: 99px; background: var(--green); animation: bars 1.1s ease-in-out infinite; height: 20px; display: block; }
.a2 i:nth-child(2) { animation-delay: .15s; height: 44px; } .a2 i:nth-child(3) { animation-delay: .3s; height: 64px; } .a2 i:nth-child(4) { animation-delay: .45s; height: 38px; } .a2 i:nth-child(5) { animation-delay: .6s; }
@keyframes bars { 50% { transform: scaleY(.45); } }
.a3 { display: grid; gap: 10px; place-items: stretch; align-content: center; padding: 0 36px; }
.a3 span { display: block; height: 12px; border-radius: 99px; background: var(--bg3); position: relative; overflow: hidden; }
.a3 span::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w); border-radius: 99px; background: var(--fg3); }
.a3 span:first-child::after { background: #e0a800; }

/* the split */
.split-sec { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.splitcard { border: 1px solid var(--line); border-radius: 22px; padding: 24px; background: var(--bg); box-shadow: 0 24px 60px -24px rgba(0,0,0,.18); }
.sc-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--fg2); }
.sc-row b { color: var(--fg); font-size: 16px; font-weight: 600; }
.sc-bar { display: flex; gap: 4px; height: 14px; margin: 16px 0 20px; }
.sc-bar i { border-radius: 99px; }
.sc-bar .lead, .dot.lead { background: #e0a800; } .sc-bar .dev, .dot.dev { background: var(--fg); }
.sc-leg { display: grid; gap: 14px; }
.sc-leg > div { display: grid; grid-template-columns: 12px 1fr auto; gap: 12px; align-items: center; }
.sc-leg small { display: block; color: var(--fg3); font-size: 12.5px; }
.sc-leg b { font-weight: 600; }
.sc-leg > div > b { font-size: 18px; }
.dot { width: 12px; height: 12px; border-radius: 4px; }
.sc-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--fg3); }
.sc-foot svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; flex: none; }
@media (max-width: 900px) { .split-sec { grid-template-columns: 1fr; gap: 28px; } }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--bg); }
.feat { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feat:nth-child(3n) { border-right: 0; } .feat:nth-last-child(-n+3) { border-bottom: 0; }
.fi { width: 38px; height: 38px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 16px; }
.fi svg { width: 18px; height: 18px; fill: none; stroke: var(--fg); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.feat p { margin: 0; color: var(--fg2); font-size: 14.5px; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } .feat:nth-child(3n) { border-right: 1px solid var(--line); } .feat:nth-child(2n) { border-right: 0; } .feat:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); } .feat:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } .feat { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; } .feat:last-child { border-bottom: 0 !important; } }

/* faq */
.faq-sec { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 36px 18px 0; font-weight: 500; font-size: 16px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 9px; height: 9px; border-right: 1.8px solid var(--fg3); border-bottom: 1.8px solid var(--fg3); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { margin: 0 0 18px; color: var(--fg2); max-width: 640px; }
@media (max-width: 900px) { .faq-sec { grid-template-columns: 1fr; gap: 20px; } }

/* CTA band */
.cta-band { background: var(--pri); color: var(--on-pri); }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 64px; padding-bottom: 64px; flex-wrap: wrap; }
.cta-in h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.035em; margin: 0 0 6px; font-weight: 600; }
.cta-in p { margin: 0; opacity: .7; }
.btn.inv { background: var(--on-pri); color: var(--pri); border-color: var(--on-pri); }
.btn.ghost-inv { background: transparent; color: var(--on-pri); border-color: color-mix(in srgb, var(--on-pri) 30%, transparent); }

/* footer */
.foot { padding: 56px 0 28px; }
.fgrid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.fbrand p { color: var(--fg3); font-size: 14px; margin: 12px 0 0; max-width: 280px; }
.fgrid h5, .dgroup h5, .dtoc h5 { margin: 0 0 10px; font-size: 12.5px; font-weight: 600; color: var(--fg); }
.fgrid > div:not(.fbrand) a { display: block; color: var(--fg2); text-decoration: none; font-size: 14px; padding: 4px 0; }
.fgrid a:hover { color: var(--fg); }
.fbottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--fg3); flex-wrap: wrap; }
@media (max-width: 640px) { .fgrid { grid-template-columns: 1fr 1fr; } .fbrand { grid-column: 1 / -1; } }

/* ---------- docs ---------- */
.docs { display: grid; grid-template-columns: 220px minmax(0, 1fr) 200px; gap: 56px; align-items: start; padding-top: 32px; padding-bottom: 96px; }
.dnav-in, .dtoc-in { position: sticky; top: 88px; max-height: calc(100vh - 110px); overflow-y: auto; }
.dgroup { margin-bottom: 22px; }
.dgroup a { display: block; font-size: 14px; color: var(--fg2); text-decoration: none; padding: 5px 10px; margin-left: -10px; border-radius: 8px; transition: background .15s, color .15s; }
.dgroup a:hover { color: var(--fg); background: var(--bg2); }
.dgroup a.on { color: var(--fg); background: var(--bg2); font-weight: 500; }
.dtoc-in a { display: block; font-size: 13px; color: var(--fg3); text-decoration: none; padding: 4px 0 4px 12px; border-left: 1px solid var(--line); transition: color .15s, border-color .15s; }
.dtoc-in a:hover { color: var(--fg); }
.dtoc-in a.on { color: var(--fg); border-left-color: var(--fg); }
.dbody { max-width: 740px; font-size: 15.5px; line-height: 1.7; }
.crumbs { font-size: 13px; color: var(--fg3); margin-bottom: 10px; }
.crumbs span { margin: 0 6px; } .crumbs b { color: var(--fg2); font-weight: 500; }
.dbody h1 { font-size: 40px; letter-spacing: -.035em; line-height: 1.1; margin: 0 0 14px; font-weight: 600; scroll-margin-top: 90px; }
.dbody h2 { font-size: 24px; letter-spacing: -.025em; margin: 56px 0 12px; font-weight: 600; padding-top: 28px; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.dbody h3 { font-size: 16px; margin: 26px 0 8px; font-weight: 600; }
.dbody p, .dbody li { color: var(--fg2); }
.dbody b { color: var(--fg); font-weight: 600; }
.dbody a:not(.btn):not(.dcard) { color: var(--fg); text-underline-offset: 3px; }
.dbody ul { padding-left: 20px; display: grid; gap: 8px; }
.dlead { font-size: 19px; line-height: 1.55; color: var(--fg) !important; margin: 0 0 16px; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0 8px; }
.dcard { border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-decoration: none; display: grid; gap: 4px; transition: border-color .15s, box-shadow .15s; }
.dcard:hover { border-color: var(--line2); box-shadow: var(--shadow); }
.dcard b { font-size: 15px; } .dcard > span { font-size: 13.5px; color: var(--fg2); line-height: 1.45; }
.steps-list { counter-reset: s; list-style: none; padding: 0; display: grid; gap: 12px; margin: 12px 0 20px; }
.steps-list li { counter-increment: s; position: relative; padding-left: 40px; }
.steps-list li::before { content: counter(s); position: absolute; left: 0; top: 1px; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line2); display: grid; place-items: center; font: 500 12.5px var(--mono); color: var(--fg); }
.callout { border: 1px solid var(--line); background: var(--bg2); border-left: 3px solid #e0a800; border-radius: 12px; padding: 14px 16px; font-size: 14.5px; color: var(--fg2); margin: 20px 0; line-height: 1.6; }
.callout.note { border-left-color: var(--fg3); }
.flow { display: grid; grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1.2fr; align-items: center; gap: 6px; margin: 24px 0; }
.fnode { border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: var(--bg); display: grid; gap: 2px; line-height: 1.35; }
.fnode small { font: 500 11px var(--mono); color: var(--fg3); }
.fnode b { font-size: 14px; } .fnode span { font-size: 12.5px; color: var(--fg3); }
.fnode.lock { border-color: var(--fg); }
.fnode.lead { border-color: #e0a800; background: #f5b40f10; }
.fsplit { display: grid; gap: 8px; }
.farrow { height: 1px; background: var(--line2); position: relative; }
.farrow::after { content: ""; position: absolute; right: -1px; top: -3px; border: 3.5px solid transparent; border-left: 5px solid var(--line2); }
@media (max-width: 1100px) { .flow { grid-template-columns: 1fr; } .farrow { width: 1px; height: 14px; justify-self: center; } .farrow::after { right: -3px; top: auto; bottom: -5px; border: 3.5px solid transparent; border-top: 5px solid var(--line2); } }
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; margin: 16px 0; }
.dtable { width: 100%; border-collapse: collapse; font-size: 14px; }
.dtable th { text-align: left; font-weight: 500; color: var(--fg3); background: var(--bg2); padding: 10px 14px; border-bottom: 1px solid var(--line); }
.dtable td { padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--fg2); }
.dtable tr:last-child td { border-bottom: 0; }
.dtable td:last-child { color: var(--fg); font-weight: 500; }
.dbody .faq summary { font-size: 15.5px; }
.dnext { display: flex; gap: 10px; margin-top: 40px; }
@media (max-width: 1100px) { .docs { grid-template-columns: 200px minmax(0, 1fr); gap: 40px; } .dtoc { display: none; } }
@media (max-width: 760px) {
  .docs { grid-template-columns: 1fr; padding-top: 12px; gap: 16px; }
  .dnav { position: sticky; top: 64px; z-index: 15; background: var(--bg); margin: 0 -16px; padding: 8px 16px; border-bottom: 1px solid var(--line); }
  .dnav-in { position: static; display: flex; gap: 4px; overflow-x: auto; max-height: none; scrollbar-width: none; }
  .dgroup { display: contents; } .dgroup h5 { display: none; }
  .dgroup a { white-space: nowrap; margin: 0; font-size: 13px; }
  .cards3 { grid-template-columns: 1fr; }
  .dbody h1 { font-size: 32px; }
}
.hero-meta div > span { font-size: 13px; color: var(--fg3); }
.hero-meta b span { font: inherit; color: inherit; }
.docs > * { min-width: 0; }
.dnav, .dtoc { position: sticky; top: 88px; align-self: start; }
.dnav-in, .dtoc-in { position: static; }
.fnode b span { font-size: inherit; color: inherit; }
@media (max-width: 760px) { .dnav { top: 64px; } .dbody h1, .dbody h2 { scroll-margin-top: 124px; } }

/* ---------- the main stage ---------- */
.mainstage { padding: 72px 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg2), var(--bg) 60%); }
.mainstage .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.ms-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.ms-head h2 { font-size: clamp(30px, 3.8vw, 46px); letter-spacing: -.04em; line-height: 1.05; font-weight: 600; margin: 0 0 6px; }
.ms-head p { margin: 0; color: var(--fg2); max-width: 560px; }
.ms-grid { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 20px; align-items: stretch; }
.ms-info { border: 1px solid var(--line); border-radius: 22px; background: var(--bg); padding: 20px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 24px 60px -30px rgba(0,0,0,.2); }
.ms-coin { display: flex; align-items: center; gap: 12px; }
.ms-coin .cav { width: 52px; height: 52px; border-radius: 14px; }
.ms-coin > div:nth-child(2) { flex: 1; min-width: 0; } .ms-coin b { font-size: 20px; letter-spacing: -.02em; display: block; } .ms-coin small { color: var(--fg3); }
.ms-mc { text-align: right; font-weight: 600; } .ms-mc small { display: block; font-weight: 400; font-size: 12.5px; }
.ms-ca { max-width: 100%; } .ms-ca span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.spot-card { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 16px; background: linear-gradient(135deg, #f5b40f1f, #f5b40f08); border: 1px solid #e0a80055; }
.spot-card small { display: block; font-size: 12px; color: var(--fg3); } .spot-card b { display: block; font-size: 19px; letter-spacing: -.02em; } .spot-card span { font-size: 12.5px; color: var(--fg2); }
.sc-av { position: relative; flex: none; }
.sc-av .av { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px #e0a800; }
.sc-av .sc-crown { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); color: #e0a800; }
.sc-av .sc-crown svg { width: 20px; height: 20px; fill: currentColor; }
.sc-av.empty { width: 52px; height: 52px; border-radius: 50%; border: 1.5px dashed #e0a800; display: grid; place-items: center; color: #e0a800; }
.sc-av.empty svg { width: 20px; height: 20px; fill: currentColor; }
.ms-stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 14px; }
.ms-stats div { padding: 12px; display: grid; } .ms-stats div + div { border-left: 1px solid var(--line); }
.ms-stats b { font-size: 18px; font-weight: 600; } .ms-stats span { font-size: 11.5px; color: var(--fg3); }
.ms-pay h5 { margin: 0 0 6px; font-size: 12.5px; font-weight: 600; }
.ms-pay a { display: grid; grid-template-columns: 22px 1fr auto auto; gap: 8px; align-items: center; padding: 6px 0; font-size: 13px; text-decoration: none; border-bottom: 1px solid var(--line); }
.ms-pay a:last-child { border-bottom: 0; } .ms-pay b { color: var(--green); font-weight: 600; } .ms-pay small { color: var(--fg3); font-size: 12px; }
.ms-btns { display: flex; gap: 8px; margin-top: auto; } .ms-btns .btn { flex: 1; }
.ms-party { min-width: 0; display: flex; } .ms-party .party { flex: 1; height: 640px; }
.bdg.ms { background: #f5b40f22; color: #b07c00; margin-left: 4px; vertical-align: 2px; }
@media (max-width: 960px) { .ms-grid { grid-template-columns: 1fr; } .ms-party .party { height: 560px; } .mainstage { padding: 48px 0; } }

/* the main stage queue */
.qbar { height: 4px; border-radius: 99px; background: var(--bg3); overflow: hidden; }
.qbar i { display: block; height: 100%; width: 0; background: #e0a800; transition: width .5s linear; }
.qmeta { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--fg2); flex-wrap: wrap; }
.qcount { display: inline-flex; gap: 5px; align-items: baseline; background: var(--bg2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 11px; }
.qcount b { font-size: 15px; color: var(--fg); }
.qnext b { color: var(--fg); font-weight: 500; }
.qjoin { display: grid; grid-template-columns: minmax(0, 1fr) 130px auto; gap: 6px; }
.qjoin input { border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; font-size: 13px; background: var(--bg); outline: 0; min-width: 0; }
.qjoin input:focus { border-color: var(--fg3); }
.qyou { display: flex; align-items: center; gap: 10px; font-size: 13.5px; padding: 8px 12px; border-radius: 12px; background: var(--bg2); border: 1px solid var(--line); }
.qyou.live { background: #f5b40f1a; border-color: #e0a80066; font-weight: 500; }
.qyou button[data-qforget] { margin-left: auto; border: 0; background: none; color: var(--fg3); font-size: 16px; }
.qclock { font-variant-numeric: tabular-nums; }
@media (max-width: 520px) { .qjoin { grid-template-columns: 1fr 1fr; } .qjoin input:first-child { grid-column: 1 / -1; } }

/* STAGE wordmark */
.logo .word { font-weight: 700; letter-spacing: .08em; font-size: 16px; }
.ms-grid > * { min-width: 0; }
.ms-ca { display: flex; min-width: 0; } .ms-ca span { flex: 1; }

/* ---------- the main stage page: one big open stage ---------- */
.navstage { display: inline-flex !important; align-items: center; gap: 7px; font-weight: 600; color: var(--fg) !important; }
.navstage.hidden { display: none !important; }
.bigstage { position: relative; overflow: hidden; background: radial-gradient(ellipse 60% 70% at 50% 0%, #2a2418 0%, #0c0c10 60%, #08080a 100%); color: #f4f1ea; min-height: 620px; }
.bs-lights i { position: absolute; top: -40px; width: 340px; height: 760px; transform-origin: 50% 0; background: linear-gradient(180deg, rgba(255,236,190,.28), rgba(255,236,190,0) 78%); filter: blur(14px); clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%); pointer-events: none; }
.bs-lights .l1 { left: calc(50% - 170px); }
.bs-lights .l2 { left: 6%; transform: rotate(-22deg); opacity: .55; animation: sweep 9s ease-in-out infinite alternate; }
.bs-lights .l3 { right: 6%; transform: rotate(22deg); opacity: .55; animation: sweep2 11s ease-in-out infinite alternate; }
@keyframes sweep { to { transform: rotate(-12deg); } } @keyframes sweep2 { to { transform: rotate(12deg); } }
.bs-curtain { position: absolute; top: 0; bottom: 0; width: 70px; background: repeating-linear-gradient(90deg, #3b0d12 0 14px, #52131a 14px 28px); opacity: .85; box-shadow: inset -20px 0 30px rgba(0,0,0,.6); }
.bs-curtain.left { left: 0; } .bs-curtain.right { right: 0; transform: scaleX(-1); }
.bs-floor { position: absolute; left: 50%; bottom: -120px; width: 1100px; height: 260px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,226,160,.22), rgba(255,226,160,.04) 55%, transparent 70%); border-top: 1px solid rgba(255,255,255,.08); }
.bs-in { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding-top: 22px; padding-bottom: 34px; min-height: 620px; }
.bs-top { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.bs-title { display: flex; align-items: center; gap: 10px; }
.bs-title b { letter-spacing: .14em; font-size: 14px; }
.bs-coin { color: #e0a800; font-weight: 600; font-size: 14px; }
.bs-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .08em; background: #e5484d; color: #fff; border-radius: 6px; padding: 3px 8px; }
.bs-live i { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }
.bs-aud { display: flex; gap: 16px; font-size: 13px; color: rgba(244,241,234,.7); } .bs-aud b { color: #fff; }
.bs-center { flex: 1; display: grid; justify-items: center; align-content: center; gap: 8px; padding: 26px 0 14px; text-align: center; }
.performer { position: relative; width: 200px; height: 200px; display: grid; place-items: center; }
.performer .ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.performer .ring circle { fill: none; stroke-width: 5; }
.performer .ring .rb { stroke: rgba(255,255,255,.1); }
.performer .ring .rf { stroke: #e0a800; stroke-linecap: round; transition: stroke-dashoffset .25s linear; }
.av.xl { width: 160px; height: 160px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.performer.talking .av.xl { animation: talk .5s ease-in-out infinite alternate; box-shadow: 0 0 0 6px rgba(16,163,127,.35), 0 0 60px rgba(16,163,127,.45); }
@keyframes talk { to { transform: scale(1.035); } }
.p-crown { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); color: #e0a800; filter: drop-shadow(0 4px 10px rgba(224,168,0,.5)); }
.p-crown svg { width: 34px; height: 34px; fill: currentColor; }
.p-eq { position: absolute; bottom: -26px; display: flex; gap: 4px; align-items: flex-end; height: 18px; opacity: .35; }
.p-eq i { width: 4px; height: 6px; border-radius: 3px; background: #10a37f; }
.performer.talking .p-eq { opacity: 1; } .performer.talking .p-eq i { animation: eqb .7s ease-in-out infinite; }
.performer.talking .p-eq i:nth-child(2) { animation-delay: .1s; } .performer.talking .p-eq i:nth-child(3) { animation-delay: .2s; } .performer.talking .p-eq i:nth-child(4) { animation-delay: .3s; } .performer.talking .p-eq i:nth-child(5) { animation-delay: .4s; }
@keyframes eqb { 50% { height: 18px; } }
.p-name { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; margin-top: 30px; text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.p-you { font-size: 13px; vertical-align: middle; background: #e0a800; color: #111; border-radius: 6px; padding: 2px 8px; letter-spacing: 0; }
.p-sub { font-size: 14px; color: rgba(244,241,234,.7); } .p-sub b { color: #fff; font-size: 16px; } .p-sub .mono { font-size: 12.5px; }
.bs-empty { display: grid; justify-items: center; gap: 6px; }
.bs-empty b { font-size: 26px; letter-spacing: -.02em; } .bs-empty span { color: rgba(244,241,234,.65); }
.micstand { width: 70px; height: 116px; margin-bottom: 12px; fill: none; stroke: rgba(244,241,234,.8); stroke-width: 6; stroke-linecap: round; }
.micstand rect { fill: rgba(244,241,234,.12); }
.bs-controls { display: flex; gap: 10px; min-height: 46px; align-items: center; margin-bottom: 22px; }
.bsb { height: 46px; padding: 0 22px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: #f4f1ea; color: #111; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.bsb svg, .bs-note svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bsb.gold { background: #e0a800; border-color: #e0a800; box-shadow: 0 0 30px rgba(224,168,0,.45); }
.bsb.on { background: #10a37f; border-color: #10a37f; color: #fff; }
.bsb.ghost { background: transparent; color: #f4f1ea; }
.bs-note { display: inline-flex; gap: 8px; align-items: center; color: rgba(244,241,234,.7); font-size: 14px; }
.bs-wings { width: 100%; max-width: 860px; display: flex; align-items: center; gap: 22px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 14px 18px; backdrop-filter: blur(6px); }
.w-count { display: grid; text-align: center; padding-right: 22px; border-right: 1px solid rgba(255,255,255,.12); }
.w-count b { font-size: 34px; font-weight: 700; line-height: 1; color: #e0a800; } .w-count span { font-size: 12px; color: rgba(244,241,234,.6); margin-top: 4px; }
.w-next { flex: 1; min-width: 0; } .w-next small { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(244,241,234,.55); }
.w-row { display: flex; gap: 8px; margin-top: 6px; overflow-x: auto; scrollbar-width: none; }
.w-p { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.07); border-radius: 999px; padding: 4px 12px 4px 4px; font-size: 13px; white-space: nowrap; }
.w-p.first { background: rgba(224,168,0,.18); outline: 1px solid rgba(224,168,0,.5); }
.w-more { display: grid; place-items: center; font-size: 13px; color: rgba(244,241,234,.7); padding: 0 8px; }
.w-none { font-size: 13.5px; color: rgba(244,241,234,.65); }
.bs-below { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 20px; padding-top: 24px; padding-bottom: 64px; align-items: start; }
.bs-below > * { min-width: 0; }
.bs-left { display: grid; gap: 16px; }
.bs-left .card { padding: 20px; } .bs-left h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; }
.bs-left .note { color: var(--fg2); font-size: 14px; margin: 0 0 12px; }
.bs-form { display: grid; gap: 8px; }
.bs-form input { border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; background: var(--bg); outline: 0; min-width: 0; }
.bs-form input:focus { border-color: var(--fg3); box-shadow: 0 0 0 3px var(--bg3); }
.bs-pos { display: flex; align-items: baseline; gap: 12px; margin: 8px 0 12px; } .bs-pos > b { font-size: 44px; font-weight: 700; letter-spacing: -.04em; color: #d99a00; } .bs-pos span { color: var(--fg2); }
.linkbtn { background: none; border: 0; padding: 0; color: var(--fg); text-decoration: underline; font-size: inherit; }
.bs-how .steps-list { margin: 10px 0 0; font-size: 14px; color: var(--fg2); } .bs-how .steps-list b { color: var(--fg); }
.bs-info { display: flex; flex-direction: column; gap: 14px; }
.bs-chat { position: sticky; top: 80px; height: calc(100vh - 100px); min-height: 560px; display: flex; }
.bs-chat .party { flex: 1; }
.party.chatonly [data-voice], .party.chatonly [data-stage] { display: none; }
@media (max-width: 960px) { .bs-below { grid-template-columns: 1fr; } .bs-chat { position: static; height: 560px; } .bs-curtain { width: 26px; } }
@media (max-width: 640px) { .bigstage, .bs-in { min-height: 540px; } .performer { width: 150px; height: 150px; } .av.xl { width: 118px; height: 118px; } .bs-wings { flex-direction: column; align-items: stretch; gap: 10px; } .w-count { border-right: 0; padding-right: 0; display: flex; gap: 8px; align-items: baseline; text-align: left; } .w-count b { font-size: 26px; } .bs-aud { gap: 10px; } }
/* the home page banner */
.msbanner { padding: 14px 0 0; }
.msb { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 16px; background: #0c0c10; color: #f4f1ea; text-decoration: none; font-size: 14px; overflow: hidden; box-shadow: 0 12px 30px -12px rgba(0,0,0,.35); transition: transform .15s; flex-wrap: wrap; }
.msb:hover { transform: translateY(-1px); }
.msb > b { letter-spacing: .1em; font-size: 13px; }
.msb-sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); }
.msb-q { margin-left: auto; color: rgba(244,241,234,.7); } .msb-q b { color: #e0a800; }
.msb-go { font-weight: 600; color: #e0a800; }
.bs-left { grid-template-columns: minmax(0, 1fr); }
.bs-left > * { min-width: 0; }
.bs-info .ms-ca { width: 100%; }
.msbanner { padding: 0 0 28px; }

/* the stage on the home page */
.homestage + .hero { display: none; }
.homestage.hidden + .hero { display: block; }
.homestage .bs-below { padding-bottom: 40px; }

.cav.pre { width: 52px; height: 52px; border-radius: 14px; background: #f5b40f22; color: #b07c00; font-size: 24px; font-weight: 700; }

/* hero when nothing is live yet */
.empty-demo { height: auto !important; }
.ed-body { display: grid; justify-items: center; text-align: center; gap: 10px; padding: 48px 28px 40px; }
.ed-body b { font-size: 20px; letter-spacing: -.02em; }
.ed-body p { margin: 0 0 8px; color: var(--fg2); max-width: 360px; font-size: 14.5px; }
.ed-body .crown { width: 48px; height: 48px; } .ed-body .crown svg { width: 22px; height: 22px; }

/* main stage earnings */
.bs-earn { display: grid; justify-items: center; margin: -2px 0 18px; }
.bs-earn:empty { display: none; }
.bs-earn small { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(244,241,234,.55); }
.bs-earn b { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; color: #3ddc97; letter-spacing: -.02em; text-shadow: 0 0 30px rgba(61,220,151,.35); line-height: 1.15; }
.bs-earn span { font-size: 12.5px; color: rgba(244,241,234,.6); }
.bs-last { display: flex; align-items: center; gap: 10px; max-width: 860px; width: 100%; margin: 0 0 12px; padding: 10px 16px; border-radius: 12px; background: rgba(224,168,0,.12); border: 1px solid rgba(224,168,0,.35); font-size: 13px; letter-spacing: .04em; color: rgba(244,241,234,.85); }
.bs-last b { color: #fff; } .bs-last b.num { color: #3ddc97; }
.bs-last .bl-ic { color: #e0a800; display: grid; } .bs-last .bl-ic svg { width: 16px; height: 16px; fill: currentColor; }
.bs-last.hidden { display: none; }
.bh-list { display: grid; margin-top: 8px; }
.bh { display: grid; grid-template-columns: 22px minmax(0, 1fr) auto auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.bh:last-child { border-bottom: 0; }
.bh-n { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.bh-n small { margin-left: 6px; color: var(--fg3); font-weight: 400; font-size: 11.5px; }
.bh-e { color: var(--green); font-weight: 600; } .bh-t { color: var(--fg3); font-size: 12px; }
@media (max-width: 640px) { .bs-last { font-size: 12px; letter-spacing: .02em; } }

/* =====================================================================================================
   v3: the stage fills the screen, with the chat as a full-height column on its right
   ===================================================================================================== */
.bigstage { height: calc(100dvh - 64px); min-height: 620px; max-height: 1080px; }
.bs-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 390px; height: 100%; }
.bs-main { display: flex; flex-direction: column; align-items: center; min-width: 0; min-height: 0; padding: 18px 32px 22px 96px; }
.bs-top { width: 100%; }
.bs-center { flex: 1; min-height: 0; padding: 12px 0 6px; }
.performer { width: 260px; height: 260px; }
.av.xl { width: 206px; height: 206px; }
.p-crown svg { width: 40px; height: 40px; } .p-crown { top: -22px; }
.p-name { font-size: clamp(34px, 4.4vw, 58px); margin-top: 34px; line-height: 1.05; }
.p-sub { font-size: 15px; margin-top: 4px; } .p-sub b { font-size: 18px; }
.bs-earn { margin: 6px 0 16px; } .bs-earn b { font-size: clamp(30px, 3.6vw, 44px); }
.bs-controls { margin-bottom: 16px; flex-wrap: wrap; justify-content: center; }
.bsb:disabled { opacity: .55; cursor: default; }
.bs-last { max-width: 980px; }
/* the performer's camera */
.pv { position: relative; width: min(100%, 760px); aspect-ratio: 16 / 9; max-height: 100%; border-radius: 22px; overflow: hidden; background: #000; border: 3px solid #e0a800; box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(224,168,0,.18); transition: box-shadow .15s; }
.pv video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv.mine video { transform: scaleX(-1); }
.pv.talking { box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 4px rgba(16,163,127,.55), 0 0 70px rgba(16,163,127,.45); }
.pv-crown { position: absolute; top: 12px; left: 14px; color: #e0a800; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.pv-crown svg { width: 30px; height: 30px; fill: currentColor; }
.pv-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: rgba(0,0,0,.45); }
.pv-bar i { display: block; height: 100%; width: 100%; background: #e0a800; transition: width .25s linear; }
.bs-center:has(.pv) .p-name { margin-top: 14px; font-size: clamp(26px, 3vw, 38px); }
/* the wings: count, who's next, and the join form */
.bs-wings { width: 100%; max-width: 1060px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 20px; align-items: center; }
.w-join { min-width: 0; }
.wj-form { display: flex; gap: 8px; align-items: center; }
.wj-form input { height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); color: #f4f1ea; padding: 0 16px; outline: 0; min-width: 0; font-size: 14px; }
.wj-form input::placeholder { color: rgba(244,241,234,.45); }
.wj-form input:focus { border-color: #e0a800; background: rgba(255,255,255,.1); }
.wj-form input[data-qw] { width: 250px; } .wj-form input[data-qn] { width: 130px; }
.wj-form .bsb { height: 44px; padding: 0 18px; font-size: 14px; white-space: nowrap; }
.wj-q { display: flex; align-items: baseline; gap: 10px; color: rgba(244,241,234,.75); font-size: 13.5px; }
.wj-q small { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(244,241,234,.5); }
.wj-q > b { font-size: 30px; color: #e0a800; font-weight: 700; line-height: 1; } .wj-q span b { color: #fff; }
.wj-q .linkbtn { color: rgba(244,241,234,.6); font-size: 12.5px; }
.wj-on { display: flex; align-items: center; gap: 8px; color: #e0a800; font-weight: 600; } .wj-on svg { width: 20px; height: 20px; fill: currentColor; }
/* the chat column, in the stage's dark theme */
.bs-side { --bg: #111115; --bg2: rgba(255,255,255,.045); --bg3: rgba(255,255,255,.09); --line: rgba(255,255,255,.09); --line2: rgba(255,255,255,.18);
  --fg: #f4f1ea; --fg2: rgba(244,241,234,.74); --fg3: rgba(244,241,234,.48); --pri: #f4f1ea; --on-pri: #111; --shadow: 0 10px 30px rgba(0,0,0,.5);
  color: var(--fg); background: rgba(12,12,15,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-left: 1px solid rgba(255,255,255,.08); min-height: 0; display: flex; }
.chat { position: relative; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.chd { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.chd h3 { margin: 0; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.chd .herec { font-size: 13px; color: var(--fg3); } .chd .sp { flex: 1; }
.namechip { border: 1px solid var(--line2); background: transparent; color: var(--fg2); border-radius: 999px; padding: 4px 11px; font-size: 12.5px; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.namechip:hover { color: var(--fg); border-color: var(--fg3); }
.chat .msgs { flex: 1; min-height: 0; }
.chat .m .tx { font-size: 14.5px; }
.chat .cbox { background: rgba(255,255,255,.06); }
.chat .comp { border-top: 1px solid var(--line); }
.chat .newpill { background: #1b1b20; color: var(--fg); border-color: var(--line2); }
.chat .payl { background: rgba(224,168,0,.12); color: var(--fg2); }
.chat .bdg.h { background: transparent; border-color: var(--line2); color: var(--fg3); }
/* below the stage: one compact row */
.bs-below { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-top: 20px; padding-bottom: 20px; }
.bs-below .card { padding: 18px; }
.bs-below h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.bs-below .note { color: var(--fg2); font-size: 14px; margin: 0 0 10px; }
.bs-below .steps-list { font-size: 14px; color: var(--fg2); margin: 6px 0 0; gap: 10px; } .bs-below .steps-list b { color: var(--fg); }
.bs-info { display: flex; flex-direction: column; gap: 12px; }
#faq.block { padding: 40px 0 64px; }
@media (max-width: 1100px) { .bs-grid { grid-template-columns: minmax(0, 1fr) 340px; } .bs-main { padding: 16px 20px 18px 40px; } .wj-form input[data-qw] { width: 190px; } .wj-form input[data-qn] { width: 100px; } }
@media (max-width: 980px) {
  .bigstage { height: auto; max-height: none; }
  .bs-grid { grid-template-columns: 1fr; }
  .bs-main { padding: 16px 16px 20px; min-height: calc(100svh - 64px); }
  .bs-side { height: 72svh; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .bs-wings { grid-template-columns: auto minmax(0, 1fr); } .w-join { grid-column: 1 / -1; }
  .wj-form input[data-qw] { flex: 1; width: auto; } .wj-form input[data-qn] { width: 120px; }
  .bs-below { grid-template-columns: 1fr; }
  .bs-curtain { display: none; }
}
@media (max-width: 560px) {
  .performer { width: 190px; height: 190px; } .av.xl { width: 150px; height: 150px; }
  .wj-form { flex-wrap: wrap; } .wj-form input[data-qw] { flex: 1 1 100%; } .wj-form input[data-qn] { flex: 1; width: auto; } .wj-form .bsb { flex: 1; }
  .bs-wings { gap: 12px; padding: 12px; } .w-count { border-right: 0; padding-right: 0; }
  .bs-controls .bsb { height: 42px; padding: 0 16px; font-size: 14px; }
}
.bs-center { width: 100%; justify-items: center; }
.pv { width: min(100%, 720px); }
.chat .cnote { justify-content: flex-start; gap: 4px; flex-wrap: wrap; }
.chat .cnote b { margin: 0 2px; }
