/* ════════════════════════════════════════════════════════════
 * OmniChat — "Live Channel" — vibrant, interactive, streamer-native
 * ════════════════════════════════════════════════════════════ */
:root {
  --bg: #09070f;
  --bg2: #100b1c;
  --ink: #f6f2ff;
  --ink2: #c5bcdb;
  --ink3: #8b82a8;
  --line: rgba(255,255,255,.10);
  --line2: rgba(255,255,255,.16);

  --purple: #9147ff;
  --purple2: #b885ff;
  --pink: #ff5b7f;          /* reserved: live / rec accent only */
  --cyan: #2ee6e6;

  --tw: #a877ff;
  --kk: #53fc18;
  --yt: #ff5b5b;
  --tt: #ff4d8d;

  /* calmer, purple-forward brand gradient (less hot-pink) */
  --grad: linear-gradient(105deg, #7c3aed 0%, #9147ff 52%, #a855f7 100%);
  --grad-cool: linear-gradient(120deg, #7c3aed, #9147ff);
  --glow: rgba(145,71,255,.5);

  --sans: 'Archivo', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --wrap: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.channel {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.55; letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
.channel a { color: inherit; text-decoration: none; }
.channel img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kick, .kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--purple2); }

/* ── animated background mesh ─────────────────────────────── */
.bg-mesh { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-mesh::before, .bg-mesh::after {
  content: ''; position: absolute; width: 60vw; height: 60vw; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.bg-mesh::before { background: radial-gradient(circle, #9147ff, transparent 60%); top: -20vw; right: -10vw; opacity: .42; animation: float1 18s ease-in-out infinite; }
.bg-mesh::after { background: radial-gradient(circle, #7c3aed, transparent 60%); bottom: -25vw; left: -10vw; opacity: .2; animation: float2 22s ease-in-out infinite; }
@keyframes float1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-6vw,6vw) scale(1.12);} }
@keyframes float2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(6vw,-4vw) scale(1.1);} }
body.channel > *:not(.bg-mesh) { position: relative; z-index: 1; }

/* faint global grid */
body.channel::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
}

/* ── nav (injected) ───────────────────────────────────────── */
.channel .site-nav { position: sticky; top: 0; z-index: 60; background: rgba(9,7,15,.72); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.channel .site-nav .nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; height: 66px; display: flex; align-items: center; gap: 26px; }
.channel .nav-logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 900; font-size: 19px; letter-spacing: -.02em; margin-right: auto; }
.channel .nav-logo img { width: 24px; height: 24px; }
.channel .nav-logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.channel .nav-links { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.channel .nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink2); }
.channel .nav-links a:hover, .channel .nav-links a.active { color: var(--ink); }
.channel .nav-links .nav-cta { background: var(--grad); color: #fff; padding: 9px 18px; border-radius: 10px; box-shadow: 0 6px 22px -4px var(--glow); }
.channel .nav-hamburger { display: none; background: none; border: 0; color: #fff; font-size: 22px; }

/* ── buttons ──────────────────────────────────────────────── */
.btn-golive {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: 0;
  font-family: var(--sans); font-size: 17px; font-weight: 800; letter-spacing: -.01em;
  color: #fff; background: var(--grad); padding: 15px 26px; border-radius: 14px;
  box-shadow: 0 12px 34px -8px var(--glow), 0 0 0 1px rgba(255,255,255,.12) inset;
  transition: transform .15s var(--ease), box-shadow .2s, filter .2s;
}
.btn-golive:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 18px 46px -8px var(--glow), 0 0 0 1px rgba(255,255,255,.2) inset; }
.btn-golive .gl-ico { font-size: 13px; }
.btn-golive.sm { font-size: 15px; padding: 12px 20px; }
.btn-golive.lg { font-size: 19px; padding: 18px 34px; }
.btn-golive.is-live { background: #16101f; box-shadow: 0 0 0 2px var(--pink) inset, 0 0 28px -4px var(--pink); animation: livepulse 1.6s infinite; }
@keyframes livepulse { 0%,100%{ box-shadow: 0 0 0 2px var(--pink) inset, 0 0 22px -6px var(--pink);} 50%{ box-shadow: 0 0 0 2px var(--pink) inset, 0 0 40px 0 var(--pink);} }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: var(--ink); padding: 14px 22px; border-radius: 14px; border: 1px solid var(--line2); transition: border-color .2s, color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--purple2); color: var(--purple2); background: rgba(145,71,255,.08); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { padding: clamp(36px,5vw,64px) 0 clamp(40px,5vw,70px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px,4vw,60px); align-items: center; }

.nowtag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink2); background: rgba(145,71,255,.12); border: 1px solid rgba(145,71,255,.34); padding: 6px 13px; border-radius: 999px; }
.nowtag b { color: #fff; }
.rec { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px var(--pink); animation: blink 1.3s infinite; }
@keyframes blink { 0%,60%{opacity:1} 61%,100%{opacity:.35} }

.hero h1 { font-size: clamp(42px, 6.2vw, 86px); font-weight: 900; line-height: .96; letter-spacing: -.04em; margin: 22px 0 0; }
.hero .sub { color: var(--ink2); font-size: clamp(17px,1.5vw,20px); margin: 20px 0 0; max-width: 30ch; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin: 30px 0 0; }
.toggles { display: flex; gap: 9px; flex-wrap: wrap; margin: 26px 0 0; }
.chip { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: var(--sans); font-weight: 700; font-size: 13.5px; color: var(--ink3); background: rgba(255,255,255,.03); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; transition: all .18s var(--ease); }
.chip i { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.chip[data-p=tw]{ --c:var(--tw);} .chip[data-p=kk]{ --c:var(--kk);} .chip[data-p=yt]{ --c:var(--yt);} .chip[data-p=tt]{ --c:var(--tt);}
.chip i { background: var(--c); }
.chip.on { color: var(--ink); border-color: var(--c); background: color-mix(in srgb, var(--c) 14%, transparent); box-shadow: 0 0 16px -6px var(--c); }
.chip:not(.on) { opacity: .55; }
.chip:not(.on) i { box-shadow: none; filter: grayscale(.6); }
.chip.on i { box-shadow: 0 0 10px var(--c); }
.worksline { font-family: var(--mono); font-size: 12.5px; color: var(--ink3); margin: 24px 0 0; }
.worksline b { color: var(--ink2); }

/* ── stage: player + chat ─────────────────────────────────── */
.stage { display: flex; flex-direction: column; gap: 16px; }
.player { border-radius: 18px; overflow: hidden; border: 1px solid var(--line2); background: #0d0a16; box-shadow: 0 40px 90px -40px #000, 0 0 60px -30px var(--glow); }
.screen { position: relative; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(125deg, #2a1259, #120a2e 40%, #3a1430 100%); background-size: 200% 200%; }
.player.is-live .screen { animation: screenshift 8s ease infinite; }
@keyframes screenshift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.screen-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%); }
.screen::after { content: ''; position: absolute; left: 0; right: 0; top: -30%; height: 30%; background: linear-gradient(180deg, transparent, rgba(255,255,255,.06), transparent); }
.player.is-live .screen::after { animation: sweep 4s linear infinite; }
@keyframes sweep { from{top:-30%} to{top:120%} }
.brandmark { position: absolute; top: 14px; left: 16px; font-weight: 800; font-size: 14px; color: rgba(255,255,255,.5); letter-spacing: -.01em; }
.cam { position: absolute; right: 14px; bottom: 14px; width: 64px; height: 64px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2); background: radial-gradient(circle at 40% 35%, #ff8ad0, #7a2bd6 70%); box-shadow: 0 8px 24px -8px #000; }
.bigplay { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%; border: 0; cursor: pointer; font-size: 26px; color: #fff; background: var(--grad); box-shadow: 0 0 0 8px rgba(145,71,255,.18), 0 14px 40px -8px var(--glow); transition: transform .2s var(--ease); animation: breathe 2.4s ease-in-out infinite; }
.bigplay:hover { transform: scale(1.08); }
.player.is-live .bigplay { opacity: 0; pointer-events: none; transform: scale(.4); transition: all .4s; }
@keyframes breathe { 0%,100%{ box-shadow: 0 0 0 8px rgba(145,71,255,.16), 0 14px 40px -8px var(--glow);} 50%{ box-shadow: 0 0 0 14px rgba(145,71,255,.07), 0 14px 50px -6px var(--glow);} }
.player-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; font-family: var(--mono); font-size: 12.5px; color: var(--ink2); border-top: 1px solid var(--line); }
.live-badge { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; letter-spacing: .08em; }
.live-badge .rec { background: var(--ink3); box-shadow: none; animation: none; }
.live-badge.on { color: #fff; } .live-badge.on .rec { background: var(--pink); box-shadow: 0 0 10px var(--pink); animation: blink 1.3s infinite; }
.viewers { color: var(--ink2); } .viewers b { color: #fff; }
.dests { margin-left: auto; color: var(--purple2); }

.chatcard { border: 1px solid var(--line); border-radius: 18px; background: rgba(18,12,28,.72); backdrop-filter: blur(8px); overflow: hidden; box-shadow: 0 30px 70px -44px #000; }
.chat-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink2); }
.chat-head .rec { display: inline-block; margin-right: 7px; vertical-align: 1px; }
.chat-head .mps b { color: var(--purple2); }
.feed { height: 232px; overflow: hidden; padding: 8px 0; display: flex; flex-direction: column; justify-content: flex-end; }
.feed .m { display: flex; align-items: baseline; gap: 9px; padding: 5px 16px; animation: msgin .35s var(--ease) both; }
@keyframes msgin { from{opacity:0; transform: translateY(8px);} to{opacity:1; transform:none;} }
.feed .m .d { width: 8px; height: 8px; border-radius: 50%; flex: none; transform: translateY(2px); }
.feed .m .d.tw{background:var(--tw);box-shadow:0 0 8px var(--tw)} .feed .m .d.kk{background:var(--kk);box-shadow:0 0 8px var(--kk)} .feed .m .d.yt{background:var(--yt);box-shadow:0 0 8px var(--yt)} .feed .m .d.tt{background:var(--tt);box-shadow:0 0 8px var(--tt)} .feed .m .d.you{background:#fff;box-shadow:0 0 8px #fff}
.feed .m .u { font-weight: 700; font-size: 14px; }
.feed .m .t { color: var(--ink2); font-size: 14px; }
.feed .m .em { font-size: 16px; }
.feed .m.you .u { color: #fff; }
.feed .m.you .t::after { content: ' · sent to all'; color: var(--purple2); font-family: var(--mono); font-size: 10px; }
.feed .alert { margin: 5px 12px; padding: 9px 13px; border-radius: 11px; background: var(--grad); color: #fff; font-weight: 700; font-size: 13.5px; box-shadow: 0 8px 26px -8px var(--glow); animation: pop .4s var(--ease) both; }
@keyframes pop { from{opacity:0; transform: scale(.94);} to{opacity:1; transform:none;} }
.chat-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.chat-input input { flex: 1; background: rgba(255,255,255,.04); border: 1px solid var(--line2); border-radius: 10px; padding: 11px 14px; color: var(--ink); font-family: var(--sans); font-size: 14px; outline: none; }
.chat-input input:focus { border-color: var(--purple2); box-shadow: 0 0 0 3px rgba(145,71,255,.2); }
.chat-input button { border: 0; cursor: pointer; background: var(--grad); color: #fff; width: 44px; border-radius: 10px; font-size: 16px; }
.emote-bar { display: flex; gap: 6px; padding: 0 14px 14px; flex-wrap: wrap; }
.emote-bar button { cursor: pointer; border: 1px solid var(--line); background: rgba(255,255,255,.03); border-radius: 9px; padding: 6px 10px; font-size: 15px; font-weight: 700; color: var(--ink2); transition: transform .12s, border-color .15s; }
.emote-bar button:hover { transform: translateY(-2px) scale(1.1); border-color: var(--purple2); }

/* floating emotes */
#emote-layer { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
#emote-layer .fly { position: fixed; font-size: 26px; font-weight: 800; will-change: transform, opacity; animation: fly 1.8s var(--ease) forwards; }
@keyframes fly { 0%{opacity:0; transform: translateY(0) scale(.6);} 12%{opacity:1;} 100%{opacity:0; transform: translateY(-220px) scale(1.3) rotate(var(--r,8deg));} }

/* moving banner (marquee) */
.ticker { margin-top: clamp(34px,4vw,56px); position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(145,71,255,.10), rgba(124,58,237,.04)); border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }
.ticker::before, .ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.ticker-run { display: inline-flex; gap: 38px; white-space: nowrap; padding: 15px 0; font-family: var(--mono); font-size: 15px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink2); animation: marq 26s linear infinite; }
.ticker-run b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
@keyframes marq { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ── BAND / FANOUT ────────────────────────────────────────── */
.band { padding: clamp(56px,8vw,110px) 0; }
.band-head { max-width: 760px; }
.band-head.center { margin: 0 auto; text-align: center; }
.band-head h2 { font-size: clamp(28px,4vw,52px); font-weight: 900; letter-spacing: -.03em; line-height: 1.02; margin: 12px 0 0; }
.fanout { margin-top: 48px; display: grid; grid-template-columns: 1fr 200px 1fr; align-items: center; gap: 0; }
.fan-src { display: flex; justify-content: flex-end; }
.fan-src-inner { display: flex; flex-direction: column; gap: 4px; padding: 22px 26px; border-radius: 16px; border: 1px solid var(--line2); background: linear-gradient(180deg, #1b1430, #120c1f); box-shadow: 0 0 50px -20px var(--glow); }
.fan-src-inner b { font-family: var(--mono); letter-spacing: .08em; font-size: 13px; }
.fan-src-inner span { color: var(--ink3); font-size: 13px; }
.fan-wires { width: 200px; height: 220px; }
.fan-wires path { fill: none; stroke: rgba(145,71,255,.4); stroke-width: 2; stroke-dasharray: 7 9; animation: dash 1.2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -32; } }
.fan-outs { display: flex; flex-direction: column; gap: 12px; max-width: 300px; }
.node { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 13px; border: 1px solid var(--line); background: rgba(255,255,255,.03); transition: all .25s var(--ease); }
.node[data-p=tw]{--c:var(--tw)} .node[data-p=kk]{--c:var(--kk)} .node[data-p=yt]{--c:var(--yt)} .node[data-p=tt]{--c:var(--tt)}
.node i { width: 11px; height: 11px; border-radius: 50%; background: var(--c); }
.node span { font-weight: 700; }
.node b { margin-left: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--kk); }
.node.off { opacity: .35; filter: grayscale(.7); }
.node.off b { color: var(--ink3); }
.node.on { border-color: var(--c); background: color-mix(in srgb, var(--c) 12%, transparent); box-shadow: 0 0 24px -10px var(--c); }
.node.on i { box-shadow: 0 0 12px var(--c); }

/* ── FEATURES ─────────────────────────────────────────────── */
.feats { padding: clamp(40px,5vw,80px) 0; }
.feat-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feat { padding: 30px 28px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.feat:hover { transform: translateY(-6px); border-color: var(--purple2); box-shadow: 0 30px 60px -34px var(--glow); }
.feat-ico { font-size: 30px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: var(--grad); box-shadow: 0 10px 30px -10px var(--glow); }
.feat h3 { font-size: 21px; font-weight: 800; margin: 18px 0 8px; }
.feat p { color: var(--ink2); font-size: 14.5px; margin: 0; }
.feat .more { display: inline-block; margin-top: 16px; color: var(--purple2); font-weight: 700; font-size: 14.5px; }
.feat .more:hover { letter-spacing: .01em; }

/* ── PRICING ──────────────────────────────────────────────── */
.pricing { padding: clamp(40px,5vw,80px) 0; }
.price-grid { margin-top: 46px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 880px; margin-left: auto; margin-right: auto; }
.pcard { position: relative; padding: 32px 30px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.pcard.hot { border-color: transparent; background: linear-gradient(180deg, rgba(145,71,255,.16), rgba(255,61,166,.06) 70%, transparent); box-shadow: 0 0 0 1px var(--line2) inset, 0 30px 70px -36px var(--glow); }
.pc-tag { position: absolute; top: -11px; right: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 4px 11px; border-radius: 999px; }
.pc-name { font-family: var(--mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink2); }
.pc-amt { margin: 12px 0 4px; font-size: 17px; color: var(--ink2); } .pc-amt b { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.pc-sub { color: var(--ink3); font-size: 13px; }
.pcard ul { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 10px; }
.pcard li { position: relative; padding-left: 24px; color: var(--ink2); font-size: 14.5px; }
.pcard li::before { content: '✓'; position: absolute; left: 0; color: var(--kk); font-weight: 900; }
.pcard li b { color: #fff; }
.pcard .btn-ghost, .pcard .btn-golive { width: 100%; justify-content: center; }

/* ── pricing-page extras (cost cards, compare, faq) ───────── */
.pbig { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.pbig .n { font-size: clamp(50px,9vw,86px); font-weight: 900; letter-spacing: -.04em; line-height: .9; }
.pbig .u { font-family: var(--mono); color: var(--purple2); font-size: 15px; }
.pbig .c { font-size: 14px; color: var(--ink2); max-width: 260px; } .pbig .c b { color: #fff; }
.costs { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; }
.cost { padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.cost .h { font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink3); }
.cost .v { font-size: 21px; font-weight: 800; margin: 8px 0 4px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cost .s { font-size: 13.5px; color: var(--ink2); }
.cmp-wrap { margin-top: 30px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.cmp { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
.cmp th, .cmp td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.cmp thead th { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink3); font-weight: 500; }
.cmp thead th.us { color: var(--purple2); } .cmp .us { background: rgba(145,71,255,.10); } .cmp td.us { color: #fff; }
.cmp td:first-child { color: var(--ink3); } .cmp tr:last-child td { border-bottom: 0; }
.faq { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq details { border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); padding: 2px 20px; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; font-size: 15.5px; display: flex; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: '+'; color: var(--purple2); font-family: var(--mono); font-size: 18px; }
.faq details[open] summary::before { content: '–'; }
.faq p { color: var(--ink2); font-size: 14.5px; margin: 0 0 18px; padding-left: 24px; }

/* interactive cost calculator */
.calc { border: 1px solid var(--line2); border-radius: 18px; background: rgba(18,12,28,.7); padding: 26px; box-shadow: 0 30px 70px -40px #000, 0 0 56px -28px var(--glow); }
.calc-head { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink2); margin-bottom: 8px; }
.calc label { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink2); margin: 16px 0 8px; }
.calc label b { color: #fff; }
.calc input[type=range] { width: 100%; accent-color: var(--purple); height: 4px; }
.calc-out { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 9px; }
.calc-out span { color: var(--ink3); font-size: 14px; }
.calc-out b { font-size: 42px; font-weight: 900; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-note { margin-top: 6px; font-family: var(--mono); font-size: 12px; color: var(--ink3); }

/* generic source/feature list (streaming, chat) */
.list { border: 1px solid var(--line); border-radius: 16px; background: rgba(18,12,28,.6); overflow: hidden; }
.list .lh { padding: 12px 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink2); }
.list .li { display: flex; align-items: center; gap: 11px; padding: 13px 16px; color: var(--ink2); font-size: 14.5px; }
.list .li + .li { border-top: 1px solid var(--line); }
.list .li .d { width: 9px; height: 9px; border-radius: 50%; background: var(--ink3); }
.list .li.on .d { background: var(--kk); box-shadow: 0 0 9px var(--kk); }
.list .li b { margin-left: auto; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink3); }
.list .li.on b { color: var(--kk); }

/* ── END CTA ──────────────────────────────────────────────── */
.endcta { text-align: center; padding: clamp(80px,11vw,150px) 0; position: relative; }
.endcta::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 120% at 50% 0%, rgba(145,71,255,.26), transparent 60%); }
.endcta h2 { font-size: clamp(32px,5.4vw,64px); font-weight: 900; letter-spacing: -.035em; line-height: 1; }
.endcta p { color: var(--ink2); margin: 18px 0 30px; }

/* ── footer (injected) ────────────────────────────────────── */
.channel .site-footer { border-top: 1px solid var(--line); background: rgba(255,255,255,.015); }
.channel .site-footer .footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 28px 26px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.channel .site-footer .footer-links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.channel .site-footer .footer-links a { font-size: 13px; color: var(--ink3); } .channel .site-footer .footer-links a:hover { color: var(--ink); }
.channel .site-footer .footer-copy { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink3); }

/* ── scroll-reveal: strong, late-triggering, varied per section ───
 * cubic-bezier(.16,1,.3,1) = ease-out-expo: a big, decisive settle. */
.js .reveal {
  opacity: 0; transform: translateY(90px);
  transition: opacity .8s ease, transform 1s cubic-bezier(.16,1,.3,1), filter .8s ease;
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none !important; filter: none !important; }

/* per-section flavors (assigned by channel.js) */
.js .reveal.r-left  { transform: translateX(-110px); }
.js .reveal.r-right { transform: translateX(110px); }
.js .reveal.r-up    { transform: translateY(110px); }
.js .reveal.r-scale { transform: scale(.8); }
.js .reveal.r-blur  { transform: translateY(60px); filter: blur(16px); }
.js .reveal.r-rise  { transform: translateY(120px) scale(.96); }

/* staggered children so grids cascade in one by one */
.js .feat-grid .feat:nth-child(2) { transition-delay: .14s; }
.js .feat-grid .feat:nth-child(3) { transition-delay: .28s; }
.js .price-grid .pcard:nth-child(2) { transition-delay: .14s; }
.js .fan-outs .node { opacity: 0; transform: translateX(80px); transition: opacity .6s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.js .fanout.in .node { opacity: 1; transform: none; }
.js .fanout.in .node:nth-child(2) { transition-delay: .12s; }
.js .fanout.in .node:nth-child(3) { transition-delay: .24s; }
.js .fanout.in .node:nth-child(4) { transition-delay: .36s; }

/* ── responsive ───────────────────────────────────────────── */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .sub { max-width: 46ch; }
  .feat-grid { grid-template-columns: 1fr; }
  .fanout { grid-template-columns: 1fr; gap: 22px; justify-items: center; }
  .fan-src { justify-content: center; } .fan-wires { display: none; }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* Lift the whole nav above page content: every body child gets z-index:1, so
     #site-nav and the hero tie and the (later) hero painted over the menu's
     background. Raising #site-nav lets the overlay menu paint over content. */
  #site-nav { position: relative; z-index: 90; }
  .channel .site-nav { -webkit-backdrop-filter: none; backdrop-filter: none; background: #0c0a14; }
  .channel .nav-hamburger { display: block; }
  .channel .nav-links {
    position: absolute; top: 66px; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 2px;
    background: #0c0a14; border-bottom: 1px solid var(--line2);
    box-shadow: 0 26px 48px -14px rgba(0,0,0,.85); padding: 10px 22px 16px;
  }
  .channel .nav-links.open { display: flex; }
  .channel .nav-links a { padding: 13px 4px; font-size: 16px; border-radius: 9px; color: var(--ink); }
  .channel .nav-links a:hover, .channel .nav-links a.active { background: rgba(255,255,255,.05); }
  .channel .nav-links .nav-cta { margin-top: 8px; text-align: center; }
}
/* Honor reduced-motion only for the heavy, continuous background loops.
 * Scroll-reveal, the marquee banner, the live chat and counters still play
 * (this is a streaming product; the motion is the point). */
@media (prefers-reduced-motion: reduce) {
  .bg-mesh::before, .bg-mesh::after, .player.is-live .screen, .player.is-live .screen::after, .bigplay { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════
 * AUTH + UTILITY pages (login, reset, verify, claim, desktop)
 * Markup + IDs are unchanged; these classes restyle them on-brand.
 * ════════════════════════════════════════════════════════════ */
.channel .hidden { display: none !important; }

.channel .login-wrapper, .channel .token-page, .channel .claim-wrap {
  min-height: calc(100vh - 66px); display: flex; align-items: center; justify-content: center;
  padding: 48px 22px 72px;
}
.channel .claim-wrap { flex-direction: column; align-items: stretch; max-width: 560px; margin: 0 auto; min-height: auto; padding-top: 72px; }

.channel .login-box, .channel .token-box {
  width: 100%; max-width: 420px; padding: 34px 32px;
  background: rgba(18,12,28,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line2); border-radius: 20px;
  box-shadow: 0 40px 90px -44px #000, 0 0 60px -30px var(--glow); text-align: center;
}
.channel .login-box h1, .channel .token-box h1 {
  font-size: 26px; font-weight: 900; letter-spacing: -.02em; margin: 0 0 18px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.channel .login-box label, .channel .token-box label {
  display: block; text-align: left; font-size: 12.5px; font-weight: 600; color: var(--ink2);
  margin: 14px 0 6px; font-family: var(--mono); letter-spacing: .04em;
}
.channel .login-box .optional { color: var(--ink3); font-weight: 400; }
.channel .login-box input, .channel .token-box input {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--line2); border-radius: 11px;
  padding: 12px 14px; color: var(--ink); font-family: var(--sans); font-size: 15px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.channel .login-box input:focus, .channel .token-box input:focus { border-color: var(--purple2); box-shadow: 0 0 0 3px rgba(145,71,255,.2); }
.channel .login-box button, .channel .token-box button {
  width: 100%; margin-top: 18px; cursor: pointer; border: 0; color: #fff;
  font-family: var(--sans); font-size: 16px; font-weight: 800; letter-spacing: -.01em;
  background: var(--grad); padding: 13px 18px; border-radius: 12px;
  box-shadow: 0 10px 28px -8px var(--glow); transition: transform .15s var(--ease), filter .2s;
}
.channel .login-box button:hover, .channel .token-box button:hover { transform: translateY(-1px); filter: brightness(1.08); }

.channel .oauth-buttons { display: flex; flex-direction: column; gap: 10px; }
.channel .oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer;
  font-weight: 700; font-size: 14.5px; color: var(--ink); text-decoration: none;
  background: rgba(255,255,255,.04); border: 1px solid var(--line2); border-radius: 12px; padding: 12px 16px;
  transition: border-color .15s, background .15s, transform .12s;
}
.channel .oauth-btn:hover { transform: translateY(-1px); }
.channel .oauth-twitch:hover { border-color: var(--tw); background: rgba(168,119,255,.12); }
.channel .oauth-google:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.channel .oauth-kick:hover  { border-color: var(--kk); background: rgba(83,252,24,.10); }
.channel .oauth-qr:hover    { border-color: var(--purple2); background: rgba(145,71,255,.12); }
.channel .oauth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0 14px; color: var(--ink3); font-size: 12.5px; }
.channel .oauth-divider::before, .channel .oauth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.channel .small-link, .channel .toggle a, .channel .login-links a { color: var(--purple2); cursor: pointer; font-weight: 600; font-size: 14px; }
.channel .small-link:hover, .channel .toggle a:hover { color: var(--purple); }
.channel .login-links { margin-top: 12px; text-align: center; }
.channel .toggle { margin-top: 16px; font-size: 14px; color: var(--ink3); }
.channel .totp-desc, .channel .forgot-desc { color: var(--ink2); font-size: 14px; margin: 0 0 6px; }
.channel .error-msg, .channel .success-msg { display: none; font-size: 13.5px; border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; text-align: left; }
.channel .error-msg { background: rgba(255,91,127,.12); border: 1px solid rgba(255,91,127,.4); color: #ffb3c3; }
.channel .success-msg { background: rgba(83,252,24,.10); border: 1px solid rgba(83,252,24,.4); color: #b6ffa0; }
.channel .error-msg:not(:empty), .channel .success-msg:not(:empty) { display: block; }
.channel .desktop-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple2); margin-bottom: 14px; }
.channel .status-icon { font-size: 40px; display: block; margin: 8px 0 12px; }
.channel .status-icon.success { color: var(--kk); } .channel .status-icon.error { color: var(--pink); }
.channel .token-box p { color: var(--ink2); }
.channel .token-box a[href] { color: var(--purple2); font-weight: 600; }

/* claim page bits */
.channel .claim-spinner { width: 30px; height: 30px; border: 3px solid rgba(145,71,255,.25); border-top-color: var(--purple); border-radius: 50%; animation: claim-spin .8s linear infinite; margin: 0 0 18px; }
@keyframes claim-spin { to { transform: rotate(360deg); } }
.channel .claim-state { display: none; } .channel .claim-state.is-active { display: block; }
.channel .claim-store-buttons { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 26px; }
.channel .claim-store-buttons .btn-golive { width: 100%; justify-content: center; }
.channel .claim-note { font-size: 14.5px; line-height: 1.6; color: var(--ink2); }
.channel .claim-rescan { margin-top: 24px; padding: 16px 18px; border: 1px solid var(--line2); border-radius: 14px; background: rgba(145,71,255,.07); font-size: 14px; line-height: 1.6; color: var(--ink2); }

/* ════════════════════════════════════════════════════════════
 * DOC / article pages (about, extension, privacy, terms, delete)
 * ════════════════════════════════════════════════════════════ */
.channel .doc { max-width: 820px; margin: 0 auto; padding: clamp(48px,7vw,92px) 26px; }
.channel .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink2); }
.channel .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 10px var(--glow); }
.channel .doc-head { margin-bottom: 44px; }
.channel .doc-title { font-size: clamp(34px,5vw,60px); font-weight: 900; letter-spacing: -.035em; line-height: 1.02; margin: 16px 0 0; }
.channel .doc-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.channel .doc-lede { color: var(--ink2); font-size: clamp(17px,1.5vw,20px); line-height: 1.6; margin: 18px 0 0; max-width: 62ch; }
.channel .doc-section { margin: 0 0 38px; }
.channel .doc-section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.channel .doc-section-head .section-num { font-family: var(--mono); font-size: 13px; color: var(--purple2); letter-spacing: .05em; }
.channel .doc-section-head h2 { font-size: clamp(22px,2.6vw,30px); font-weight: 800; letter-spacing: -.02em; }
.channel .doc-section p, .channel .doc-section li { color: var(--ink2); line-height: 1.7; }
.channel .doc-section a[href] { color: var(--purple2); font-weight: 600; }
.channel .doc-h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 20px 0 6px; }
.channel .doc-bullets { padding-left: 22px; margin: 10px 0; } .channel .doc-bullets li { margin: 6px 0; }
.channel .doc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.channel .doc-feature { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.channel .doc-feature-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--purple2); margin-bottom: 8px; }
.channel .doc-feature p { color: var(--ink2); font-size: 14.5px; margin: 0; line-height: 1.6; }
.channel .doc-steps { list-style: none; padding: 0; margin: 14px 0; display: grid; gap: 12px; }
.channel .doc-steps li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink2); line-height: 1.6; }
.channel .doc-step-num { flex: none; width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; font-weight: 800; font-size: 13px; color: #fff; background: var(--grad); }
.channel .dp-tag { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--purple2); background: var(--brand-soft, rgba(145,71,255,.12)); border: 1px solid var(--line2); padding: 2px 8px; border-radius: 6px; margin-right: 8px; }
.channel .doc-platforms { list-style: none; padding: 0; } .channel .doc-platforms li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink2); }
.channel .doc-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.channel .doc-cta-top { margin: 26px 0 0; }
.channel .doc-install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.channel .doc-install { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.channel .doc-install-head { font-weight: 800; margin-bottom: 10px; }
.channel .doc-install-steps { padding-left: 20px; } .channel .doc-install-steps li { margin: 6px 0; color: var(--ink2); }
.channel .btn-soon { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); background: rgba(255,255,255,.05); padding: 3px 9px; border-radius: 6px; }
.channel .btn-disabled { opacity: .5; pointer-events: none; }
@media (max-width: 760px) {
  .channel .doc-features, .channel .doc-install-grid { grid-template-columns: 1fr; }
  .channel .doc-section-head { flex-direction: column; gap: 4px; }
}

/* ════════════════════════════════════════════════════════════
 * PER-PAGE IDENTITY — one purple brand, four distinct moods.
 * Differentiated by hero archetype + background texture, not hue.
 * ════════════════════════════════════════════════════════════ */

/* ── STREAMING · "the broadcast board" — left hero, live status ── */
.page-streaming::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .6;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0 3px, rgba(255,255,255,.016) 3px 4px);
}
/* cinematic single top spotlight instead of drifting blobs */
.page-streaming .bg-mesh::before {
  top: -26vh; left: 50%; right: auto; transform: translateX(-50%);
  width: 105vw; height: 78vh; border-radius: 0;
  background: radial-gradient(closest-side, rgba(145,71,255,.32), transparent 72%);
  filter: blur(80px); opacity: .8; animation: none;
}
.page-streaming .bg-mesh::after { display: none; }
.broadcast { display: flex; flex-direction: column; gap: 12px; }
.bc-row { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--line2); border-radius: 14px; background: rgba(18,12,28,.6); position: relative; overflow: hidden; }
.bc-row .pdot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.bc-row.tw { --c: var(--tw); } .bc-row.kk { --c: var(--kk); } .bc-row.yt { --c: var(--yt); } .bc-row.tt { --c: var(--tt); }
.bc-row .pdot { background: var(--c); box-shadow: 0 0 12px var(--c); }
.bc-row .bc-name { font-weight: 800; font-size: 16px; }
.bc-row .bc-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--kk); }
.bc-row .bc-v { margin-left: auto; font-family: var(--mono); color: var(--ink2); font-size: 13px; }
.bc-row .bc-bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 40%; background: linear-gradient(90deg, transparent, var(--c), transparent); animation: bcpulse 2.6s ease-in-out infinite; }
.bc-row.kk .bc-bar { animation-delay: .2s; } .bc-row.yt .bc-bar { animation-delay: .4s; } .bc-row.tt .bc-bar { animation-delay: .6s; }
@keyframes bcpulse { 0% { left: -40%; } 100% { left: 100%; } }
.bc-head { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink2); margin-bottom: 4px; }
.bc-head .grad { font-weight: 700; }
.bc-cap { font-family: var(--mono); font-size: 12px; color: var(--ink3); text-align: center; margin-top: 4px; }

