:root {
  --bg: #f2f3f0;
  --surface: #fcfcfa;
  --surface-alt: #f6f7f4;
  --surface-strong: #eef3ec;
  --line: #dadfd8;
  --line-strong: #c9d0c8;
  --text: #111111;
  --muted: #5e665f;
  --muted-2: #7a847d;
  --brand: #2d7ff0;
  --brand-soft: #eaf4ff;
  --teal: #0d9488;
  --danger: #d93c15;
  --shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 10px 24px rgba(17, 17, 17, 0.05);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(242, 243, 240, 0.86);
  border-bottom: 1px solid rgba(218, 223, 216, 0.9);
}

.topbar__inner,
.page,
.footer__inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.18s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.99);
}

.btn--primary {
  background: var(--brand);
  color: white;
}

.btn--secondary {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--line);
}

.btn--danger {
  background: white;
  color: var(--danger);
  border: 1px solid rgba(217, 60, 21, 0.35);
}

.page {
  flex: 1;
  padding: 48px 0 96px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-head.center {
  align-items: center;
  text-align: center;
}

.section-head.compact {
  gap: 8px;
}

.center {
  text-align: center;
}

.cluster {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cluster.center {
  justify-content: center;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.title-xl {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.title-lg {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.lede,
.muted {
  color: var(--muted);
}

.lede {
  font-size: 1.05rem;
  line-height: 1.72;
}

.small {
  font-size: 0.9rem;
}

.pill-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
}

.pill {
  padding: 7px 14px;
  background: #e7e8e5;
  color: var(--muted);
  font-size: 0.86rem;
}

.tag {
  padding: 6px 12px;
  border: 1px solid #dfe5df;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.8rem;
}

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 24px;
}

.panel {
  padding: 28px;
}

.grid-2,
.grid-3,
.feature-grid,
.flow-grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero {
  display: grid;
  gap: 40px;
}

.hero--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
}

.hero__copy {
  max-width: 760px;
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric-strip {
  display: grid;
  gap: 16px;
}

.metric-strip--inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(218, 223, 216, 0.95);
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-card {
  position: absolute;
  right: -16px;
  bottom: 36px;
  width: min(280px, 60%);
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(218, 223, 216, 0.95);
  box-shadow: var(--shadow);
}

.feature-card,
.flow-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-card__step {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #edf0eb;
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-list span {
  color: var(--muted);
}

.debug-value {
  text-align: right;
}

.debug-value[data-tone="success"] {
  color: var(--teal);
}

.debug-value[data-tone="danger"] {
  color: var(--danger);
}

.debug-value[data-tone="warning"] {
  color: var(--brand);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: white;
}

.player {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.player__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface-alt);
  border-bottom: 1px solid #e3e7e0;
}

.player__stage {
  position: relative;
  min-height: 560px;
  padding: 24px;
  background: linear-gradient(180deg, #e7ece7 0%, #f0fbff 100%);
}

.player__overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.overlay-card {
  max-width: 240px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 229, 223, 0.95);
  backdrop-filter: blur(6px);
}

.overlay-card strong {
  display: block;
  margin-bottom: 4px;
}

.remote-video {
  position: relative;
  min-height: 470px;
  border-radius: 24px;
  border: 1px solid #e7ece6;
  background: linear-gradient(180deg, #d7e1db 0%, #f7f8f5 100%);
  overflow: hidden;
}

.remote-video::after {
  content: "The AI guide joins when you’re ready.";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: var(--muted-2);
  font-size: 0.96rem;
}

.local-video {
  position: absolute;
  right: 36px;
  bottom: 82px;
  width: 176px;
  height: 124px;
  border-radius: 20px;
  border: 1px solid #f8fbfc;
  background: linear-gradient(180deg, #c7d4d9 0%, #edf1f2 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.local-video::after {
  content: "You";
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}

.dock {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid #e0e6e0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.icon-dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
}

.icon-dot--primary {
  background: var(--brand);
  border-color: var(--brand);
}

.runway-root {
  min-height: 470px;
}

.runway-fallback {
  position: relative;
  min-height: 470px;
}

.runway-fallback__remote::after {
  content: "The Runway guide joins when live connect is available.";
}

.runway-fallback__footer {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.runway-fallback__footer .dock {
  position: static;
  transform: none;
}

.runway-fallback__note {
  margin: 0;
  padding: 10px 14px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(224, 230, 224, 0.95);
  backdrop-filter: blur(10px);
}

.runway-live {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 470px;
}

.runway-live__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.runway-live__surface {
  min-height: 470px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e7ece6;
  background: linear-gradient(180deg, #d7e1db 0%, #f7f8f5 100%);
}

.runway-live__call {
  min-height: 470px;
  --avatar-bg: transparent;
  --avatar-radius: 24px;
  --avatar-control-size: 46px;
  --avatar-end-call-bg: var(--danger);
}

.runway-live__surface > * {
  min-height: 470px;
}

.runway-live__surface video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.runway-live__note {
  margin: 0;
  color: var(--muted);
}

.runway-live__note--error {
  color: var(--danger);
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 340px;
  gap: 24px;
  align-items: start;
}

.room-sidebar,
.replay-sidebar {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transcript {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transcript--compact .bubble {
  max-width: 100%;
}

.bubble {
  max-width: 90%;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.bubble.user {
  align-self: flex-end;
  background: var(--brand-soft);
  border-color: #cfe1ff;
}

.bubble__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bubble p {
  margin: 0;
  line-height: 1.6;
}

.quote-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-card--soft {
  background: linear-gradient(180deg, rgba(45, 127, 240, 0.05), #fcfcfa);
}

.quote-card--blue {
  background: var(--brand-soft);
  border-color: #cfe1ff;
}

.quote-card--glass {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.onboarding {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  min-height: 820px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.onboarding__left {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 64px;
  color: white;
  background: linear-gradient(160deg, #0d9488 0%, #5eead4 52%, #a7f3d0 100%);
}

.onboarding__left::before,
.onboarding__left::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.onboarding__left::before {
  width: 280px;
  height: 280px;
  left: -60px;
  top: -40px;
}

.onboarding__left::after {
  width: 180px;
  height: 180px;
  right: 48px;
  bottom: 72px;
}

.onboarding__right {
  padding: 56px;
  background: var(--surface);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.summary-card {
  position: sticky;
  top: 104px;
}

.choice-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.choice-card input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.choice-card:has(input:checked) {
  border-color: #bfd8ff;
  background: var(--brand-soft);
  box-shadow: 0 10px 24px rgba(45, 127, 240, 0.09);
}

.choice-card__eyebrow {
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 28px;
}

.field,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.field:focus,
.textarea:focus {
  outline: 2px solid transparent;
  border-color: #aac9ff;
  box-shadow: 0 0 0 4px rgba(45, 127, 240, 0.12);
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-stack,
.form-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.switch-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid #edf0eb;
  cursor: pointer;
}

.switch-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.switch-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--brand);
}

.settings-layout,
.history-layout,
.replay-layout {
  display: grid;
  gap: 28px;
}

.settings-layout {
  grid-template-columns: 240px minmax(0, 1fr);
}

.settings-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 28px;
}

.sidebar {
  padding: 20px 14px;
  border-right: 1px solid var(--line);
}

.side-nav {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.side-nav a.active,
.side-nav a:hover {
  background: #e7e8e5;
  color: var(--text);
}

.history-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-panel__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-panel .field,
.filter-panel select.field {
  min-width: 200px;
}

.session-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.session-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.session-item__meta {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.session-item__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid #edf0eb;
}

.replay-layout {
  grid-template-columns: minmax(0, 1.06fr) 340px;
  align-items: start;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(45, 127, 240, 0.07), #fcfcfa);
  border-color: #cfe1ff;
}

.price-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 14px 28px rgba(45, 127, 240, 0.12);
}

.price {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
}

.price-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.comparison-panel {
  overflow: hidden;
}

.comparison-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(0, 1fr));
}

.comparison-row > div {
  padding: 16px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child > div {
  border-bottom: 0;
}

.comparison-row > div:not(:first-child) {
  border-left: 1px solid var(--line);
  text-align: center;
}

.comparison-row--head > div {
  background: var(--surface-alt);
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.status-note {
  min-height: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.status-note[data-tone="success"] {
  color: var(--teal);
}

.status-note[data-tone="danger"] {
  color: var(--danger);
}

.empty-copy {
  text-align: center;
  color: var(--muted);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  gap: 16px;
  text-align: center;
}

.not-found-card {
  max-width: 620px;
}

.footer {
  margin-top: auto;
  padding: 32px 0;
  background: #111111;
  color: rgba(255, 255, 255, 0.82);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__copy {
  margin: 8px 0 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.footer__links a:hover {
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.btn .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1160px) {
  .hero--split,
  .room-layout,
  .history-layout,
  .replay-layout,
  .settings-main,
  .pricing-cards,
  .feature-grid,
  .flow-grid,
  .grid-3,
  .faq-grid,
  .onboarding-grid,
  .comparison-row,
  .choice-grid--three {
    grid-template-columns: 1fr;
  }

  .settings-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-nav,
  .room-sidebar,
  .replay-sidebar,
  .summary-card {
    position: static;
  }

  .comparison-row > div:not(:first-child) {
    text-align: left;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    background: rgba(242, 243, 240, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(218, 223, 216, 0.9);
    z-index: 20;
  }

  .nav--open {
    display: flex;
  }

  .nav--open a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav--open a:last-child {
    border-bottom: 0;
  }

  .topbar__inner,
  .page,
  .footer__inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .onboarding {
    grid-template-columns: 1fr;
  }

  .onboarding__left,
  .onboarding__right {
    padding: 36px 24px;
  }

  .choice-grid--two,
  .grid-2,
  .metric-strip--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .player__stage {
    min-height: 430px;
  }

  .remote-video {
    min-height: 320px;
  }

  .local-video {
    width: 132px;
    height: 94px;
    right: 24px;
    bottom: 72px;
  }

  .floating-card {
    position: static;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    gap: 12px;
  }

  .brand {
    font-size: 1.45rem;
  }

  .page {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .panel,
  .card,
  .price-card {
    padding: 22px;
  }

  .player__overlay {
    position: static;
    padding-bottom: 14px;
  }

  .player__stage {
    padding: 18px;
  }

  .dock {
    bottom: 16px;
  }
}
