:root {
  --bg-color: #ffffff;
  --text-primary: #111111;
  --text-secondary: #777b82;
  --divider: #f1f2f4;
  --figure-bg: #f8f7f3;
  --accent: #178f5a;
  --cyan: #0b7894;
  --amber: #b86d00;
  --radius-l: 28px;
  --radius-m: 16px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 32px;
  --space-l: 64px;
  --space-xl: 120px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Lustria", Georgia, serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Liberation Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(circle at 16% 8%, rgba(23, 143, 90, 0.12), transparent 22rem),
    radial-gradient(circle at 88% 14%, rgba(11, 120, 148, 0.1), transparent 24rem),
    var(--bg-color);
  color: var(--text-primary);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  inset: -25% -15% auto auto;
  z-index: -1;
  width: 740px;
  height: 740px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 200, 87, 0.18), transparent 38%),
    radial-gradient(circle at 70% 60%, rgba(23, 143, 90, 0.12), transparent 48%),
    radial-gradient(circle at 40% 80%, rgba(93, 228, 255, 0.1), transparent 44%);
  filter: blur(52px);
  pointer-events: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-m) 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.logo {
  color: var(--text-primary);
  font-weight: 650;
  text-decoration: none;
}

nav a,
.back-link,
article a,
.footer a {
  color: #0a7ea4;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

nav a {
  margin-left: var(--space-m);
  color: var(--text-secondary);
}

nav a:hover,
.back-link:hover,
article a:hover,
.footer a:hover {
  opacity: 0.7;
}

.article-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-l) 0 var(--space-xl);
}

.back-link {
  display: inline-flex;
  margin-bottom: var(--space-m);
  font-size: 15px;
  font-weight: 550;
}