/* ── CHAT · "the wall" — full-width chat hero ───────────────── */
/* signal columns become the dominant backdrop; blobs dimmed right back */
.page-chat .bg-mesh { opacity: .25; }
.page-chat::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .9;
  background: repeating-linear-gradient(90deg,
    transparent 0 5%, rgba(168,119,255,.10) 5% 7%, transparent 7% 28%,
    rgba(83,252,24,.07) 28% 30%, transparent 30% 53%,
    rgba(255,91,91,.07) 53% 55%, transparent 55% 78%,
    rgba(255,77,141,.08) 78% 80%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.page-chat .hero-grid { grid-template-columns: 1fr; gap: 28px; }
.page-chat .hero-copy { max-width: 820px; }
.page-chat .stage { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; align-items: start; }
.page-chat .chatcard .feed { height: 360px; }
@media (max-width: 860px) { .page-chat .stage { grid-template-columns: 1fr; } }

/* ── PRICING · "the ledger" — calm, editorial, graph-paper ──── */
.page-pricing .bg-mesh { opacity: .22; }
.page-pricing::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .9;
  background-image: linear-gradient(rgba(145,71,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(145,71,255,.09) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(130% 90% at 50% 0%, #000 45%, transparent 88%);
          mask-image: radial-gradient(130% 90% at 50% 0%, #000 45%, transparent 88%);
}
.page-pricing .hero-grid { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; text-align: center; }
.page-pricing .hero-copy .nowtag,
.page-pricing .cta-row,
.page-pricing .pbig { justify-content: center; }
.page-pricing .hero-copy .sub { margin-left: auto; margin-right: auto; }
.page-pricing .stage { max-width: 460px; margin: 8px auto 0; }

@media (max-width: 940px) {
  .page-chat .hero-grid { grid-template-columns: 1fr; }
}

/* ── IRL · "from your pocket" — vertical phone hero, signal rings ── */
.page-irl .bg-mesh::before {
  background: radial-gradient(circle, #9147ff, transparent 60%);
  top: auto; bottom: -32vh; left: 50%; right: auto; transform: translateX(-50%);
  width: 92vw; height: 72vh; border-radius: 0; opacity: .5; filter: blur(90px); animation: none;
}
.page-irl .bg-mesh::after { display: none; }
.page-irl::after {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .45;
  background: repeating-radial-gradient(circle at 50% 116%, rgba(145,71,255,.16) 0 1.5px, transparent 1.5px 54px);
  -webkit-mask-image: radial-gradient(78% 78% at 50% 112%, #000, transparent 72%);
          mask-image: radial-gradient(78% 78% at 50% 112%, #000, transparent 72%);
  animation: irl-ping 7s ease-out infinite;
}
@keyframes irl-ping { 0% { background-size: 100% 100%; opacity: .5; } 100% { background-size: 128% 128%; opacity: .26; } }
.page-irl .hero-grid { align-items: center; }
.page-irl .stage { max-width: 300px; margin: 0 auto; align-items: center; }

.phone { width: 248px; padding: 9px; border-radius: 40px; border: 1px solid var(--line2); background: linear-gradient(180deg, #171120, #0d0a16); box-shadow: 0 50px 110px -40px #000, 0 0 70px -28px var(--glow); position: relative; }
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 78px; height: 7px; border-radius: 99px; background: #000; z-index: 3; }
.phone-screen { position: relative; aspect-ratio: 9 / 19.5; border-radius: 32px; overflow: hidden; background: linear-gradient(160deg, #2a1259, #120a2e 45%, #3a1430); background-size: 200% 200%; }
.phone.is-live .phone-screen { animation: screenshift 8s ease infinite; }
.phone .screen-grid { background-size: 30px 30px; }
.ph-sweep { position: absolute; left: 0; right: 0; top: -30%; height: 30%; background: linear-gradient(180deg, transparent, rgba(255,255,255,.07), transparent); animation: sweep 4.5s linear infinite; }
.ph-live { position: absolute; top: 24px; left: 14px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; color: #fff; background: rgba(255,91,127,.16); border: 1px solid rgba(255,91,127,.5); padding: 4px 9px; border-radius: 99px; }
.ph-loc { position: absolute; top: 24px; right: 14px; font-family: var(--mono); font-size: 10px; color: var(--ink2); background: rgba(0,0,0,.32); padding: 4px 8px; border-radius: 99px; }
.ph-foot { position: absolute; left: 14px; right: 14px; bottom: 16px; display: flex; flex-direction: column; gap: 10px; }
.ph-dests { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--ink2); }
.ph-dests i { width: 9px; height: 9px; border-radius: 50%; }
.ph-dests i.tw { background: var(--tw); box-shadow: 0 0 8px var(--tw); } .ph-dests i.kk { background: var(--kk); box-shadow: 0 0 8px var(--kk); }
.ph-dests i.yt { background: var(--yt); box-shadow: 0 0 8px var(--yt); } .ph-dests i.tt { background: var(--tt); box-shadow: 0 0 8px var(--tt); }
.ph-dests span { margin-left: auto; }
.ph-signal { display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.ph-signal b { width: 5px; border-radius: 2px; background: var(--purple2); animation: ph-bars 1.4s ease-in-out infinite; }
.ph-signal b:nth-child(1) { height: 5px; } .ph-signal b:nth-child(2) { height: 8px; animation-delay: .1s; } .ph-signal b:nth-child(3) { height: 11px; animation-delay: .2s; } .ph-signal b:nth-child(4) { height: 14px; animation-delay: .3s; } .ph-signal b:nth-child(5) { height: 16px; animation-delay: .4s; }
@keyframes ph-bars { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.ph-relay { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--ink3); text-align: center; } .ph-relay b { color: var(--purple2); }

/* how-it-works steps (IRL) */
.steps { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.step .sn { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-weight: 900; font-size: 15px; color: #fff; background: var(--grad); box-shadow: 0 10px 24px -10px var(--glow); }
.step h3 { font-size: 18px; font-weight: 800; margin: 16px 0 6px; }
.step p { color: var(--ink2); font-size: 14px; margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ── PRICING · three-up grid (Free · Cloud · Cloud Studio) ──── */
.price-grid.cols3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
.js .price-grid.cols3 .pcard:nth-child(3) { transition-delay: .28s; }
@media (max-width: 940px) { .price-grid.cols3 { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .page-irl::after, .phone.is-live .phone-screen, .ph-sweep, .ph-signal b { animation: none !important; }
}

/* pricing hero: stacked, centered headline price ($1/mo in focus) */
.pbig.stack { flex-direction: column; align-items: center; gap: 4px; text-align: center; margin-top: 22px; }
.pbig.stack .pbig-main { display: flex; align-items: baseline; gap: 12px; }
.pbig.stack .pbig-main .n { line-height: .9; }
.pbig-sub { font-size: 15px; color: var(--ink2); max-width: 46ch; margin: 12px auto 0; line-height: 1.55; }
.pbig-sub b { color: #fff; }


/* ── Product-chooser wizard (wizard.js) ── */
.wiz-backdrop { position:fixed; inset:0; z-index:3000; display:none; align-items:center; justify-content:center;
  padding:20px; background:rgba(8,6,14,.66); backdrop-filter:blur(4px); }
.wiz-backdrop.open { display:flex; }
.wiz-modal { position:relative; width:100%; max-width:520px; max-height:90vh; overflow:auto;
  background:#15131d; border:1px solid #2a2733; border-radius:18px; padding:26px 24px;
  box-shadow:0 30px 80px -20px rgba(0,0,0,.8); }
.wiz-close { position:absolute; top:12px; right:15px; background:none; border:none; color:#a39db5;
  font-size:26px; line-height:1; cursor:pointer; }
.wiz-close:hover { color:#fff; }
.wiz-kick { font-family:var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#c9a3ff; }
.wiz-title { font-family:'Archivo',sans-serif; font-weight:800; font-size:22px; color:#f4f2fa; margin:6px 0 20px; }
.wiz-q { font-family:'Archivo',sans-serif; font-weight:700; font-size:16px; color:#f4f2fa; margin:0 0 14px; }
.wiz-options { display:flex; flex-direction:column; gap:10px; }
.wiz-option { display:flex; align-items:center; gap:12px; text-align:left; width:100%; padding:15px 16px;
  border-radius:12px; border:1px solid #3a3648; background:#0c0b12; color:#f4f2fa; cursor:pointer;
  transition:border-color .15s, background .15s; font-family:inherit; }
.wiz-option:hover { border-color:#9147ff; background:rgba(145,71,255,.10); }
.wiz-option:focus-visible { outline:2px solid #9147ff; outline-offset:2px; }
.wiz-opt-main { display:flex; flex-direction:column; gap:3px; flex:1; min-width:0; }
.wiz-opt-label { font-weight:700; font-size:15px; }
.wiz-opt-desc { font-size:12.5px; color:#a39db5; }
.wiz-opt-arrow { color:#736d83; font-size:18px; flex:0 0 auto; }
.wiz-back { background:none; border:none; color:#a39db5; font-size:13px; cursor:pointer; padding:0; margin:0 0 12px; font-family:inherit; }
.wiz-back:hover { color:#c9a3ff; }
.wiz-tag { display:inline-block; font-family:var(--mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  color:#c9a3ff; background:rgba(145,71,255,.14); border:1px solid #4d3a8e; border-radius:999px; padding:3px 10px; }
.wiz-result-title { font-family:'Archivo',sans-serif; font-weight:800; font-size:22px; color:#f4f2fa; margin:12px 0 8px; }
.wiz-why { font-size:14px; color:#b8b2c8; line-height:1.55; margin:0 0 18px; }
.wiz-ctas { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.wiz-restart { display:block; background:none; border:none; color:#736d83; font-size:12.5px; cursor:pointer;
  margin-top:16px; padding:0; font-family:inherit; }
.wiz-restart:hover { color:#a39db5; }
/* Inline (/start) — reuse the panel look without the fixed backdrop. */
.wiz-panel { width:100%; max-width:560px; margin:0 auto; background:#15131d; border:1px solid #2a2733;
  border-radius:18px; padding:26px 24px; }
.wiz-hint { margin:14px 0 0; font-size:13.5px; }
.wiz-hint a { color:#b885ff; text-decoration:none; font-weight:600; }
.wiz-hint a:hover { text-decoration:underline; }
/* Login page tagline (under the OmniChat heading; set by login.js setMode). */
.login-box .login-tagline { margin: 0 0 22px; text-align: center; font-size: 14px; color: var(--ink2); }
