:root {
  --bg: #f4f4f2; --surface: #fff; --line: rgba(17,17,17,.08); --line-strong: rgba(17,17,17,.14);
  --text: #141414; --text-2: #5b5b5b; --text-3: #8a8a8a; --hover: rgba(17,17,17,.04); --bubble: #f1f1ef; --green: #1fbf6a;
  --radius: 16px; --shadow-1: 0 1px 2px rgba(17,17,17,.05), 0 1px 1px rgba(17,17,17,.03); --shadow-2: 0 10px 30px rgba(17,17,17,.08), 0 2px 6px rgba(17,17,17,.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; font-feature-settings: 'cv11','ss01','ss03'; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav .wrap { height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 600; font-size: 17px; letter-spacing: -.02em; }
.brand img { width: 30px; height: 30px; border-radius: 9px; }
.nav-demo { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: #fff; background: var(--text); text-decoration: none; padding: 8px 14px 8px 12px; border-radius: 999px; white-space: nowrap; margin-left: auto; margin-right: 8px; }
.nav-demo:hover { background: #2a2a2a; }
.on-air { width: 7px; height: 7px; border-radius: 50%; background: #e0245e; box-shadow: 0 0 0 3px rgba(224,36,94,.35); animation: pulse-red 1.6s infinite; display: inline-block; }
@keyframes pulse-red { 0%,100% { box-shadow: 0 0 0 3px rgba(224,36,94,.35);} 50% { box-shadow: 0 0 0 6px rgba(224,36,94,.12);} }
.now-line { font-size: 13px; color: var(--text-2); flex: 1; min-width: 0; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.tile { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.tile b { font-weight: 600; font-size: 13.5px; }
.tile span { font-size: 12.5px; color: var(--text-2); }
.tile small { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { text-decoration: none; padding: 7px 11px; border-radius: 9px; font-size: 14px; color: var(--text-2); display: inline-flex; align-items: center; gap: 7px; }
.nav-links a:hover { background: var(--hover); color: var(--text); }
.nav-links .soon { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); background: var(--bubble); padding: 2px 6px; border-radius: 5px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 12px; font-weight: 500; font-size: 14px; text-decoration: none; border: 1px solid var(--line-strong); background: var(--surface); transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn.primary { background: var(--text); color: #fff; border-color: var(--text); }
.btn.small { padding: 8px 13px; font-size: 13px; border-radius: 10px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(31,191,106,.18); animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(31,191,106,.18);} 50% { box-shadow: 0 0 0 6px rgba(31,191,106,.06);} }
.icon-links { display: flex; gap: 2px; }
.icon-links a { width: 36px; height: 36px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; color: var(--text-2); }
.icon-links a:hover { background: var(--hover); color: var(--text); }

/* hero */
.hero { padding: 72px 0 40px; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); background: var(--surface); border: 1px solid var(--line); padding: 6px 12px 6px 10px; border-radius: 999px; }
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; letter-spacing: -.035em; font-weight: 600; margin: 18px 0 16px; }
.lede { font-size: 18px; color: var(--text-2); max-width: 520px; margin: 0 0 24px; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; font-size: 13px; color: var(--text-3); }
.wall-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-2); overflow: hidden; }
.wall-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--text-2); }
.wall-head b { color: var(--text); font-weight: 600; }
.wall-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; }
.wall { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; padding: 16px; }
.wa { position: relative; aspect-ratio: 1; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.wa img { width: 78%; height: 78%; object-fit: contain; }
.wa i { position: absolute; right: 4px; bottom: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--green); border: 2px solid var(--surface); }
.wa.bench { opacity: .35; filter: grayscale(1); } .wa.bench i { display: none; }
.wa.browsing i, .wa.coding i, .wa.in-a-sheet i { background: #e0245e; animation: blink 1.4s infinite; }
.wa.on-a-board i { background: #ff8a00; }
@keyframes blink { 0%,100% { opacity: 1;} 50% { opacity: .35;} }
.wall-foot { padding: 10px 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.stat { background: var(--text); color: #fff; border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; }
.stat b { font-size: 26px; font-weight: 600; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat span { font-size: 12px; color: rgba(255,255,255,.6); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-1); }
.how-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.how b { display: block; font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.how p { margin: 0; color: var(--text-2); font-size: 14px; }
.sofar-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; }
.sofar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-1); min-height: 200px; }
.card-kicker { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.empty { color: var(--text-3); font-size: 14px; }
.facts { display: flex; flex-direction: column; gap: 10px; }
.factrow { display: grid; grid-template-columns: 90px 1fr; gap: 10px; font-size: 14px; align-items: baseline; }
.factrow .k { color: var(--text-3); font-size: 12.5px; font-weight: 500; }
.tasks { display: flex; flex-direction: column; gap: 8px; }
.taskrow { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.taskrow .box { width: 15px; height: 15px; border-radius: 5px; border: 1.5px solid var(--line-strong); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.taskrow.doing .box { border-color: var(--text); } .taskrow.doing .box::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--text); }
.taskrow .tt { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.taskrow img { width: 22px; height: 22px; border-radius: 7px; }
.pass-card { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; background: var(--text); color: #fff; border-radius: 22px; padding: 36px; box-shadow: var(--shadow-2); }
.pass-img img { width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); transition: transform .4s ease; }
.pass-card:hover .pass-img img { transform: rotate(-2deg) scale(1.02); }
.pass-copy .card-kicker { color: rgba(255,255,255,.5); }
.pass-copy h2 { color: #fff; margin-bottom: 10px; }
.pass-copy p { color: rgba(255,255,255,.7); margin: 0 0 18px; }
.pass-copy .tiles { margin-bottom: 14px; }
.pass-copy .tile { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.pass-copy .tile b { color: #fff; } .pass-copy .tile span { color: rgba(255,255,255,.7); } .pass-copy .tile small { color: rgba(255,255,255,.5); }
.pass-copy .fact { background: rgba(255,255,255,.08); border-radius: 10px; padding: 10px 12px; font-size: 13.5px; margin-bottom: 14px; }
.pass-copy .fact small { display: block; color: rgba(255,255,255,.5); font-size: 11.5px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.pass-copy .btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.pass-copy .btn:hover { background: rgba(255,255,255,.08); }
.soon-badge.static { position: static; align-self: center; }
.roster { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.roster-head { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.soon-card.wide { min-height: 0; padding-right: 180px; }
.faq { display: flex; flex-direction: column; gap: 8px; max-width: 760px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; box-shadow: var(--shadow-1); }
.faq summary { cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--text-3); font-weight: 400; font-size: 18px; }
.faq details[open] summary::after { content: '\2013'; }
.faq p { margin: 0 0 16px; color: var(--text-2); font-size: 14px; line-height: 1.55; }
.faq a { color: var(--text); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 24px; align-items: start; }
.foot-brand { display: flex; gap: 12px; align-items: flex-start; }
.foot-brand img { border-radius: 8px; }
.foot-brand b { display: block; color: var(--text); font-weight: 600; }
.foot-brand span { display: block; margin-top: 2px; max-width: 320px; }
.foot-col { display: flex; flex-direction: column; gap: 6px; }
.foot-col b { color: var(--text); font-weight: 600; margin-bottom: 4px; }
.foot-col a { margin: 0; }
.countdown { display: flex; align-items: baseline; gap: 6px; font-variant-numeric: tabular-nums; background: var(--text); color: #fff; padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow-2); }
.countdown .n { font-size: 30px; font-weight: 600; letter-spacing: -.03em; }
.countdown .l { font-size: 12px; color: rgba(255,255,255,.55); margin-right: 8px; }
.countdown .to { font-size: 12px; color: rgba(255,255,255,.55); margin-left: 6px; }

/* phases */
.phases { padding: 20px 0 48px; }
.phase-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.phase { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow-1); position: relative; }
.phase .num { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.phase .name { font-weight: 600; font-size: 16px; margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.phase p { margin: 6px 0 0; color: var(--text-2); font-size: 13px; }
.phase.done { opacity: .55; }
.phase.now { border-color: var(--text); }
.phase.now .name::after { content: 'now'; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--text); padding: 2px 6px; border-radius: 5px; }

/* sections */
section.block { padding: 44px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
h2 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -.03em; font-weight: 600; margin: 0; line-height: 1.1; }
.sec-sub { color: var(--text-2); margin: 6px 0 0; max-width: 560px; }

/* live strip */
.live-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-2); overflow: hidden; }
.live-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--text-2); }
.live-head b { color: var(--text); font-weight: 600; }
.live-head .chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { font-size: 12px; padding: 3px 9px; border-radius: 999px; background: var(--bubble); color: var(--text-2); text-decoration: none; }
.chip:hover { background: var(--line); color: var(--text); }
.live-body { padding: 8px 16px 12px; min-height: 220px; }
.lm { display: flex; gap: 12px; padding: 8px 0; animation: rise .3s ease; }
.lm img { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; }
.lm .m { min-width: 0; }
.lm .meta { display: flex; align-items: baseline; gap: 7px; font-size: 12.5px; color: var(--text-3); }
.lm .meta b { color: var(--text); font-weight: 600; font-size: 13.5px; }
.lm .meta .ch { color: var(--text-2); }
.lm .txt { background: var(--bubble); border-radius: 4px 14px 14px 14px; padding: 7px 12px; margin-top: 4px; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 14px; display: inline-block; max-width: 100%; }
@keyframes rise { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none;} }
.live-foot { padding: 12px 16px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.avatars { display: flex; align-items: center; }
.avatars img { width: 26px; height: 26px; border-radius: 8px; margin-left: -6px; border: 2px solid var(--surface); background: var(--surface); }
.avatars img:first-child { margin-left: 0; }
.avatars span { font-size: 13px; color: var(--text-2); margin-left: 10px; }
.live-empty { color: var(--text-3); font-size: 14px; padding: 40px 0; text-align: center; }

/* why */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 10px; transition: transform .15s ease, box-shadow .15s ease; }
.why:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.why img { border-radius: 10px; width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: var(--bg); }
.why b { font-weight: 600; }
.why p { margin: 0; font-size: 13.5px; color: var(--text-2); }
.why-grid .why:nth-child(1) { grid-column: span 2; }
.why-grid .why:nth-child(1) img { aspect-ratio: 2 / 1; object-fit: contain; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.person { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; text-decoration: none; display: flex; gap: 12px; align-items: center; box-shadow: var(--shadow-1); }
.person:hover { box-shadow: var(--shadow-2); }
.person img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; }
.person b { display: block; font-weight: 600; }
.person span { font-size: 13px; color: var(--text-3); }
.agent-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.agent-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px 4px 4px; font-size: 13px; }
.agent-pill img { width: 26px; height: 26px; border-radius: 8px; }
.agent-pill .r { color: var(--text-3); }
.agent-pill.bench { opacity: .5; filter: grayscale(1); }

/* soon */
.soon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.soon-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 10px; min-height: 220px; position: relative; overflow: hidden; }
.soon-card .tag { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.soon-card h3 { margin: 0; font-size: 24px; letter-spacing: -.02em; font-weight: 600; }
.soon-card p { margin: 0; color: var(--text-2); }
.soon-card .fact { background: var(--bubble); border-radius: 10px; padding: 10px 12px; font-size: 13.5px; }
.soon-card .fact small { display: block; color: var(--text-3); font-size: 11.5px; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.soon-card .foot { margin-top: auto; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.soon-badge { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text); background: #fff3a3; padding: 4px 9px; border-radius: 999px; }
.soon-card .ticket { position: absolute; right: -20px; bottom: -30px; width: 180px; opacity: .9; pointer-events: none; }
.soon-card .blob { position: absolute; right: 18px; bottom: -14px; width: 120px; opacity: .95; pointer-events: none; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--text-3); font-size: 13px; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
footer a { color: var(--text-2); text-decoration: none; margin-right: 14px; }
footer a:hover { color: var(--text); }

@media (max-width: 900px) {
  .hero { padding: 40px 0 24px; }
  .hero .wrap { grid-template-columns: 1fr; }
  .wall { grid-template-columns: repeat(7, 1fr); gap: 8px; padding: 12px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .how-grid, .sofar-grid, .pass-card { grid-template-columns: 1fr; }
  .pass-card { padding: 24px; }
  .soon-card.wide { padding-right: 22px; }
  .soon-card.wide .blob { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .phase-track { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid .why:nth-child(1) { grid-column: span 2; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .soon-grid { grid-template-columns: 1fr; }
  .nav-links .hide-m { display: none; }
  .nav-demo { font-size: 0; gap: 0; padding: 10px; margin-right: 4px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .phase-track, .why-grid, .team-grid { grid-template-columns: 1fr; }
  .why-grid .why:nth-child(1) { grid-column: auto; }
  .why-grid .why:nth-child(1) img { aspect-ratio: 1 / 1; }
  .countdown .n { font-size: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* toasts */
.toasts { position: fixed; right: 16px; bottom: 16px; z-index: 50; display: flex; flex-direction: column; gap: 10px; width: min(360px, calc(100vw - 32px)); }
.toast { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px 12px 12px 14px; box-shadow: var(--shadow-2); text-decoration: none; color: var(--text); animation: toastin .28s cubic-bezier(.2,.8,.2,1); position: relative; }
.toast:hover { border-color: var(--line-strong); }
.toast.out { animation: toastout .25s ease forwards; }
@keyframes toastin { from { opacity: 0; transform: translateY(12px) scale(.98);} to { opacity: 1; transform: none;} }
@keyframes toastout { to { opacity: 0; transform: translateY(8px);} }
.toast img { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; }
.toast .tb { flex: 1; min-width: 0; }
.toast .tm { display: flex; align-items: baseline; gap: 7px; font-size: 13px; }
.toast .tm b { font-weight: 600; } .toast .tm span { color: var(--text-3); font-size: 12px; }
.toast .tt { font-size: 13.5px; margin-top: 2px; color: var(--text-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.toast .ta { font-size: 12px; color: var(--text); font-weight: 500; margin-top: 6px; }
.toast .tx { position: absolute; top: 6px; right: 8px; width: 24px; height: 24px; border-radius: 7px; color: var(--text-3); font-size: 16px; display: flex; align-items: center; justify-content: center; }
.toast .tx:hover { background: var(--hover); color: var(--text); }

/* stream */
.stream-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.stream-card { display: block; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-2); }
.stream-thumb { position: relative; aspect-ratio: 16 / 9; background: radial-gradient(circle at 30% 30%, #2b2b33, #0f0f12 70%); display: flex; align-items: center; justify-content: center; }
.stream-faces { display: flex; } .stream-faces img { width: 84px; height: 84px; border-radius: 50%; border: 3px solid #0f0f12; margin-left: -18px; object-fit: cover; } .stream-faces img:first-child { margin-left: 0; }
.stream-live { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.55); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 11px 6px 9px; border-radius: 999px; backdrop-filter: blur(6px); }
.stream-play { position: absolute; right: 16px; bottom: 16px; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: #111; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-2); transition: transform .15s; }
.stream-card:hover .stream-play { transform: scale(1.06); }
.stream-meta { padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; } .stream-meta b { font-weight: 600; } .stream-meta span { color: var(--text-3); font-size: 13px; }
.stream-side { display: flex; flex-direction: column; gap: 12px; }
.stream-embed { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; }
.stream-now { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-1); flex: 1; }
.snow { display: flex; gap: 10px; font-size: 13.5px; padding: 6px 0; border-bottom: 1px solid var(--line); } .snow:last-child { border-bottom: 0; }
.snow .st { color: var(--text-3); font-variant-numeric: tabular-nums; flex-shrink: 0; }
@media (max-width: 900px) { .stream-grid { grid-template-columns: 1fr; } }

/* token */
.token-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; background: var(--text); color: #fff; border-radius: 22px; padding: 32px; box-shadow: var(--shadow-2); }
.token-left { display: flex; gap: 18px; align-items: flex-start; } .token-left img { border-radius: 16px; background: rgba(255,255,255,.08); padding: 6px; }
.token-left .card-kicker { color: rgba(255,255,255,.5); } .token-left h2 { color: #fff; margin: 4px 0 8px; } .token-left p { color: rgba(255,255,255,.7); margin: 0; }
.token-right { display: flex; flex-direction: column; gap: 10px; }
.tk-row { display: flex; align-items: center; gap: 10px; font-size: 14px; flex-wrap: wrap; } .tk-row > span { color: rgba(255,255,255,.5); width: 90px; font-size: 12.5px; }
.tk-row b { font-weight: 600; font-size: 18px; } .tk-row code { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; background: rgba(255,255,255,.08); padding: 5px 9px; border-radius: 8px; overflow-wrap: anywhere; }
.token-right .btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); } .token-right .btn.primary { background: #fff; color: #111; border-color: #fff; }
.token-right .cta-row { margin-top: 6px; }
@media (max-width: 900px) { .token-card { grid-template-columns: 1fr; padding: 22px; } }
