:root {
  --page: #060a13;
  --page-elevated: #0a1120;
  --surface: rgba(14, 24, 43, .78);
  --surface-strong: rgba(18, 31, 54, .92);
  --surface-soft: rgba(31, 52, 87, .32);
  --stroke: rgba(179, 203, 255, .13);
  --stroke-strong: rgba(152, 188, 255, .24);
  --text: #f1f6ff;
  --muted: #a8b6ce;
  --faint: #74839d;
  --blue: #82afff;
  --violet: #a88cff;
  --mint: #72ecc9;
  --yellow: #f5c86d;
  --danger: #ff8b9c;
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
  color: var(--text);
  background: var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--page); }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(900px 480px at 50% -12%, rgba(52, 97, 182, .34), transparent 68%),
    radial-gradient(760px 440px at 100% 94%, rgba(31, 171, 165, .11), transparent 70%),
    var(--page);
}

button, input { font: inherit; }
button { cursor: pointer; }
button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(114, 236, 201, .82);
  outline-offset: 3px;
}
button:disabled, input:disabled { cursor: not-allowed; }
[hidden] { display: none !important; }

.page-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  opacity: .24;
  filter: blur(92px);
  pointer-events: none;
}
.glow-left { top: 17%; left: -22rem; background: #5045dd; }
.glow-right { right: -22rem; bottom: -14rem; background: #00a99a; }
.shell { position: relative; z-index: 1; width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 48px; }

.topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 1.3rem; font-weight: 820; letter-spacing: -.06em; user-select: none; }
.brand > span > span { color: var(--mint); }
.brand-mark { width: 31px; height: 31px; fill: var(--mint); filter: drop-shadow(0 0 13px rgba(114, 236, 201, .45)); }
.topbar-status { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.security-chip, .connection-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(7, 13, 25, .62);
  font-size: .72rem;
  font-weight: 730;
  line-height: 1;
  white-space: nowrap;
}
.security-chip svg { width: 14px; height: 14px; fill: var(--mint); }
.security-chip.secure { color: #cdf8ec; border-color: rgba(114, 236, 201, .2); }
.security-chip.warning { color: #ffe7af; border-color: rgba(245, 200, 109, .3); }
.security-chip.warning svg { fill: var(--yellow); }
.security-chip.local { color: #cfddf5; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--faint); box-shadow: 0 0 0 4px rgba(116, 131, 157, .11); transition: background .2s, box-shadow .2s; }
.connection-pill.connected .status-dot { background: var(--mint); box-shadow: 0 0 0 4px rgba(114, 236, 201, .12), 0 0 18px rgba(114, 236, 201, .8); }
.connection-pill.connecting .status-dot { background: var(--yellow); box-shadow: 0 0 0 4px rgba(245, 200, 109, .12); animation: pulse 1s ease-in-out infinite alternate; }
.connection-pill.error .status-dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(255, 139, 156, .12); }

.hero-card, .connection-card, .panel, .security-note {
  border: 1px solid var(--stroke);
  background: linear-gradient(136deg, rgba(28, 46, 78, .92), rgba(9, 17, 31, .86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, .76fr);
  min-height: 324px;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(30px, 6vw, 62px);
}
.hero-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 44%, rgba(131, 178, 255, .10));
  content: "";
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; max-width: 695px; }
.eyebrow { margin: 0 0 8px; color: var(--mint); font-size: .66rem; font-weight: 850; letter-spacing: .16em; line-height: 1.3; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 690px; margin: 11px 0 17px; font-size: clamp(2.35rem, 5.4vw, 4.35rem); line-height: .96; letter-spacing: -.073em; }
h1 em { color: var(--blue); font-style: normal; }
.hero-description { max-width: 590px; margin-bottom: 0; color: var(--muted); font-size: 1rem; line-height: 1.68; }
.player-welcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px 5px 5px;
  border: 1px solid rgba(114, 236, 201, .22);
  border-radius: 999px;
  color: #dffdf5;
  background: rgba(25, 93, 90, .18);
  font-size: .78rem;
  font-weight: 650;
}
.player-welcome strong { color: var(--mint); }
.player-avatar { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #051119; background: var(--mint); font-size: .67rem; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 29px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 0 17px;
  color: var(--text);
  font-weight: 790;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, opacity .16s ease;
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button:disabled { opacity: .52; }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-primary { background: linear-gradient(135deg, #8ab5ff, #6f83ff); box-shadow: 0 12px 28px rgba(91, 119, 255, .3); }
.button-primary:hover:not(:disabled) { background: linear-gradient(135deg, #a1c5ff, #8293ff); }
.button-primary.connecting svg { animation: button-spin .85s linear infinite; }
.button-secondary { border: 1px solid rgba(130, 175, 255, .28); background: rgba(72, 103, 161, .19); }
.button-secondary:hover:not(:disabled) { background: rgba(85, 122, 190, .31); }
.button-secondary.active { border-color: rgba(255, 139, 156, .5); background: rgba(255, 115, 137, .15); color: #ffe1e6; }
.connection-hint { max-width: 295px; margin: 0; color: var(--faint); font-size: .78rem; line-height: 1.45; }

.hero-visual { position: relative; display: grid; min-height: 190px; place-items: center; }
.visual-status-ring { position: absolute; width: min(25vw, 255px); height: min(25vw, 255px); min-width: 194px; min-height: 194px; border: 1px dashed rgba(151, 193, 255, .38); border-radius: 50%; animation: spin 21s linear infinite; }
.visual-status-ring::before { position: absolute; inset: 15%; border: 1px solid rgba(114, 236, 201, .25); border-radius: inherit; content: ""; }
.visual-core { position: relative; z-index: 2; display: grid; width: 98px; height: 98px; place-items: center; border: 1px solid rgba(235, 247, 255, .44); border-radius: 50%; background: radial-gradient(circle at 34% 24%, #edfdff 0, #a7defe 11%, #7295ff 36%, #4d49cc 67%, #24255f 100%); box-shadow: 0 0 0 12px rgba(127, 161, 255, .06), 0 0 76px rgba(102, 134, 255, .58); animation: float 4s ease-in-out infinite; }
.visual-core svg { width: 38px; height: 38px; margin-left: 4px; fill: #f6fbff; filter: drop-shadow(0 1px 2px rgba(16, 25, 77, .35)); }
.equalizer { position: absolute; right: 2%; bottom: 2%; display: flex; align-items: end; gap: 5px; height: 70px; opacity: .76; }
.equalizer i { display: block; width: 5px; height: 28%; border-radius: 99px; background: linear-gradient(to top, var(--violet), var(--mint)); animation: equalize 1.2s ease-in-out infinite alternate; }
.equalizer i:nth-child(2) { height: 67%; animation-delay: -.58s; }.equalizer i:nth-child(3) { height: 87%; animation-delay: -.25s; }.equalizer i:nth-child(4) { height: 49%; animation-delay: -.74s; }.equalizer i:nth-child(5) { height: 72%; animation-delay: -.4s; }.equalizer i:nth-child(6) { height: 42%; animation-delay: -.14s; }.equalizer i:nth-child(7) { height: 80%; animation-delay: -.9s; }
.visual-caption { position: absolute; bottom: -1px; left: 50%; color: rgba(203, 221, 255, .55); font-size: .59rem; font-weight: 850; letter-spacing: .18em; transform: translateX(-50%); }
body[data-connection-state="error"] .equalizer i { animation-play-state: paused; opacity: .4; }
body[data-connection-state="connected"] .visual-status-ring { border-color: rgba(114, 236, 201, .55); }

.connection-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border-radius: 20px;
  padding: 18px 20px;
  transition: border-color .24s ease, background .24s ease;
}
.connection-card[data-state="connected"] { border-color: rgba(114, 236, 201, .3); background: linear-gradient(135deg, rgba(20, 74, 75, .52), rgba(9, 27, 37, .85)); }
.connection-card[data-state="connecting"] { border-color: rgba(245, 200, 109, .32); }
.connection-card[data-state="error"] { border-color: rgba(255, 139, 156, .38); background: linear-gradient(135deg, rgba(100, 40, 60, .3), rgba(25, 14, 27, .86)); }
.connection-icon { display: grid; width: 43px; height: 43px; place-items: center; flex: 0 0 auto; border: 1px solid rgba(131, 178, 255, .25); border-radius: 13px; color: var(--blue); background: rgba(81, 116, 189, .16); }
.connection-icon svg { width: 21px; height: 21px; fill: currentColor; }
.connection-card[data-state="connected"] .connection-icon { color: var(--mint); border-color: rgba(114, 236, 201, .28); background: rgba(32, 137, 121, .17); }
.connection-card[data-state="connecting"] .connection-icon { color: var(--yellow); animation: gentle-pulse 1s ease-in-out infinite alternate; }
.connection-card[data-state="error"] .connection-icon { color: var(--danger); border-color: rgba(255, 139, 156, .28); background: rgba(154, 50, 76, .16); }
.connection-copy { min-width: 0; }
.connection-copy .eyebrow { margin-bottom: 4px; font-size: .6rem; }
.connection-copy h2 { margin: 0; color: var(--text); font-size: 1rem; letter-spacing: -.025em; }
.connection-copy p:not(.eyebrow) { max-width: 510px; margin: 5px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.connection-flow { display: flex; align-items: center; min-width: 212px; color: var(--faint); }
.flow-step { display: grid; justify-items: center; gap: 5px; color: inherit; font-size: .58rem; font-weight: 720; text-align: center; white-space: nowrap; }
.flow-step i { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid rgba(136, 160, 204, .34); border-radius: 50%; color: var(--muted); background: rgba(33, 47, 75, .48); font-size: .58rem; font-style: normal; font-weight: 850; }
.flow-step.active { color: #eaf3ff; }.flow-step.active i { border-color: rgba(130, 175, 255, .7); color: #fff; background: var(--blue); box-shadow: 0 0 0 4px rgba(130, 175, 255, .1); }
.flow-step.complete { color: #c9f8e9; }.flow-step.complete i { border-color: var(--mint); color: #08221e; background: var(--mint); }
.flow-step.complete i { font-size: 0; }.flow-step.complete i::after { content: "✓"; font-size: .72rem; }
.flow-step.error i { border-color: var(--danger); color: #fff2f4; background: var(--danger); }
.flow-line { width: 24px; height: 1px; margin: 0 5px; background: rgba(146, 168, 207, .24); }
.connection-card[data-state="connected"] .flow-line { background: rgba(114, 236, 201, .45); }
.retry-button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 36px; padding: 0 11px; border: 1px solid rgba(255, 174, 187, .34); border-radius: 10px; color: #ffe5e9; background: rgba(169, 50, 79, .16); font-size: .72rem; font-weight: 760; transition: transform .16s ease, background .16s ease; white-space: nowrap; }
.retry-button:hover { background: rgba(169, 50, 79, .3); transform: translateY(-1px); }.retry-button svg { width: 16px; height: 16px; fill: currentColor; }

.dashboard { display: grid; grid-template-columns: minmax(0, 1.26fr) minmax(320px, .74fr); gap: 18px; margin-top: 18px; }
.panel { min-height: 275px; border-radius: 22px; padding: 26px; }
.panel-heading, .voice-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.panel h2 { margin: 0; font-size: 1.25rem; letter-spacing: -.035em; }.panel h3 { margin: 0; font-size: 1rem; letter-spacing: -.025em; }
.count-badge, .voice-state { padding: 5px 8px; border: 1px solid rgba(130, 175, 255, .18); border-radius: 8px; color: var(--muted); background: rgba(69, 93, 139, .14); font-size: .71rem; font-weight: 740; white-space: nowrap; }
.icon-button { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid var(--stroke); border-radius: 10px; color: var(--muted); background: rgba(48, 69, 107, .14); transition: background .16s ease, color .16s ease; }
.icon-button:hover:not(:disabled) { color: var(--text); background: rgba(77, 108, 162, .3); }.icon-button:disabled { opacity: .43; }.icon-button svg { width: 16px; fill: currentColor; }
.empty-state { display: grid; justify-items: center; padding: 48px 15px 28px; text-align: center; }.empty-state svg { width: 43px; fill: #617aa7; opacity: .6; }.empty-state p { margin: 15px 0 7px; color: #d0dcf0; font-size: .92rem; font-weight: 660; }.empty-state span { color: var(--faint); font-size: .77rem; }.empty-state.hidden { display: none; }
.track-list { display: grid; gap: 10px; margin-top: 21px; }.track-list:empty { display: none; }
.track { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 11px 12px; border: 1px solid rgba(148, 182, 236, .1); border-radius: 13px; background: rgba(8, 15, 28, .4); animation: appear .3s ease-out; }.track-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; color: var(--mint); background: rgba(114, 236, 201, .1); }.track-icon svg { width: 17px; fill: currentColor; }.track-info { min-width: 0; }.track-name { overflow: hidden; margin: 0 0 3px; color: #e6efff; font-size: .8rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }.track-meta { margin: 0; color: var(--faint); font-size: .68rem; }.track button { width: 29px; height: 29px; border: 0; border-radius: 8px; color: var(--muted); background: transparent; }.track button:hover { color: var(--text); background: rgba(129, 158, 210, .14); }.track button svg { width: 15px; fill: currentColor; }

.controls-panel { display: flex; flex-direction: column; }.slider-field { display: grid; gap: 10px; margin-top: 31px; }.slider-field > span { display: flex; justify-content: space-between; gap: 14px; color: #cad8ed; font-size: .8rem; font-weight: 650; }.slider-field output { color: var(--mint); font-variant-numeric: tabular-nums; } input[type="range"] { width: 100%; height: 5px; margin: 0; accent-color: var(--mint); cursor: pointer; } input[type="range"]:disabled { opacity: .43; }
.voice-section { margin-top: 33px; padding-top: 22px; border-top: 1px solid var(--stroke); }.voice-copy { min-height: 38px; margin: 12px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }.voice-actions { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 16px; margin-top: 15px; }.compact { margin: 0; }.compact > span { font-size: .7rem; }
.voice-state.available { color: var(--mint); border-color: rgba(114, 236, 201, .22); }.voice-state.unavailable { color: #edb46a; border-color: rgba(237, 180, 106, .22); }.voice-state.muted { color: var(--danger); border-color: rgba(255, 139, 156, .25); }
.peer-mixer { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--stroke); }.peer-mixer-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }.peer-mixer-heading .eyebrow { margin-bottom: 5px; font-size: .58rem; }.peer-mixer h4 { margin: 0; color: var(--text); font-size: .9rem; letter-spacing: -.02em; }.peer-mixer-copy { margin: 9px 0 0; color: var(--faint); font-size: .7rem; line-height: 1.45; }.peer-empty { margin: 14px 0 0; padding: 13px; border: 1px dashed rgba(148, 182, 236, .2); border-radius: 11px; color: var(--faint); background: rgba(8, 15, 28, .22); font-size: .72rem; line-height: 1.45; text-align: center; }.peer-list { display: grid; gap: 8px; margin-top: 14px; }.peer-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(112px, .78fr) auto; align-items: center; gap: 12px; padding: 11px; border: 1px solid rgba(148, 182, 236, .12); border-radius: 12px; background: rgba(8, 15, 28, .42); animation: appear .25s ease-out; }.peer-summary { min-width: 0; }.peer-name { overflow: hidden; margin: 0 0 3px; color: #e6efff; font-size: .78rem; font-weight: 730; text-overflow: ellipsis; white-space: nowrap; }.peer-distance { margin: 0; color: var(--faint); font-size: .66rem; }.peer-volume { min-width: 0; margin: 0; gap: 6px; }.peer-volume > span { color: #cad8ed; font-size: .65rem; }.peer-mute { min-height: 31px; border: 1px solid rgba(130, 175, 255, .24); border-radius: 9px; padding: 0 9px; color: #dce8fb; background: rgba(72, 103, 161, .16); font-size: .68rem; font-weight: 760; transition: transform .16s ease, background .16s ease, border-color .16s ease; white-space: nowrap; }.peer-mute:hover { background: rgba(85, 122, 190, .29); transform: translateY(-1px); }.peer-mute.active { border-color: rgba(255, 139, 156, .42); color: #ffe1e6; background: rgba(169, 50, 79, .18); }

.security-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; border-radius: 15px; padding: 14px 16px; color: var(--muted); box-shadow: none; font-size: .74rem; line-height: 1.55; }.security-note svg { flex: 0 0 auto; width: 19px; fill: var(--mint); }.security-note p { margin: 0; }
.toast-region { position: fixed; z-index: 20; right: 20px; bottom: 20px; display: grid; width: min(370px, calc(100% - 40px)); gap: 8px; }.toast { padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; color: #eff6ff; background: rgba(20, 31, 52, .96); box-shadow: 0 12px 35px rgba(0, 0, 0, .28); font-size: .8rem; line-height: 1.4; animation: toast-in .25s ease-out; }.toast.error { border-color: rgba(255, 139, 156, .36); color: #ffe2e7; }.toast.warning { border-color: rgba(245, 200, 109, .35); color: #fff0cd; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.voice-statuses { display: flex; align-items: center; min-height: 25px; margin-top: 12px; }
.speaking-indicator { display: inline-flex; align-items: center; gap: 7px; min-height: 25px; padding: 5px 8px; border: 1px solid rgba(130, 175, 255, .18); border-radius: 999px; color: var(--faint); background: rgba(20, 31, 52, .36); font-size: .67rem; font-weight: 760; line-height: 1; transition: color .16s ease, border-color .16s ease, background .16s ease; }
.speaking-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(116, 131, 157, .12); transition: box-shadow .16s ease, transform .16s ease; }
.speaking-indicator.speaking { border-color: rgba(114, 236, 201, .44); color: var(--mint); background: rgba(28, 129, 109, .15); }
.speaking-indicator.speaking .speaking-dot { box-shadow: 0 0 0 4px rgba(114, 236, 201, .14), 0 0 13px rgba(114, 236, 201, .75); animation: speaking-pulse .85s ease-in-out infinite alternate; }
.peer-speaking { margin-top: 6px; padding: 3px 6px; font-size: .6rem; }
.peer-speaking .speaking-dot { width: 6px; height: 6px; }
.peer-row.speaking { border-color: rgba(114, 236, 201, .34); background: linear-gradient(114deg, rgba(27, 105, 95, .2), rgba(8, 15, 28, .44)); }
.noise-gate { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--stroke); }
.noise-gate-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.noise-gate-heading .eyebrow { margin-bottom: 5px; font-size: .58rem; }
.noise-gate h4 { margin: 0; color: var(--text); font-size: .9rem; letter-spacing: -.02em; }
.gate-state { padding: 5px 8px; border: 1px solid rgba(114, 236, 201, .2); border-radius: 8px; color: var(--mint); background: rgba(28, 129, 109, .12); font-size: .67rem; font-weight: 760; white-space: nowrap; }
.noise-gate-copy { margin: 9px 0 0; color: var(--faint); font-size: .7rem; line-height: 1.45; }
.gate-mode { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 0; padding: 0; border: 0; }
.gate-mode legend { width: 100%; margin-bottom: 6px; color: #cad8ed; font-size: .67rem; font-weight: 700; }
.gate-mode label { display: inline-flex; align-items: center; gap: 4px; min-height: 31px; padding: 0 8px; border: 1px solid rgba(130, 175, 255, .2); border-radius: 9px; color: #cbd9ee; background: rgba(48, 69, 107, .12); font-size: .66rem; font-weight: 690; }
.gate-mode label:has(input:checked) { border-color: rgba(114, 236, 201, .4); color: #dffdf5; background: rgba(28, 129, 109, .16); }
.gate-mode input { margin: 0; accent-color: var(--mint); }
.noise-gate-threshold { margin-top: 15px; }
@keyframes speaking-pulse { to { transform: scale(1.13); } }
@keyframes pulse { to { transform: scale(1.22); } }
@keyframes gentle-pulse { to { transform: scale(1.05); } }
@keyframes float { 50% { transform: translateY(-9px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes equalize { to { height: 100%; } }
@keyframes appear { from { opacity: 0; transform: translateY(7px); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }
@keyframes button-spin { to { transform: rotate(360deg); } }

@media (max-width: 940px) {
  .connection-card { grid-template-columns: auto minmax(0, 1fr) auto; }.connection-flow { grid-column: 2 / -1; justify-self: end; }
}
@media (max-width: 820px) {
  .hero-card { grid-template-columns: 1fr; }.hero-visual { min-height: 158px; }.equalizer { right: 15%; }.dashboard { grid-template-columns: 1fr; }.controls-panel { min-height: auto; }.connection-card { grid-template-columns: auto minmax(0, 1fr); }.connection-flow { grid-column: 1 / -1; justify-self: start; }.retry-button { grid-column: 2; justify-self: start; }
}
@media (max-width: 620px) {
  .topbar { align-items: flex-start; }.topbar-status { flex-direction: column; align-items: flex-end; gap: 6px; }.security-chip { max-width: 190px; white-space: normal; line-height: 1.25; }.connection-pill { font-size: .67rem; }.connection-card { gap: 13px; padding: 17px; }.connection-copy p:not(.eyebrow) { font-size: .72rem; }.connection-flow { min-width: 0; }.flow-line { width: min(11vw, 24px); }
}
@media (max-width: 510px) {
  .shell { width: min(100% - 26px, 1160px); padding-top: 18px; }.topbar { margin-bottom: 18px; }.brand { font-size: 1.18rem; }.brand-mark { width: 28px; height: 28px; }.hero-card, .panel { border-radius: 18px; }.hero-card { padding: 29px 22px; }.panel { padding: 21px; }.hero-visual { display: none; }.hero-description { font-size: .91rem; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 11px; }.connection-hint { max-width: none; }.connection-card { grid-template-columns: auto minmax(0, 1fr); }.connection-icon { width: 39px; height: 39px; }.connection-flow { width: 100%; justify-content: space-between; }.flow-line { flex: 1 1 auto; width: auto; }.retry-button { grid-column: 1 / -1; width: 100%; }.voice-actions { grid-template-columns: 1fr; }.peer-row { grid-template-columns: minmax(0, 1fr) auto; }.peer-volume { grid-column: 1 / -1; }.button-secondary { width: 100%; }.security-note { font-size: .7rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