.eyebrow {
  margin-bottom: var(--space-s);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: var(--space-s);
  background: linear-gradient(180deg, #111 0%, #363b36 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 52px;
  font-weight: 720;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.dek {
  margin-bottom: var(--space-l);
  color: var(--text-secondary);
  font-size: 21px;
  line-height: 1.45;
}

article {
  font-size: 19px;
  line-height: 1.72;
}

article p {
  margin-bottom: 1.35em;
}

article h2 {
  margin: 2.4em 0 0.65em;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

code {
  border-radius: 6px;
  background: #f3f4f5;
  color: #202421;
  font-family: var(--mono);
  font-size: 0.88em;
  padding: 0.12em 0.35em;
}

figure {
  margin: var(--space-l) calc((760px - min(100vw - 48px, 1120px)) / 2);
  border-radius: var(--radius-l);
  background: var(--figure-bg);
  overflow: hidden;
}

figcaption {
  padding: 14px 22px 20px;
  border-top: 1px solid rgba(26, 31, 38, 0.08);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.hero-figure {
  margin-top: 0;
}

.rtd-demo {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.78), rgba(247, 244, 237, 0.9)),
    url("/rtd/assets/desktop-earth-bg.png") center / cover no-repeat,
    linear-gradient(180deg, #fffaf1, #f7f4ed);
}

.speech-rail {
  position: relative;
  min-height: 100px;
  margin-bottom: 18px;
}

.speech-bubble {
  position: absolute;
  max-width: min(360px, 82%);
  padding: 12px 14px;
  border: 1px solid rgba(26, 31, 38, 0.1);
  border-radius: 18px 18px 18px 4px;
  background: rgba(255, 255, 255, 0.92);
  color: #161b22;
  cursor: pointer;
  font: 14px/1.35 var(--sans);
  box-shadow: 0 16px 35px rgba(33, 30, 24, 0.12);
  opacity: 0.62;
  transform: translateY(8px) scale(0.98);
  animation: bubbleFloat 5s ease-in-out infinite;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.speech-bubble:nth-child(1) {
  left: 0;
  bottom: 8px;
}

.speech-bubble:nth-child(2) {
  left: 27%;
  top: 0;
  animation-delay: 700ms;
}

.speech-bubble:nth-child(3) {
  right: 0;
  bottom: 20px;
  animation-delay: 1300ms;
}

.speech-bubble.active,
.speech-bubble:hover,
.speech-bubble:focus-visible {
  border-color: rgba(23, 143, 90, 0.48);
  opacity: 1;
  outline: none;
  transform: translateY(0) scale(1);
}

@keyframes bubbleFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

.demo-window {
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(26, 31, 38, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(46, 36, 20, 0.14);
  overflow: hidden;
}

.window-chrome,
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(26, 31, 38, 0.1);
  background: rgba(255, 255, 255, 0.76);
}

.window-chrome span,
.browser-chrome span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-chrome span:nth-child(1),
.browser-chrome span:nth-child(1) {
  background: #ff5f56;
}

.window-chrome span:nth-child(2),
.browser-chrome span:nth-child(2) {
  background: #ffbd2e;
}

.window-chrome span:nth-child(3),
.browser-chrome span:nth-child(3) {
  background: #27c93f;
}

.window-chrome strong {
  margin-left: 8px;
  color: #5a6270;
  font-family: var(--mono);
  font-size: 12px;
}

.address-bar {
  flex: 1;
  margin-left: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(26, 31, 38, 0.1);
  border-radius: 999px;
  background: #f3f5f7;
  color: #59616d;
  font-family: var(--mono);
  font-size: 12px;
}

.terminal-window {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.terminal-app {
  display: grid;
  min-height: 508px;
  margin: 16px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: #fbfaf7;
  color: #1f2523;
  font-family: var(--mono);
  font-size: 12px;
  grid-template-rows: auto 132px 1fr auto;
  gap: 10px;
  box-shadow: none;
}

.terminal-app-header,
.status-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.terminal-app-header strong {
  color: #1f2523;
  font-weight: 800;
}

.terminal-app-header span,
.status-bar,
.status-bar em {
  overflow: hidden;
  color: #7a7770;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ink-panel {
  position: relative;
  padding: 12px 14px;
  border: 1px solid #d8d4ca;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.voice-panel[data-mode="speaking"],
.voice-panel[data-mode="transcribing"] {
  border-color: #caa56a;
}

.tasks-panel {
  border-color: #d8d4ca;
  overflow: auto;
}

.panel-title {
  margin-bottom: 8px;
  color: #5d695f;
}

.voice-label {
  margin-bottom: 8px;
  color: #5d695f;
}

.voice-panel[data-mode="speaking"] .voice-label,
.voice-panel[data-mode="transcribing"] .voice-label {
  color: #9b7b49;
}

.waveform {
  color: #9b7b49;
  white-space: nowrap;
  overflow: hidden;
}

.waveform span {
  display: block;
  min-width: 760px;
  animation: waveform 1.4s linear infinite;
}

@keyframes waveform {
  from { transform: translateX(0); }
  to { transform: translateX(-90px); }
}

.heard-line,
.empty-task {
  margin: 8px 0 0;
  color: #7a7770;
}

.heard-line.active {
  color: #1f2523;
}

.terminal-task {
  margin-top: 10px;
}

.terminal-task strong {
  display: block;
  color: #206142;
  font-weight: 800;
}

.terminal-task.done strong {
  color: #0b7894;
}

.terminal-task.killed strong {
  color: #9b7b49;
}

.terminal-task p {
  margin: 3px 0;
  color: #1f2523;
  font-size: 12px;
  line-height: 1.35;
}

.terminal-task small {
  color: #7a7770;
}

.model-picker {
  margin: 0 0 10px;
  padding: 9px 10px;
  border: 1px solid #d8d4ca;
  border-radius: 6px;
  color: #7a7770;
}

.model-picker[hidden] {
  display: none;
}

.model-picker div {
  margin-bottom: 6px;
  color: #5d695f;
}

.model-picker button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #7a7770;
  font: inherit;
  text-align: left;
}

.model-picker button.selected {
  color: #9b7b49;
}

.model-picker small {
  display: block;
  margin-top: 6px;
  color: #7a7770;
}

.status-bar {
  align-items: center;
  font-size: 11px;
}

.status-bar b {
  color: #206142;
}

.demo-controls {
  display: flex;
  gap: 8px;
  margin: 0 16px 16px;
}

.demo-controls button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(31, 35, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #3a403b;
  cursor: pointer;
  font: 12px var(--sans);
}

kbd {
  min-width: 20px;
  padding: 2px 5px;
  border-radius: 5px;
  background: #111820;
  color: #f6fff9;
  font: 11px var(--mono);
  text-align: center;
}

.code-figure {
  background: #08100d;
}

.code-figure pre {
  overflow-x: auto;
  padding: 24px;
  color: #edf5ef;
  font: 12px/1.55 var(--mono);
}

.code-figure code {
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(26, 31, 38, 0.08);
}

.flow-grid div {
  min-height: 168px;
  padding: 20px;
  background: #fbfaf7;
}

.flow-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.flow-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
}

.flow-grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.intent-animation {
  margin: 34px calc((760px - min(100vw - 48px, 920px)) / 2);
  padding: 22px;
  border: 1px solid rgba(26, 31, 38, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(23, 143, 90, 0.12), transparent 18rem),
    linear-gradient(180deg, #fffdf8, #f7f4ed);
}

.intent-stage {
  position: relative;
  min-height: 300px;
  padding: 22px;
  border: 1px solid rgba(26, 31, 38, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.intent-wave,
.intent-phrase,
.intent-highlight-row,
.intent-task-list,
.barge-stream,
.barge-task-list {
  position: absolute;
  left: 22px;
  right: 22px;
}

.intent-wave {
  top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 82px;
}

.intent-wave span {
  width: 8px;
  height: 28px;
  border-radius: 999px;
  background: #9b7b49;
  transform-origin: center;
}

.intent-split.is-running .intent-wave {
  animation: waveExit 620ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)) 900ms both;
}

.intent-split.is-running .intent-wave span {
  animation: soundBar 420ms cubic-bezier(0.23, 1, 0.32, 1) infinite alternate;
}

.intent-wave span:nth-child(2n) {
  animation-delay: 70ms;
}

.intent-wave span:nth-child(3n) {
  animation-delay: 140ms;
}

.intent-phrase {
  top: 76px;
  color: #1f2523;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  transform: translateY(10px);
}

.intent-phrase > span,
.barge-phrase .original > span,
.barge-phrase .correction > span {
  display: inline-block;
  margin-right: 0.26em;
  opacity: 0;
  transform: translateY(10px);
}

.intent-split.is-running .intent-phrase {
  animation: phraseLift 320ms cubic-bezier(0.23, 1, 0.32, 1) 2360ms both;
}

.intent-split.is-running .intent-phrase span {
  animation: wordIn 150ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.intent-split.is-running .intent-phrase span:nth-child(1) { animation-delay: 1080ms; }
.intent-split.is-running .intent-phrase span:nth-child(2) { animation-delay: 1180ms; }
.intent-split.is-running .intent-phrase span:nth-child(3) { animation-delay: 1280ms; }
.intent-split.is-running .intent-phrase span:nth-child(4) { animation-delay: 1380ms; }
.intent-split.is-running .intent-phrase span:nth-child(5) { animation-delay: 1480ms; }
.intent-split.is-running .intent-phrase span:nth-child(6) { animation-delay: 1580ms; }
.intent-split.is-running .intent-phrase span:nth-child(7) { animation-delay: 1680ms; }
.intent-split.is-running .intent-phrase span:nth-child(8) { animation-delay: 1780ms; }

.intent-split.is-running .intent-phrase span::after {
  content: "";
}

.intent-highlight-row {
  top: 142px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  opacity: 0;
}

.intent-highlight-row span {
  padding: 10px 12px;
  border: 1px solid rgba(32, 97, 66, 0.24);
  border-radius: 12px;
  background: #edf8f1;
  color: #206142;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  transform: translateY(8px) scale(0.98);
}

.intent-split.is-running .intent-highlight-row {
  animation: fadeIn 180ms ease-out 2580ms both;
}

.intent-split.is-running .intent-highlight-row span {
  animation: chipPop 260ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.intent-split.is-running .intent-highlight-row span:nth-child(1) {
  animation-delay: 2620ms;
}

.intent-split.is-running .intent-highlight-row span:nth-child(2) {
  animation-delay: 2740ms;
}

.intent-task-list {
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.intent-task-list div,
.barge-task {
  padding: 14px;
  border: 1px solid rgba(26, 31, 38, 0.1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(42, 36, 29, 0.08);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}

.intent-task-list strong,
.barge-task strong {
  display: block;
  margin-bottom: 5px;
  color: #206142;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.intent-task-list p,
.barge-task p {
  margin: 0;
  color: #1f2523;
  font-size: 14px;
  line-height: 1.35;
}

.intent-split.is-running .intent-task-list div {
  animation: taskIn 280ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.intent-split.is-running .intent-task-list div:nth-child(1) {
  animation-delay: 3080ms;
}

.intent-split.is-running .intent-task-list div:nth-child(2) {
  animation-delay: 3220ms;
}

.barge-stream {
  top: 46px;
}

.barge-phrase {
  width: 100%;
  max-width: none;
  color: #1f2523;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  transform: translateY(10px);
}

.barge-phrase .correction {
  display: inline;
  color: #206142;
}

.barge-phrase .original {
  position: relative;
  display: inline;
  margin-right: 0.34em;
}

.barge-phrase .original::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #9b6a24;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.intent-barge.is-running .barge-phrase .original::after {
  animation: strikeLine 220ms cubic-bezier(0.23, 1, 0.32, 1) 1540ms both;
}

.intent-barge.is-running .barge-phrase .original > span,
.intent-barge.is-running .barge-phrase .correction > span {
  animation: wordIn 140ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.intent-barge.is-running .barge-phrase .original > span:nth-child(1) { animation-delay: 260ms; }
.intent-barge.is-running .barge-phrase .original > span:nth-child(2) { animation-delay: 360ms; }
.intent-barge.is-running .barge-phrase .original > span:nth-child(3) { animation-delay: 460ms; }
.intent-barge.is-running .barge-phrase .original > span:nth-child(4) { animation-delay: 560ms; }

.intent-barge.is-running .barge-phrase .correction > span:nth-child(1) { animation-delay: 1040ms; }
.intent-barge.is-running .barge-phrase .correction > span:nth-child(2) { animation-delay: 1140ms; }
.intent-barge.is-running .barge-phrase .correction > span:nth-child(3) { animation-delay: 1240ms; }
.intent-barge.is-running .barge-phrase .correction > span:nth-child(4) { animation-delay: 1340ms; }
.intent-barge.is-running .barge-phrase .correction > span:nth-child(5) { animation-delay: 1440ms; }

.intent-barge.is-running .barge-phrase .original {
  animation: phraseDim 180ms ease-out 1580ms both;
}

.barge-task-list {
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.barge-task span {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.barge-task.canceled {
  background: #fff8f0;
}

.barge-task.canceled strong,
.barge-task.canceled span {
  color: #9b6a24;
}

.barge-task.canceled span {
  background: #f7e5c8;
}

.barge-task.active span {
  background: #edf8f1;
  color: #206142;
}

.intent-barge.is-running .barge-task.canceled {
  animation:
    taskIn 260ms cubic-bezier(0.23, 1, 0.32, 1) 760ms both,
    cancelTask 260ms cubic-bezier(0.23, 1, 0.32, 1) 1600ms both;
}

.intent-barge.is-running .barge-task.active {
  animation: taskIn 280ms cubic-bezier(0.23, 1, 0.32, 1) 1880ms both;
}

.replay-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 16px auto 0;
  padding: 0 14px;
  border: 1px solid rgba(26, 31, 38, 0.12);
  border-radius: 8px;
  background: #111820;
  color: #f6fff9;
  cursor: pointer;
  font: 13px var(--mono);
  transition: transform 140ms cubic-bezier(0.23, 1, 0.32, 1), border-color 140ms ease;
}

.replay-button:hover,
.replay-button:focus-visible {
  border-color: rgba(23, 143, 90, 0.4);
  outline: none;
}

.replay-button:active {
  transform: scale(0.97);
}

@keyframes soundBar {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1.8); }
}

@keyframes waveExit {
  to {
    opacity: 0;
    transform: translateY(-16px) scale(0.94);
  }
}

@keyframes phraseIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phraseLift {
  to {
    top: 42px;
    transform: translateY(0) scale(0.96);
  }
}

@keyframes phraseDim {
  to {
    opacity: 0.58;
    filter: saturate(0.55);
    transform: translateY(0);
  }
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes strikeLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes chipPop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes taskIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cancelTask {
  to {
    opacity: 0.72;
    transform: translateY(0) scale(0.98);
    filter: saturate(0.55);
  }
}

.tweet-figure {
  display: flex;
  justify-content: center;
  padding: 24px;
  background: #f8f8fa;
}

.tweet-figure .twitter-tweet {
  margin: 0 !important;
}

.signature {
  margin-top: var(--space-l);
  color: var(--text-secondary);
  font-size: 17px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: var(--space-l) 0;
  border-top: 1px solid var(--divider);
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .terminal-app {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 22px;
  }

  .site-header {
    padding: 24px 0;
  }

  nav a {
    margin-left: 16px;
  }

  .article-shell {
    padding-top: 40px;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .dek {
    font-size: 19px;
  }

  article {
    font-size: 17px;
  }

  figure {
    margin-right: -10px;
    margin-left: -10px;
    border-radius: 18px;
  }

  .rtd-demo {
    padding: 16px;
  }

  .speech-rail {
    min-height: 184px;
  }

  .speech-bubble {
    position: relative;
    inset: auto !important;
    display: block;
    max-width: none;
    width: 100%;
    margin-bottom: 8px;
    animation: none;
  }

  .terminal-app {
    margin: 12px;
    min-height: 460px;
    font-size: 11px;
    grid-template-rows: auto 124px 1fr auto;
  }

  .status-bar,
  .terminal-app-header {
    flex-direction: column;
    gap: 4px;
  }

  .demo-controls {
    flex-wrap: wrap;
    margin: 0 12px 12px;
  }

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

  .intent-animation {
    margin-right: -10px;
    margin-left: -10px;
    padding: 14px;
  }

  .intent-stage {
    min-height: 430px;
    padding: 16px;
  }

  .intent-wave,
  .intent-phrase,
  .intent-highlight-row,
  .intent-task-list,
  .barge-stream,
  .barge-task-list {
    left: 16px;
    right: 16px;
  }

  .intent-highlight-row,
  .intent-task-list,
  .barge-task-list {
    grid-template-columns: 1fr;
  }

  .intent-phrase {
    font-size: 16px;
  }

  .intent-task-list,
  .barge-task-list {
    bottom: 16px;
  }

  .barge-stream {
    top: 34px;
  }

  .barge-phrase {
    max-width: 100%;
    font-size: 15px;
  }

  .footer {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
  }
}
