  :root {
    --bg: #f7f8f7;
    --surface: #ffffff;
    --surface-soft: #f1f3f2;
    --ink: #111312;
    --muted: #646b68;
    --dim: #8b928f;
    --line: #e2e6e3;
    --line-strong: #cfd6d2;
    --accent: #0f7a66;
    --accent-soft: #e2f3ee;
    --accent-ink: #07483d;
    --danger: #b84b5d;
    --radius: 20px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-din: "DIN Alternate", DIN, "Bahnschrift", "Roboto Condensed",
      "Arial Narrow", ui-sans-serif, sans-serif;
    --font-display: var(--font-din);
    --font-ui: var(--font-din);
    --font-mono: var(--font-din);
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    min-height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 15.5px;
    line-height: 1.52;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    font-style: normal;
  }

  body {
    overflow-x: hidden;
  }

  button,
  textarea,
  input {
    font: inherit;
  }

  button {
    cursor: pointer;
  }

  button:disabled {
    cursor: not-allowed;
  }

  .app {
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .topbar {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 22px 10px;
  }

  .wordmark {
    width: max-content;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 820;
    letter-spacing: 0.005em;
  }

  .session-title {
    justify-self: center;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.015em;
  }

  .session-status {
    justify-self: end;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent-ink);
    font-family: var(--font-mono);
    font-size: 0.71rem;
    font-weight: 650;
    letter-spacing: 0.015em;
  }

  .chat-studio {
    width: min(100%, 920px);
    min-height: calc(100dvh - 58px);
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    align-content: start;
    gap: 14px;
    padding: 18px 22px 34px;
  }

  .hero-copy {
    display: grid;
    gap: 8px;
    padding: 10px 2px 2px;
  }

  .hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  h1 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 2.15rem;
    line-height: 1.3;
    letter-spacing: -0.006em;
    font-weight: 760;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 66ch;
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.56;
    text-wrap: pretty;
  }

  .phase-chip,
  .skill-state,
  .meta-pill {
    width: max-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .phase-chip::before,
  .skill-state::before,
  .meta-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }

  .session-context {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
  }

  .skill-panel {
    min-width: 0;
    display: grid;
    gap: 10px;
  }

  .skill-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .skill-title div {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .skill-label,
  .stage-label,
  .meta-label {
    color: var(--dim);
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.025em;
  }

  .skill-title strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.04rem;
    line-height: 1.18;
    letter-spacing: -0.018em;
    font-weight: 720;
  }

  .skill-body {
    display: grid;
    gap: 8px;
  }

  .choice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .choice,
  .skill-action {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    padding: 0 13px;
    font-size: 0.82rem;
    font-weight: 680;
    letter-spacing: -0.003em;
    transition:
      background 160ms var(--ease),
      border-color 160ms var(--ease),
      color 160ms var(--ease),
      transform 160ms var(--ease);
  }

  .choice:hover,
  .skill-action:hover {
    border-color: var(--line-strong);
    background: var(--surface-soft);
  }

  .choice.selected,
  .skill-action.selected {
    border-color: transparent;
    background: var(--accent-soft);
    color: var(--accent-ink);
  }

  .file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .right-rail {
    display: contents;
  }

  .state-dock {
    display: grid;
    grid-template-columns: minmax(220px, auto) minmax(180px, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .agent-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .portrait {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: var(--surface-soft);
    border: 1px solid var(--line);
  }

  .portrait::before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.88;
    animation: breathe 2.8s var(--ease) infinite;
  }

  .portrait img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    opacity: 0;
    transform: scale(var(--portrait-scale, 1.04));
    filter: var(--portrait-filter, grayscale(0));
    transition: opacity 180ms var(--ease), filter 180ms var(--ease), transform 180ms var(--ease);
  }

  .agent-preview.has-image .portrait img {
    opacity: 1;
  }

  .agent-preview.has-image .portrait::before,
  .empty-portrait {
    display: none;
  }

  .preview-caption {
    min-width: 0;
    display: grid;
    gap: 1px;
  }

  .preview-caption span {
    color: var(--dim);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 650;
    letter-spacing: 0.02em;
  }

  .preview-caption strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 0.91rem;
    line-height: 1.24;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .preview-caption p {
    display: none;
  }

  .progress-panel {
    display: grid;
    gap: 8px;
  }

  .stage-progress {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 22px));
    gap: 5px;
  }

  .stage-progress span {
    height: 5px;
    border-radius: 999px;
    background: var(--line);
    overflow: hidden;
  }

  .stage-progress span::before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
    transition: width 180ms var(--ease);
  }

  .stage-progress span.done::before {
    width: 100%;
  }

  .stage-progress span.active::before {
    width: 52%;
  }

  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .stat {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--muted);
  }

  .stat strong {
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 680;
  }

  .live-room {
    position: relative;
    z-index: 0;
    min-height: clamp(500px, 58vh, 620px);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto minmax(170px, 1fr) auto auto;
    gap: 12px;
    padding: 14px 14px 56px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 30%, rgba(15, 122, 102, 0.2), transparent 38%),
      linear-gradient(180deg, #151a18 0%, #0b0e0d 100%);
    color: #ffffff;
  }

  .local-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transform: scaleX(-1);
    transition: opacity 220ms var(--ease);
  }

  .live-room.camera-on .local-video {
    opacity: 0.92;
  }

  .dream-field {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 260ms var(--ease);
  }

  .live-room.camera-on .dream-field {
    opacity: 0.42;
  }

  .dream-field::before,
  .dream-field::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    width: 54vmin;
    height: 54vmin;
    border-radius: 50%;
    border: 1px solid rgba(142, 230, 207, 0.16);
    box-shadow:
      0 0 34px rgba(142, 230, 207, 0.1),
      inset 0 0 38px rgba(142, 230, 207, 0.08);
    transform: translate(-50%, -50%) scale(0.68);
    animation: dreamRipple 7.6s var(--ease) infinite;
  }

  .dream-field::after {
    width: 72vmin;
    height: 72vmin;
    opacity: 0.62;
    animation-delay: -3.2s;
  }

  .cam-idle {
    position: relative;
    z-index: 1;
    grid-row: 2;
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 22px;
    text-align: center;
    transition: opacity 180ms var(--ease);
  }

  .live-room.camera-on .cam-idle {
    opacity: 0;
    pointer-events: none;
  }

  .idle-orb {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(226, 243, 238, 0.14);
    color: #e7faf5;
    font-family: var(--font-display);
    font-size: 1.62rem;
    font-weight: 780;
    letter-spacing: -0.04em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    animation: breathe 3.2s var(--ease) infinite;
  }

  .cam-idle strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.12;
    letter-spacing: -0.027em;
    font-weight: 720;
  }

  .cam-idle p {
    max-width: 48ch;
    margin: 8px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
    text-wrap: pretty;
  }

  .meeting-top,
  .live-controls,
  .subtitle-card {
    position: relative;
    z-index: 2;
  }

  .meeting-top {
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .meeting-pill,
  .agent-badge {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #1f2925;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.018em;
    backdrop-filter: blur(10px);
  }

  .meeting-pill::before,
  .agent-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
  }

  .agent-badge::before {
    animation: pulse 1.8s var(--ease) infinite;
  }

  .subtitle-card {
    position: relative;
    grid-row: 3;
    justify-self: center;
    max-width: min(86%, 680px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 2px 8px 18px;
    border-radius: 0;
    background: transparent;
    color: rgba(239, 250, 247, 0.94);
    backdrop-filter: none;
    box-shadow: none;
    animation: subtitleFloat 4s var(--ease) infinite;
  }

  .subtitle-card::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.78em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8ee6cf;
    box-shadow: 0 0 12px rgba(142, 230, 207, 0.7);
    animation: pulse 1.8s var(--ease) infinite;
  }

  .subtitle-card span {
    color: rgba(188, 233, 221, 0.78);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.028em;
    white-space: nowrap;
  }

  .subtitle-card strong {
    min-width: 0;
    overflow: hidden;
    max-width: 48ch;
    font-size: 0.82rem;
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .live-controls {
    grid-row: 4;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .call-button,
  .cam-secondary {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 720;
    letter-spacing: -0.004em;
    transition:
      transform 160ms var(--ease),
      background 160ms var(--ease),
      color 160ms var(--ease),
      opacity 160ms var(--ease);
  }

  .call-button {
    min-width: 220px;
    padding: 0 20px;
    background: #ffffff;
    color: var(--accent-ink);
  }

  .call-button.is-active {
    background: #fff0f2;
    color: var(--danger);
  }

  .cam-secondary {
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
  }

  .cam-secondary:disabled {
    opacity: 0.42;
  }

  .call-button:active,
  .cam-secondary:active {
    transform: translateY(1px);
  }

  .conversation {
    position: relative;
    z-index: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--surface);
    overflow: hidden;
  }

  .transcript {
    min-height: 150px;
    max-height: 210px;
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 28px 28px 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
  }

  .message {
    width: 100%;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--ink);
  }

  .message::before {
    content: "M";
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-ink);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 650;
  }

  .message.user::before {
    content: "Y";
    grid-column: 2;
    grid-row: 1;
    background: var(--surface-soft);
    color: var(--ink);
  }

  .message small {
    display: block;
    margin-bottom: 5px;
    color: var(--dim);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 650;
    letter-spacing: 0.026em;
  }

  .message.user {
    grid-template-columns: minmax(0, 1fr) 34px;
    color: var(--ink);
  }

  .message.user .message-text {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: fit-content;
    max-width: min(100%, 680px);
    padding: 10px 13px;
    border-radius: 16px;
    background: var(--surface-soft);
  }

  .message-text {
    max-width: 72ch;
    color: inherit;
  }

  .message-copy {
    display: block;
    font-size: 0.96rem;
    line-height: 1.62;
    letter-spacing: -0.004em;
    white-space: pre-wrap;
    text-wrap: pretty;
  }

  .composer {
    display: grid;
    gap: 10px;
    position: relative;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--bg);
  }

  .voice-presence {
    min-height: 34px;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    padding: 0 6px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .voice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dim);
  }

  .voice-presence.listening .voice-dot,
  .voice-presence.speaking .voice-dot,
  .voice-presence.active .voice-dot {
    background: var(--accent);
  }

  .voice-presence.listening .voice-dot {
    animation: pulse 1.4s var(--ease) infinite;
  }

  .voice-copy {
    color: var(--accent-ink);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.025em;
    white-space: nowrap;
  }

  .interim-text {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.86rem;
    letter-spacing: -0.002em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .input-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: end;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--surface);
  }

  .input-row textarea {
    width: 100%;
    min-height: 44px;
    max-height: 128px;
    padding: 11px 4px;
    resize: none;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.45;
    letter-spacing: -0.006em;
    caret-color: var(--accent);
  }

  .input-row textarea::placeholder {
    color: #59615d;
  }

  .voice-button,
  .quiet-button,
  .send-button,
  .continue-button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: -0.003em;
    transition:
      background 160ms var(--ease),
      color 160ms var(--ease),
      transform 160ms var(--ease),
      opacity 160ms var(--ease);
  }

  .voice-button {
    width: 42px;
    padding: 0;
    background: var(--surface-soft);
    color: var(--accent-ink);
  }

  .voice-button::before {
    content: "";
    width: 13px;
    height: 13px;
    display: inline-block;
    border: 2px solid currentColor;
    border-radius: 999px;
    border-top-color: transparent;
  }

  .voice-button.is-listening {
    background: var(--accent);
    color: #ffffff;
    animation: pulse 1.5s var(--ease) infinite;
  }

  .voice-button.is-speaking {
    background: var(--accent-soft);
    color: var(--accent-ink);
  }

  .voice-button.is-live:not(.is-listening):not(.is-speaking) {
    background: var(--accent-soft);
    color: var(--accent-ink);
  }

  .quiet-button {
    padding: 0 12px;
    background: transparent;
    color: var(--muted);
  }

  .quiet-button:hover {
    background: var(--surface-soft);
    color: var(--ink);
  }

  .send-button {
    padding: 0 16px;
    background: var(--ink);
    color: #ffffff;
  }

  .send-button:hover {
    background: #000000;
  }

  .voice-button:active,
  .quiet-button:active,
  .send-button:active,
  .continue-button:active,
  .choice:active,
  .skill-action:active {
    transform: translateY(1px);
  }

  .continue-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
  }

  .start-voice {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent-ink);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: -0.003em;
    transition:
      background 160ms var(--ease),
      color 160ms var(--ease),
      border-color 160ms var(--ease),
      transform 160ms var(--ease);
  }

  .start-voice:hover {
    border-color: #b8dcd2;
    background: var(--accent-soft);
  }

  .start-voice.is-active {
    border-color: transparent;
    background: var(--accent-ink);
    color: #ffffff;
  }

  .continue-button {
    min-width: 176px;
    padding: 0 16px;
    background: var(--accent);
    color: #ffffff;
  }

  .continue-button:disabled {
    opacity: 0.42;
  }

  .result-panel {
    display: none;
    padding: 14px 15px;
    border: 1px solid #c7eadf;
    border-radius: var(--radius);
    background: #eefaf6;
    color: var(--accent-ink);
  }

  .result-panel strong {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.018em;
    font-weight: 720;
  }

  .result-panel.visible {
    display: grid;
    gap: 3px;
  }

  .result-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    text-wrap: pretty;
  }

  @keyframes breathe {
    0%, 100% { transform: scale(0.85); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 1; }
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 122, 102, 0.22); }
    50% { box-shadow: 0 0 0 8px rgba(15, 122, 102, 0); }
  }

  @keyframes subtitleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.82; }
    50% { transform: translateY(-4px); opacity: 1; }
  }

  @keyframes dreamRipple {
    0% { transform: translate(-50%, -50%) scale(0.62); opacity: 0; }
    26% { opacity: 0.75; }
    100% { transform: translate(-50%, -50%) scale(1.08); opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }
  }

  @media (max-width: 760px) {
    .topbar {
      grid-template-columns: 1fr auto;
      padding-inline: 16px;
    }

    .session-title {
      display: none;
    }

    .chat-studio {
      padding: 14px 14px 18px;
    }

    h1 {
      font-size: 1.82rem;
      line-height: 1.18;
      letter-spacing: -0.032em;
    }

    .hero-copy p {
      font-size: 0.93rem;
      line-height: 1.5;
    }

    .hero-row,
    .session-context,
    .state-dock,
    .continue-row {
      align-items: stretch;
      flex-direction: column;
    }

    .session-context {
      grid-template-columns: 1fr;
    }

    .state-dock {
      display: grid;
      grid-template-columns: 1fr;
    }

    .transcript {
      min-height: 220px;
      max-height: none;
      padding: 22px 16px 24px;
    }

    .live-room {
      min-height: 560px;
      grid-template-rows: auto minmax(150px, 1fr) auto auto;
      padding: 12px 12px 48px;
    }

    .meeting-top {
      align-items: flex-start;
    }

    .subtitle-card {
      padding: 12px 13px;
      max-width: 100%;
    }

    .subtitle-card strong {
      font-size: 0.78rem;
      line-height: 1.25;
    }

    .live-controls {
      flex-direction: column;
    }

    .call-button,
    .cam-secondary {
      width: 100%;
    }

    .input-row {
      grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .quiet-button {
      display: none;
    }

    .send-button {
      padding: 0 13px;
    }

    .continue-button,
    .start-voice {
      width: 100%;
    }

    .voice-presence {
      grid-template-columns: auto minmax(0, 1fr);
    }

    .interim-text {
      grid-column: 2;
    }
  }
