:root {
  /* page: light */
  --ground: #f5f6fa;
  --panel: #ffffff;
  --raised: #eef0f6;
  --line: #e2e5ee;
  --line-2: #cfd4e0;
  --text: #151821;
  --muted: #545b6c;
  --faint: #7c8395;
  --brand: #5f5cf0;
  --brand-hover: #4f4ce0;
  --rec: #e5392d;
  /* the app window in the hero */
  --deck: #ffffff;
  --deck-line: #e2e5ee;
  --deck-text: #151821;
  --deck-muted: #545b6c;
  --c1: #e8932f;
  --c2: #2fb3a0;
  --c3: #6f8cf5;
  --c4: #e8628c;
  --c5: #9a6fe0;
  --sans: 'Geist Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', 'Cascadia Mono', Consolas, ui-monospace, monospace;
  /* the soft blue glow behind the hero and the join page, as in the app */
  --glow: radial-gradient(ellipse 62% 58% at 50% 56%, #c4e0fb 0%, #d6e9fb 34%, #eaf2fb 62%, var(--ground) 100%) var(--ground);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
@supports (overflow-x: clip) { html, body { overflow-x: clip; } }
body { margin: 0; background: var(--ground); color: var(--text); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; text-wrap: balance; letter-spacing: -0.02em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow { font: 500 12px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.mark { width: 34px; height: 34px; display: inline-grid; place-items: center; flex: none; }
.mark img { width: 100%; height: 100%; display: block; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 44px; padding: 0 20px; border-radius: 9px; border: 1px solid var(--line-2); background: var(--panel); color: var(--text); font: 500 15px/1 var(--sans); text-decoration: none; cursor: pointer; white-space: nowrap; transition: background 0.15s, border-color 0.15s, box-shadow 0.15s; }
.btn:hover { background: var(--raised); }
.btn.primary { background: var(--brand); border-color: transparent; color: #fff; font-weight: 600; box-shadow: 0 8px 20px -10px rgba(95, 92, 240, 0.7); }
.btn.primary:hover { background: var(--brand-hover); }
.btn.big { height: 54px; padding: 0 28px; font-size: 16px; }
.btn.sm { height: 34px; padding: 0 14px; font-size: 14px; box-shadow: none; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* top */
.top { position: sticky; top: 0; z-index: 10; background: rgba(245, 246, 250, 0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.top .wrap { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; text-decoration: none; }
.top .wrap { gap: 18px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 15px; color: var(--muted); }
.nav > a { text-decoration: none; }
.nav > a:hover { color: var(--text); }
.lang { display: inline-flex; padding: 3px; gap: 2px; border: 1px solid var(--line-2); border-radius: 9px; background: var(--panel); font: 600 12px/1 var(--mono); }
.lang a { padding: 5px 8px; border-radius: 6px; color: var(--faint); text-decoration: none; }
.lang a:hover { color: var(--text); }
.lang a.on { background: var(--text); color: #fff; }
.btn.dl-top { height: 46px; padding: 0 22px; font-size: 15.5px; gap: 10px; border-radius: 11px; }
.btn.dl-top svg { width: 19px; height: 19px; stroke-width: 2.2; }
.burger { display: none; width: 46px; height: 46px; flex: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line-2); border-radius: 11px; background: var(--panel); cursor: pointer; }
.burger i { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--text); transition: transform 0.2s, opacity 0.2s; }
.top.open .burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.top.open .burger i:nth-child(2) { opacity: 0; }
.top.open .burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero */
.hero { padding: 88px 0 80px; background: var(--glow); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
.hero h1 { margin-top: 18px; font-size: clamp(38px, 5vw, 60px); line-height: 1.04; font-weight: 600; letter-spacing: -0.035em; }
.lead { margin-top: 22px; max-width: 46ch; color: var(--muted); font-size: 18px; line-height: 1.6; }
.cta { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.meta { color: var(--faint); font-size: 13.5px; }

.deck { margin: 0; padding: 18px 18px 14px; background: var(--deck); color: var(--deck-text); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 40px 70px -34px rgba(21, 24, 33, 0.35), 0 2px 6px rgba(21, 24, 33, 0.06); }
.deck-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 14px; }
.onair { display: inline-flex; align-items: center; gap: 8px; font: 500 11px/1 var(--mono); letter-spacing: 0.16em; color: #f2493d; }
.onair i { width: 9px; height: 9px; border-radius: 50%; background: #f2493d; animation: lamp 1.6s ease-out infinite; }
@keyframes lamp { 0% { box-shadow: 0 0 0 0 rgba(242, 73, 61, 0.55); } 100% { box-shadow: 0 0 0 9px rgba(242, 73, 61, 0); } }
.deck .tc { font: 400 30px/1 var(--mono); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.deck .tc small { font-size: 0.52em; color: var(--deck-muted); letter-spacing: 0; }
.lanes { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 8px 12px; align-items: center; }
.lanes span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--deck-muted); }
.lanes span i { width: 9px; height: 9px; border-radius: 2px; background: var(--c); }
/* the canvas sits absolutely in a sized box: its pixel size (width × device pixel ratio) must never widen the
   page. Safari counted it as the grid column's minimum width and the page grew wider than the phone. */
.lanes-box { grid-column: 2; grid-row: 1 / span 5; position: relative; min-width: 0; height: 220px; overflow: hidden; }
#lanes { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.deck figcaption { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--deck-line); font-size: 13px; color: var(--deck-muted); display: flex; justify-content: space-between; gap: 12px; }

/* sections */
section.band { padding: 84px 0; border-top: 1px solid var(--line); }
section.band.alt { background: var(--panel); }
.band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; line-height: 1.1; }
.band .intro { margin-top: 12px; max-width: 58ch; color: var(--muted); }

.steps { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.steps li { position: relative; padding: 26px 24px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; counter-increment: step; box-shadow: 0 1px 2px rgba(21, 24, 33, 0.04); }
.steps li::before { content: counter(step); display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 18px; border-radius: 50%; background: rgba(95, 92, 240, 0.1); font: 500 13px/1 var(--mono); color: var(--brand); }
.steps b { display: block; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.steps p { margin-top: 8px; color: var(--muted); font-size: 15px; }

.why { margin-top: 44px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.why h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.why p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.why .spec { margin-top: 12px; font: 12.5px/1.4 var(--mono); color: var(--faint); }

.dl .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 48px; align-items: start; }
.dl .actions { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.note { padding: 22px 24px; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--c1); border-radius: 12px; }
.note h3 { font-size: 16px; font-weight: 600; }
.note p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.note ol { margin: 10px 0 0; padding-left: 20px; color: var(--muted); font-size: 14.5px; }
.note em { font-style: normal; font-weight: 600; color: var(--text); }
.notes { margin-top: 18px; color: var(--muted); font-size: 14px; }

footer { padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13.5px; background: var(--panel); }
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* invite page */
.join { min-height: calc(100vh - 64px); display: grid; place-items: center; padding: 48px 0; background: var(--glow); }
.join-card { width: min(520px, calc(100% - 40px)); display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.join-card .mark { width: 88px; height: 88px; margin-bottom: 6px; filter: drop-shadow(0 12px 22px rgba(11, 79, 208, 0.28)); }
.join-card h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 600; line-height: 1.15; }
.code { margin: 6px 0 4px; padding: 14px 22px; background: var(--panel); border: 1px dashed var(--line-2); border-radius: 12px; font: 500 34px/1 var(--mono); letter-spacing: 0.12em; }
.join-card .muted { color: var(--muted); font-size: 15px; max-width: 42ch; }
.join-card .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px; }
.join-card ol { margin: 18px 0 0; padding: 18px 22px 18px 40px; text-align: left; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; color: var(--muted); font-size: 14.5px; }
.join-card ol b { color: var(--text); font-weight: 600; }

@media (max-width: 900px) {
  .hero { padding-top: 56px; }
  .hero .wrap, .dl .wrap { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .why { grid-template-columns: 1fr; }
  .lanes { grid-template-columns: 58px minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .onair i { animation: none; }
}

/* ---------- icons and decoration */
.ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 13px; color: var(--c, var(--brand)); background: color-mix(in srgb, var(--c, var(--brand)) 13%, transparent); }
.ic svg, .chip svg, .ticks svg, .tw-link svg, .tw-toast svg, .note-ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.orb { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.55; animation: float 9s ease-in-out infinite; }
.orb.o1 { width: 22px; height: 22px; left: 6%; top: 16%; background: linear-gradient(135deg, #2f7ce8, #0b3fa8); }
.orb.o2 { width: 34px; height: 34px; right: 4%; bottom: 12%; background: linear-gradient(135deg, #36d8e8, #0aa3c2); animation-delay: -3s; }
.orb.o3 { width: 12px; height: 12px; left: 47%; top: 10%; background: #5f5cf0; opacity: 0.35; animation-delay: -5s; }
.orb.ring { width: 560px; height: 560px; right: -190px; top: -230px; border: 40px solid rgba(47, 160, 230, 0.07); opacity: 1; animation: none; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.ticks { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--muted); font-size: 14.5px; }
.ticks li { display: inline-flex; align-items: center; gap: 8px; }
.ticks svg { width: 17px; height: 17px; color: #1e9b5a; stroke-width: 2.6; }
.hero .wrap > div { min-width: 0; }
.hero-side { display: flex; flex-direction: column; align-items: center; gap: 30px; min-width: 0; }
.deck { max-width: 100%; min-width: 0; }
.hero-side .deck { width: 100%; }
.hero-logo { width: min(440px, 86%); height: auto; display: block; filter: drop-shadow(0 18px 30px rgba(11, 63, 168, 0.12)); }

.steps li .ic { margin-bottom: 18px; }
.steps li::before { position: absolute; top: 26px; right: 24px; margin: 0; }

/* invite code */
/* the faint emblem behind the cards reaches past the card: it is cut at the section edge, never past the screen */
.invite-band, .number-band { position: relative; overflow: hidden; }
.invite-band .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.bullets { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.bullets li { display: flex; gap: 16px; align-items: flex-start; }
.bullets b { display: block; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.bullets p { margin-top: 4px; color: var(--muted); font-size: 15px; }
.chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 13px; border-radius: 999px; background: var(--panel); border: 1px solid var(--line); font-size: 13.5px; }
.chip svg { width: 16px; height: 16px; }
.chip.wa svg { color: #1fa855; }
.chip.ml svg { color: #e0762b; }
.chip.tg svg { color: #1d8fd6; }

.typer-wrap { position: relative; padding: 28px 0; }
.typer-wrap::before { content: ''; position: absolute; inset: -30px -40px; background: url('/icon.png') center / 360px no-repeat; opacity: 0.08; pointer-events: none; }
.typer { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 40px 70px -34px rgba(21, 24, 33, 0.35), 0 2px 6px rgba(21, 24, 33, 0.06); }
.typer-head { display: flex; align-items: center; gap: 14px; padding: 11px 16px; background: #f5f6fa; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.dots { display: inline-flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #dfe2ea; }
.dots i:nth-child(1) { background: #f4a19a; }
.dots i:nth-child(2) { background: #f3cf85; }
.dots i:nth-child(3) { background: #9bd9b1; }
.typer-app { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--text); }
.typer-app img { width: 18px; height: 18px; }
.typer-body { padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.typer-body h3 { font-size: 21px; font-weight: 600; }
.typer-body .muted { margin-bottom: 8px; color: var(--muted); font-size: 14.5px; }
.tw-box { height: 64px; display: flex; align-items: center; padding: 0 18px; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fafbfd; font: 500 32px/1 var(--mono); letter-spacing: 0.16em; transition: border-color 0.2s, box-shadow 0.2s; }
.tw-link { display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 14px; border: 1px dashed var(--line-2); border-radius: 10px; font: 14px/1.2 var(--mono); white-space: nowrap; overflow: hidden; transition: border-color 0.2s; }
.tw-link svg { width: 16px; height: 16px; flex: none; color: var(--faint); }
.tw-link span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.typer[data-step='code'] .tw-box { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(95, 92, 240, 0.12); }
.typer[data-step='link'] .tw-link { border-style: solid; border-color: var(--brand); }
.typer[data-step='code'] [data-typer-code]::after, .typer[data-step='link'] [data-typer-link]::after { content: ''; display: inline-block; width: 2px; height: 1.05em; margin-left: 3px; vertical-align: -0.15em; background: var(--brand); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.tw-row { margin-top: 8px; min-height: 40px; display: flex; align-items: center; gap: 14px; }
.tw-row .btn { transition: transform 0.12s, background 0.15s; }
.tw-row .btn.press { transform: scale(0.93); background: var(--brand-hover); }
.tw-toast { display: inline-flex; align-items: center; gap: 8px; color: #157a46; font-size: 14.5px; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s; }
.tw-toast b { font-weight: 500; }
.tw-toast svg { width: 18px; height: 18px; stroke-width: 2.6; }
.typer.joined .tw-toast { opacity: 1; transform: none; }
.typer.joined .tw-box { border-color: #1e9b5a; box-shadow: 0 0 0 4px rgba(30, 155, 90, 0.12); }

/* why: cards with icons */
.why { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.why > div { padding: 24px 22px 22px; background: var(--ground); border: 1px solid var(--line); border-radius: 14px; transition: transform 0.2s, box-shadow 0.2s; }
.why > div:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -22px rgba(21, 24, 33, 0.35); }
.why .ic { margin-bottom: 16px; }
.why.pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.dl { position: relative; overflow: hidden; }
.dl::after { content: ''; position: absolute; right: -130px; bottom: -150px; width: 520px; height: 520px; background: url('/icon.png') center / contain no-repeat; opacity: 0.06; pointer-events: none; }
.dl .wrap { position: relative; z-index: 1; }
.note h3 { display: flex; align-items: center; gap: 10px; }
.note-ic { color: #c98a12; display: inline-grid; }
.note-ic svg { width: 20px; height: 20px; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; }
.foot-brand img { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .invite-band .wrap { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .orb.ring { display: none; }
}
@media (max-width: 560px) {
  .why, .why.pair { grid-template-columns: 1fr; }
  .tw-box { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .typer [data-typer-code]::after, .typer [data-typer-link]::after { animation: none; }
}

/* Mixapod number: a keypad dials a 212-555 number, it rings, they join */
.number-band .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.number-sample { display: inline-block; margin-top: 20px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); font: 600 24px var(--mono); letter-spacing: 0.06em; box-shadow: 0 1px 2px rgba(21, 24, 33, 0.04); }
.dialer-wrap { position: relative; padding: 20px 0; }
.dialer-wrap::before { content: ''; position: absolute; inset: -30px -40px; background: url('/icon.png') center / 360px no-repeat; opacity: 0.07; pointer-events: none; }
.dialer { position: relative; width: min(380px, 100%); margin: 0 auto; overflow: hidden; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 40px 70px -34px rgba(21, 24, 33, 0.35), 0 2px 6px rgba(21, 24, 33, 0.06); }
.dialer-face { min-height: 500px; padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 14px; }
.dial-field { height: 60px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--brand); border-radius: 12px; background: #fafbfd; box-shadow: 0 0 0 4px rgba(95, 92, 240, 0.1); font: 500 27px var(--mono); letter-spacing: 0.06em; }
.dialer[data-step='type'] [data-dial-number]::after { content: ''; display: inline-block; width: 2px; height: 1em; margin-left: 3px; vertical-align: -0.12em; background: var(--brand); animation: caret 1s steps(1) infinite; }
.dial-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 10px; margin-top: 6px; justify-items: center; }
.dial-keys span { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--ground); font: 500 22px var(--sans); color: var(--text); transition: background 0.12s, color 0.12s, transform 0.12s; }
.dial-keys span.hit { background: var(--brand); border-color: transparent; color: #fff; transform: scale(0.92); }
.dial-go { align-self: center; margin-top: 8px; width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: #1fb35b; color: #fff; box-shadow: 0 12px 26px -10px rgba(31, 179, 91, 0.8); transition: transform 0.12s; }
.dial-go svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.dial-go.hit { transform: scale(0.88); }
.ring-face { position: absolute; top: 45px; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #fff; background: radial-gradient(130% 78% at 50% 22%, #353a70 0%, #1d2039 50%, #11131c 100%); opacity: 0; transform: translateY(12px); transition: opacity 0.35s, transform 0.35s; pointer-events: none; }
.dialer[data-step='ring'] .ring-face, .dialer[data-step='joined'] .ring-face { opacity: 1; transform: none; }
.rc-av { position: relative; width: 116px; height: 116px; margin-bottom: 16px; display: grid; place-items: center; }
.rc-av i { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(140, 138, 255, 0.55); animation: ringwave 2.4s ease-out infinite; }
.rc-av i:nth-child(2) { animation-delay: 0.8s; }
.rc-av i:nth-child(3) { animation-delay: 1.6s; }
.rc-av b { position: relative; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 50%; background: #f0a04b; color: #14161c; font-size: 48px; font-weight: 600; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14), 0 20px 44px -14px rgba(0, 0, 0, 0.7); }
.rc-name { font-size: 27px; font-weight: 600; letter-spacing: -0.01em; }
.rc-num { font: 14.5px var(--mono); letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.7); }
.rc-state { margin-top: 8px; font-size: 16.5px; font-weight: 500; color: #a8e8c1; }
.dialer[data-step='joined'] .rc-av i { display: none; }
.dialer[data-step='joined'] .rc-state { color: #7ee2a8; font-weight: 600; }
@keyframes ringwave { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 900px) { .number-band .wrap { grid-template-columns: minmax(0, 1fr); gap: 36px; } }
@media (prefers-reduced-motion: reduce) { .rc-av i { animation: none; } }

/* ---------- header on phones: the menu opens under the bar */
@media (max-width: 900px) {
  .burger { display: flex; }
  .top .wrap { gap: 10px; }
  .nav { position: absolute; left: 0; right: 0; top: 64px; margin: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 6px 24px 22px; background: var(--panel); border-bottom: 1px solid var(--line); box-shadow: 0 30px 40px -30px rgba(21, 24, 33, 0.35); }
  .top.open .nav { display: flex; }
  .nav > a { padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 500; color: var(--text); }
  .nav .lang { align-self: flex-start; margin-top: 16px; font-size: 13px; }
  .nav .lang a { padding: 7px 12px; }
  .btn.dl-top { margin-left: auto; height: 46px; padding: 0 18px; }
}
@media (max-width: 380px) {
  .brand { font-size: 0; gap: 0; }
}

/* ---------- screenshots: real pictures of the app, one tab at a time */
.shots { margin-top: 36px; }
.shot-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 6px; scrollbar-width: none; }
.shot-tabs::-webkit-scrollbar { display: none; }
.shot-tabs button { flex: none; height: 40px; padding: 0 16px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--panel); color: var(--muted); font: 500 14.5px var(--sans); cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.shot-tabs button svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.shot-tabs button:hover { color: var(--text); }
.shot-tabs button[aria-selected='true'] { background: var(--text); border-color: transparent; color: #fff; }
.shot-frame { margin: 16px 0 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); box-shadow: 0 60px 100px -50px rgba(21, 24, 33, 0.45), 0 2px 6px rgba(21, 24, 33, 0.06); }
.shot-bar { display: flex; align-items: center; gap: 14px; padding: 11px 16px; background: #f5f6fa; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.shot-view { position: relative; aspect-ratio: 1120 / 760; background: var(--glow); }
.shot-view img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.35s; }
.shot-view img.on { opacity: 1; }
.shot-view img.win { inset: 5% 0; height: 90%; filter: drop-shadow(0 30px 40px rgba(21, 24, 33, 0.35)); }
.shot-view img.wide { inset: 0 4%; width: 92%; filter: drop-shadow(0 30px 40px rgba(21, 24, 33, 0.3)); }
.shot-frame figcaption { min-height: 54px; padding: 15px 20px; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }

/* ---------- sound studio: preamp and soundpad */
.studio-band { background: var(--panel); }
.feature { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
.feature.flip { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.feature.flip .feature-text { order: 2; }
.feature .ic { margin-bottom: 16px; }
.feature h3 { font-size: 26px; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
.feature p { margin-top: 12px; color: var(--muted); }
.feature .ticks { flex-direction: column; gap: 9px; margin-top: 20px; }
.feature .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--brand); font-weight: 500; text-decoration: none; }
.feature .more:hover { text-decoration: underline; }
.feature-img { margin: 0; }
.feature-img img { display: block; width: 100%; height: auto; border-radius: 14px; box-shadow: 0 50px 80px -40px rgba(21, 24, 33, 0.55), 0 2px 6px rgba(21, 24, 33, 0.08); }
.feature-img.tall { display: flex; justify-content: center; padding: 26px 0; border-radius: 22px; background: radial-gradient(70% 70% at 50% 45%, #2a2f55 0%, #141726 70%); }
.feature-img.tall img { width: auto; max-height: 520px; border-radius: 12px; }

/* ---------- footer */
footer .wrap { align-items: center; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--text); }
.foot-brand a { color: var(--muted); }
.foot-brand .heworx { display: inline-flex; }
.foot-brand .heworx img { width: 88px; height: 24px; display: block; }

@media (max-width: 900px) {
  .feature, .feature.flip { grid-template-columns: minmax(0, 1fr); gap: 28px; margin-top: 44px; }
  .feature.flip .feature-text { order: 0; }
  .shot-frame figcaption { font-size: 14px; }
  section.band { padding: 64px 0; }
}

