:root {
  --vz-canvas: #f7f8f4;
  --vz-paper: #ffffff;
  --vz-ink: #151816;
  --vz-muted: #606761;
  --vz-line: #ccd1cc;
  --vz-green: #0b654e;
  --vz-green-dark: #074a3a;
  --vz-mint: #dceee8;
  --vz-sky: #dbeef4;
  --vz-citron: #def35d;
  --vz-coral: #ff866e;
  --vz-danger: #a83025;
  --vz-max: 1240px;
}

html {
  scroll-behavior: smooth;
}

body.site-mode {
  margin: 0;
  background: var(--vz-canvas);
  color: var(--vz-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-shell,
.site-shell * {
  box-sizing: border-box;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--vz-canvas);
  color: var(--vz-ink);
}

.site-shell a {
  color: inherit;
}

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

.site-shell h1,
.site-shell h2,
.site-shell h3,
.site-shell p {
  margin-top: 0;
  letter-spacing: 0;
}

.site-shell h1,
.site-shell h2,
.site-shell h3 {
  color: var(--vz-ink);
}

.site-shell button,
.site-shell a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell button:focus-visible,
.site-shell a:focus-visible,
.site-shell summary:focus-visible {
  outline: 3px solid rgba(11, 101, 78, 0.28);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--vz-paper);
  border: 1px solid var(--vz-ink);
  transform: translateY(-160%);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.launch-strip {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 24px;
  background: var(--vz-green-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.launch-strip a {
  display: inline-flex;
  gap: 5px;
  color: var(--vz-citron);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.launch-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--vz-citron);
}

.marketing-header {
  width: min(var(--vz-max), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--vz-line);
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vz-ink);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.marketing-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.marketing-nav a,
.header-actions .text-link {
  color: var(--vz-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.marketing-nav a {
  position: relative;
  padding: 8px 0;
}

.marketing-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--vz-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.marketing-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-actions .text-link {
  padding: 10px;
}

.site-shell .button {
  width: auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--vz-ink);
  border-radius: 6px;
  color: var(--vz-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.site-shell .button:hover {
  transform: translateY(-2px);
}

.site-shell .button-dark {
  background: var(--vz-ink);
  color: #ffffff;
}

.site-shell .button-dark:hover {
  background: var(--vz-green-dark);
}

.site-shell .button-quiet {
  background: transparent;
  border-color: var(--vz-line);
}

.site-shell .button-quiet:hover {
  border-color: var(--vz-ink);
  background: var(--vz-paper);
}

.site-shell .button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
}

.landing-hero {
  width: min(var(--vz-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 0;
}

.hero-copy {
  width: min(880px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--vz-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-shell .landing-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(56px, 8.1vw, 116px);
  font-weight: 760;
  line-height: 0.94;
  text-align: center;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--vz-muted);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.46;
  text-wrap: balance;
}

.landing-hero .hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.compatibility {
  margin: 16px 0 0;
  color: var(--vz-muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-stage {
  min-height: 620px;
  position: relative;
  margin-top: 64px;
  padding: 80px 48px 48px;
  overflow: hidden;
  border: 1px solid #050b08;
  border-radius: 8px 8px 0 0;
  background: var(--vz-ink);
  color: #ffffff;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-stage::before {
  width: 42%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--vz-green-dark);
  clip-path: polygon(0 0, 68% 0, 100% 100%, 0 100%);
}

.hero-stage::after {
  width: 160px;
  height: 160px;
  right: 4%;
  bottom: -82px;
  border: 38px solid var(--vz-coral);
  border-radius: 50%;
}

.stage-menubar {
  min-height: 44px;
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background: #202421;
  color: rgba(255,255,255,0.78);
  font-size: 11px;
}

.stage-menubar-apps {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stage-menubar-apps strong { color: #ffffff; }
.stage-apple { color: #ffffff; font-size: 15px; }
.stage-clock { justify-self: end; }

.stage-recorder-pill {
  min-width: 96px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--vz-ink);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  transition: min-width 300ms ease, background 300ms ease, color 300ms ease, transform 300ms ease;
}

.stage-recorder-pill b {
  font-size: 10px;
  line-height: 1;
}

.stage-recorder-pill .mini-wave {
  width: 28px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
}

.stage-recorder-pill .mini-wave i {
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: currentColor;
  animation: none;
}

.hero-stage .stage-recorder-pill .mini-wave i {
  height: 5px;
  background: currentColor;
}

.hero-stage.phase-listen .stage-recorder-pill {
  min-width: 124px;
  background: var(--vz-coral);
  color: #24110d;
  transform: translateY(2px);
}

.hero-stage.phase-listen .stage-recorder-pill .mini-wave i {
  animation: recorder-wave 620ms ease-in-out infinite alternate;
}

.hero-stage.phase-clean .stage-recorder-pill {
  min-width: 118px;
  background: var(--vz-citron);
}

.hero-stage.phase-insert .stage-recorder-pill {
  min-width: 116px;
  background: var(--vz-sky);
  color: #173e4c;
}

.hero-stage.phase-done .stage-recorder-pill {
  background: #56cda2;
  color: #06261a;
}

@keyframes recorder-wave {
  from { height: 4px; }
  to { height: 14px; }
}

.stage-recorder-pill .mini-wave i:nth-child(2) { animation-delay: -180ms; }
.stage-recorder-pill .mini-wave i:nth-child(3) { animation-delay: -360ms; }
.stage-recorder-pill .mini-wave i:nth-child(4) { animation-delay: -90ms; }
.stage-recorder-pill .mini-wave i:nth-child(5) { animation-delay: -270ms; }

.stage-status {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 700;
}

.stage-status > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vz-citron);
  box-shadow: 0 0 0 6px rgba(222, 243, 93, 0.14);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.stage-status b { font-weight: 700; }

.hero-stage.phase-listen .stage-status i {
  background: var(--vz-coral);
  box-shadow: 0 0 0 6px rgba(255,134,110,0.16);
}

.hero-stage.phase-clean .stage-status i { background: var(--vz-citron); }
.hero-stage.phase-insert .stage-status i,
.hero-stage.phase-done .stage-status i { background: #56cda2; }

.stage-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-replay {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 19px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.demo-replay:hover { background: rgba(255,255,255,0.14); transform: rotate(-28deg); }
.demo-replay:focus-visible { outline: 2px solid var(--vz-citron); outline-offset: 3px; }

.stage-status kbd {
  min-width: 42px;
  display: inline-grid;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.32);
  border-bottom-width: 3px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font: inherit;
  text-transform: lowercase;
}

.speech-stream {
  width: 44%;
  min-height: 122px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 80px;
}

.speech-stream span {
  width: 7px;
  height: var(--h);
  border-radius: 2px;
  background: var(--vz-citron);
  animation: vozly-wave 1.2s ease-in-out infinite alternate;
}

.speech-stream span:nth-child(2n) { animation-delay: -0.25s; }
.speech-stream span:nth-child(3n) { animation-delay: -0.6s; }
.speech-stream span:nth-child(5n) { background: var(--vz-coral); }

.hero-stage:not(.phase-listen) .speech-stream span {
  animation-play-state: paused;
  opacity: 0.28;
  transform: scaleY(0.32);
}

@keyframes vozly-wave {
  from { transform: scaleY(0.45); opacity: 0.62; }
  to { transform: scaleY(1); opacity: 1; }
}

.spoken-thought {
  width: 43%;
  position: relative;
  z-index: 2;
  margin: 4px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 620;
  line-height: 1.2;
}

.spoken-thought > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.spoken-thought q { quotes: "\201c" "\201d"; }
.spoken-thought q:empty::before { content: "Start speaking naturally..."; color: rgba(255,255,255,0.35); }

.typing-caret {
  width: 2px;
  height: 1em;
  display: none;
  margin-left: 3px;
  vertical-align: -0.08em;
  background: var(--vz-citron);
  animation: cursor-blink 720ms steps(2, jump-none) infinite;
}

.hero-stage.phase-listen .typing-caret { display: inline-block; }

.destination-window {
  width: min(54%, 620px);
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 48px;
  overflow: hidden;
  border: 1px solid rgba(21,24,22,0.14);
  border-radius: 8px;
  background: var(--vz-paper);
  color: var(--vz-ink);
  box-shadow: 0 28px 70px rgba(0,0,0,0.3);
  transform: translateY(8px) scale(0.985);
  transition: transform 420ms cubic-bezier(.2,.7,.2,1), box-shadow 420ms ease;
}

.hero-stage.phase-insert .destination-window,
.hero-stage.phase-done .destination-window {
  box-shadow: 0 34px 90px rgba(0,0,0,0.4);
  transform: translateY(0) scale(1);
}

.window-bar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--vz-line);
  font-size: 12px;
}

.window-bar strong {
  font-size: 12px;
  font-weight: 700;
}

.window-app {
  justify-self: end;
  color: var(--vz-muted);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vz-coral);
}

.window-dots i:nth-child(2) { background: var(--vz-citron); }
.window-dots i:nth-child(3) { background: #56cda2; }

.message-context {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid var(--vz-line);
}

.message-context .avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vz-sky);
  color: #194658;
  font-size: 13px;
  font-weight: 800;
}

.message-context strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.message-context p {
  margin: 0;
  color: var(--vz-muted);
  font-size: 14px;
  line-height: 1.45;
}

.composer-preview {
  padding: 22px 24px 18px;
  background: #f0f3ef;
}

.composer-preview p {
  min-height: 74px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 560;
  line-height: 1.45;
}

.composer-preview p:empty::before {
  content: attr(data-placeholder);
  color: #9ba19c;
  font-weight: 500;
}

.composer-preview > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--vz-green);
  font-size: 12px;
  font-weight: 750;
  opacity: 0.52;
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.hero-stage.phase-clean .composer-preview > span {
  color: #6e5a00;
  opacity: 1;
}

.hero-stage.phase-insert .composer-preview > span,
.hero-stage.phase-done .composer-preview > span {
  opacity: 1;
  transform: translateY(-2px);
}

.composer-preview b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vz-green);
  color: #ffffff;
  font-size: 10px;
}

.demo-progress {
  width: 43%;
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.demo-progress span {
  position: relative;
  padding-top: 12px;
  color: rgba(255,255,255,0.42);
  font-size: 10px;
  font-weight: 760;
  transition: color 240ms ease;
}

.demo-progress span::before {
  content: "";
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255,255,255,0.18);
}

.demo-progress i {
  width: 0;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--vz-citron);
  transition: width 420ms ease;
}

.demo-progress span.active { color: #ffffff; }
.demo-progress span.active i,
.demo-progress span.complete i { width: 100%; }
.demo-progress span.complete { color: rgba(255,255,255,0.7); }

.app-band {
  width: 100%;
  padding: 24px max(24px, calc((100vw - var(--vz-max)) / 2));
  border-top: 1px solid var(--vz-ink);
  border-bottom: 1px solid var(--vz-line);
  background: var(--vz-paper);
}

.app-band > p {
  width: min(var(--vz-max), 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.app-band strong { font-weight: 780; }

.app-band span {
  color: var(--vz-muted);
  text-align: right;
}

.speed-section,
.product-tour-section,
.steps-section,
.rewrite-section,
.features-section,
.work-section,
.faq-section {
  width: min(var(--vz-max), calc(100% - 48px));
  margin: 0 auto;
}

.speed-section {
  min-height: 620px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  padding: 120px 0;
}

.speed-number {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid var(--vz-ink);
  border-radius: 8px 0 0 8px;
  background: var(--vz-citron);
}

.speed-label,
.speed-number small {
  max-width: 220px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.4;
}

.speed-number strong {
  display: block;
  font-size: clamp(72px, 9vw, 138px);
  font-weight: 780;
  line-height: 0.84;
}

.speed-rule {
  height: 1px;
  margin: 18px 0;
  background: rgba(21,24,22,0.4);
}

.speed-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 6vw;
  border-top: 1px solid var(--vz-ink);
  border-right: 1px solid var(--vz-ink);
  border-bottom: 1px solid var(--vz-ink);
  border-radius: 0 8px 8px 0;
  background: var(--vz-paper);
}

.site-shell .speed-copy h2,
.site-shell .section-heading h2,
.site-shell .rewrite-intro h2,
.site-shell .features-heading h2,
.site-shell .privacy-section h2,
.site-shell .faq-intro h2,
.site-shell .final-cta h2 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 710;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.speed-copy > p:last-child,
.section-heading > p:last-child,
.rewrite-intro > p,
.features-heading > p,
.privacy-section > div > p,
.faq-intro > p {
  color: var(--vz-muted);
  font-size: 18px;
  line-height: 1.58;
}

.speed-copy > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
}

.product-tour-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 68px;
  padding: 32px 0 132px;
}

.product-tour-copy {
  align-self: center;
}

.site-shell .product-tour-copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 730;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-tour-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 26px 0 0;
  color: var(--vz-muted);
  font-size: 17px;
  line-height: 1.58;
}

.tour-sequence {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--vz-line);
}

.tour-sequence span {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--vz-line);
  color: #888e89;
  font-size: 14px;
  font-weight: 720;
  transition: color 260ms ease, padding-left 260ms ease;
}

.tour-sequence b {
  color: inherit;
  font-size: 10px;
}

.tour-sequence span.active {
  padding-left: 8px;
  color: var(--vz-green);
}

.app-tour-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--vz-ink);
  border-radius: 8px;
  background: #f6f7f4;
  box-shadow: 0 32px 90px rgba(21,24,22,0.14);
  transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1), box-shadow 650ms ease;
}

.app-tour-window.is-visible,
.app-tour-window:hover {
  box-shadow: 0 40px 110px rgba(21,24,22,0.2);
  transform: perspective(1500px) rotateY(0) rotateX(0) translateY(-4px);
}

.tour-titlebar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--vz-line);
  background: #ffffff;
  font-size: 12px;
}

.tour-titlebar strong { font-size: 12px; }

.tour-local-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vz-green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-local-badge i,
.tour-live-dot,
.tour-stats p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37ba8b;
}

.tour-layout {
  min-height: 488px;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr) 138px;
}

.tour-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 14px;
  border-right: 1px solid var(--vz-line);
  background: #eef1ed;
}

.tour-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 6px 20px;
  font-size: 14px;
}

.tour-brand img {
  width: 27px;
  height: 27px;
  border-radius: 6px;
}

.tour-sidebar > span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #757b76;
  font-size: 12px;
  font-weight: 700;
}

.tour-sidebar > span.active {
  background: var(--vz-mint);
  color: var(--vz-ink);
}

.tour-main {
  min-width: 0;
  padding: 28px 24px;
  background: #fbfcfa;
}

.tour-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--vz-line);
}

.tour-heading small,
.tour-live-row small,
.tour-stats > small {
  color: var(--vz-green);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0;
}

.tour-heading h3 {
  max-width: 370px;
  margin: 8px 0 0;
  font-size: 23px;
  line-height: 1.08;
}

.tour-search {
  min-width: 80px;
  min-height: 31px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--vz-line);
  border-radius: 6px;
  background: #ffffff;
  color: #a0a49f;
  font-size: 10px;
}

.tour-live-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--vz-ink);
  border-radius: 7px;
  background: var(--vz-citron);
  box-shadow: 8px 8px 0 var(--vz-ink);
}

.tour-live-dot {
  background: var(--vz-green);
  box-shadow: 0 0 0 5px rgba(11,101,78,0.12);
}

.tour-live-row p {
  min-height: 42px;
  margin: 7px 0 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.tour-live-row p:empty::before {
  content: "Start speaking...";
  color: rgba(21,24,22,0.45);
}

.tour-mini-wave {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.tour-mini-wave i {
  width: 3px;
  height: 9px;
  border-radius: 2px;
  background: var(--vz-green);
  animation: recorder-wave 580ms ease-in-out infinite alternate;
}

.tour-mini-wave i:nth-child(2) { animation-delay: -180ms; }
.tour-mini-wave i:nth-child(3) { animation-delay: -350ms; }
.tour-mini-wave i:nth-child(4) { animation-delay: -100ms; }
.tour-mini-wave i:nth-child(5) { animation-delay: -280ms; }

.tour-history {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.tour-history article {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--vz-line);
}

.tour-history time,
.tour-history span {
  color: #929792;
  font-size: 9px;
}

.tour-history p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.tour-stats {
  padding: 28px 18px;
  border-left: 1px solid var(--vz-line);
  background: #f1f3ef;
}

.tour-stats > div {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--vz-line);
}

.tour-stats strong {
  font-size: 36px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tour-stats span {
  margin-top: 6px;
  color: var(--vz-muted);
  font-size: 10px;
}

.tour-stats p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 26px 0 0;
  color: var(--vz-green);
  font-size: 10px;
  font-weight: 760;
}

.steps-section {
  padding: 108px 0 120px;
  border-top: 1px solid var(--vz-line);
}

.section-heading {
  max-width: 850px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--vz-ink);
  border-bottom: 1px solid var(--vz-ink);
}

.steps-grid article {
  min-height: 360px;
  position: relative;
  padding: 28px;
  border-right: 1px solid var(--vz-ink);
}

.steps-grid article:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  color: var(--vz-muted);
  font-size: 12px;
  font-weight: 800;
}

.step-icon,
.mini-wave {
  height: 104px;
  margin: 42px 0 30px;
}

.step-icon {
  display: flex;
  align-items: center;
}

.key-icon {
  width: 104px;
  height: 68px;
  justify-content: center;
  border: 1px solid var(--vz-ink);
  border-bottom-width: 5px;
  border-radius: 7px;
  background: var(--vz-paper);
  font-size: 28px;
  font-weight: 760;
}

.mini-wave {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mini-wave i {
  width: 8px;
  height: 26px;
  border-radius: 2px;
  background: var(--vz-green);
}

.mini-wave i:nth-child(2), .mini-wave i:nth-child(4) { height: 60px; }
.mini-wave i:nth-child(3) { height: 92px; background: var(--vz-coral); }

.insert-icon {
  font-family: Georgia, serif;
  font-size: 74px;
}

.insert-icon span {
  display: inline-block;
  margin-left: 2px;
  color: var(--vz-green);
  animation: cursor-blink 1s steps(2, jump-none) infinite;
}

@keyframes cursor-blink { 50% { opacity: 0; } }

.steps-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

.steps-grid p {
  margin: 0;
  color: var(--vz-muted);
  font-size: 15px;
  line-height: 1.58;
}

.rewrite-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
  padding: 112px 0;
}

.rewrite-intro > p:not(.section-kicker) {
  max-width: 500px;
  margin: 24px 0 0;
}

.demo-tabs {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 3px;
  margin-top: 32px;
  padding: 4px;
  border: 1px solid var(--vz-line);
  border-radius: 7px;
  background: var(--vz-paper);
}

.site-shell .demo-tab {
  width: auto;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--vz-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 740;
  cursor: pointer;
}

.site-shell .demo-tab.active {
  background: var(--vz-ink);
  color: #ffffff;
}

.rewrite-demo {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: stretch;
  padding: 20px;
  border: 1px solid var(--vz-ink);
  border-radius: 8px;
  background: var(--vz-sky);
}

.demo-column {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(21,24,22,0.22);
  border-radius: 6px;
}

.raw-column {
  background: rgba(255,255,255,0.48);
}

.clean-column {
  background: var(--vz-paper);
}

.demo-column > span {
  color: var(--vz-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-column > p {
  margin: auto 0;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 560;
  line-height: 1.35;
}

.raw-column > p {
  color: #59625d;
}

.clean-column > p {
  color: var(--vz-ink);
}

.clean-column small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vz-green);
  font-size: 12px;
  font-weight: 750;
}

.clean-column small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39b88a;
}

.transform-mark {
  display: grid;
  place-items: center;
  color: var(--vz-ink);
}

.transform-mark b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--vz-ink);
  border-radius: 50%;
  background: var(--vz-citron);
  font-size: 17px;
}

.features-section {
  padding: 116px 0;
  border-top: 1px solid var(--vz-line);
}

.features-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  column-gap: 60px;
  max-width: none;
}

.features-heading .section-kicker {
  grid-column: 1 / -1;
}

.features-heading > p:last-child {
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.feature {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--vz-line);
  border-radius: 8px;
  background: var(--vz-paper);
}

.feature h3 {
  max-width: 500px;
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.feature > div:last-child > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--vz-muted);
  font-size: 16px;
  line-height: 1.55;
}

.feature-label {
  margin-bottom: 16px;
  color: var(--vz-green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-visual,
.dictionary-visual,
.history-visual,
.control-visual {
  min-height: 220px;
}

.feature-local {
  background: var(--vz-green-dark);
  border-color: var(--vz-green-dark);
}

.feature-local h3,
.feature-local .feature-label,
.feature-local > div:last-child > p:last-child {
  color: #ffffff;
}

.local-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.local-visual .chip {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.local-visual strong {
  font-size: 37px;
}

.local-visual small {
  color: var(--vz-citron);
  font-weight: 750;
}

.model-line {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 7px;
}

.model-line i {
  width: 9px;
  height: 22px;
  background: var(--vz-citron);
}

.model-line i:nth-child(2n) { height: 52px; }
.model-line i:nth-child(3n) { height: 82px; background: var(--vz-coral); }

.feature-dictionary {
  background: var(--vz-citron);
  border-color: var(--vz-ink);
}

.dictionary-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.dictionary-visual span {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(21,24,22,0.22);
  border-radius: 5px;
  background: rgba(255,255,255,0.5);
}

.dictionary-visual del {
  color: #6e755a;
}

.dictionary-visual b {
  font-size: 17px;
}

.feature-history {
  background: var(--vz-sky);
}

.history-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  gap: 10px;
}

.history-visual > div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(21,24,22,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.62);
}

.history-visual span,
.history-visual small {
  color: var(--vz-muted);
  font-size: 12px;
  font-weight: 750;
}

.history-visual strong {
  margin-top: auto;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.9;
}

.control-visual {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 14px 16px;
  padding: 24px;
  border: 1px solid var(--vz-line);
  border-radius: 6px;
  background: #f1f3ef;
}

.control-visual b {
  align-self: center;
  font-size: 14px;
}

.toggle {
  width: 46px;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid #98a09a;
  border-radius: 999px;
  background: #d3d8d4;
}

.toggle i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.toggle.on {
  justify-content: flex-end;
  border-color: var(--vz-green);
  background: var(--vz-green);
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 72px;
  padding: 112px max(24px, calc((100vw - var(--vz-max)) / 2));
  background: var(--vz-green-dark);
  color: #ffffff;
}

.privacy-section h2,
.privacy-section .section-kicker,
.privacy-section > div > p {
  color: #ffffff;
}

.privacy-section > div > p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.76);
}

.privacy-mark {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  background: var(--vz-citron);
  color: var(--vz-ink);
}

.privacy-mark img {
  width: 64px;
  height: 64px;
}

.privacy-mark span {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 780;
  line-height: 0.9;
}

.inline-arrow {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  color: var(--vz-citron) !important;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.work-section {
  padding: 120px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--vz-ink);
  border-bottom: 1px solid var(--vz-ink);
}

.work-grid article {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--vz-ink);
}

.work-grid article:last-child { border-right: 0; }
.work-grid article:nth-child(2) { background: var(--vz-sky); }
.work-grid article:nth-child(3) { background: var(--vz-citron); }

.work-grid span {
  color: var(--vz-muted);
  font-size: 12px;
  font-weight: 800;
}

.work-grid h3 {
  margin: 76px 0 12px;
  font-size: 24px;
  line-height: 1.08;
}

.work-grid p {
  margin: 0;
  color: var(--vz-muted);
  font-size: 15px;
  line-height: 1.5;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  padding: 112px 0 126px;
  border-top: 1px solid var(--vz-line);
}

.faq-intro > p:last-child {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--vz-ink);
}

.faq-list details {
  border-bottom: 1px solid var(--vz-ink);
}

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--vz-line);
  border-radius: 50%;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--vz-citron);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 50px 26px 0;
  color: var(--vz-muted);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta {
  width: min(var(--vz-max), calc(100% - 48px));
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 24px;
  border: 1px solid var(--vz-ink);
  border-radius: 8px;
  background: var(--vz-citron);
  text-align: center;
}

.final-cta > img {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta > p:not(.section-kicker) {
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 520;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.final-cta .button-quiet {
  border-color: rgba(21,24,22,0.45);
}

.marketing-footer {
  width: min(var(--vz-max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  padding: 66px 0 26px;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: var(--vz-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-column {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-column a {
  color: var(--vz-muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover { color: var(--vz-ink); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--vz-line);
  color: var(--vz-muted);
  font-size: 12px;
}

/* Download handoff */
body.download-page {
  margin: 0;
  background: var(--vz-canvas);
  color: var(--vz-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.download-shell {
  min-height: 100vh;
}

.download-main {
  width: min(1080px, calc(100% - 48px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding: 78px 0;
}

.download-main h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.download-main .download-lede {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--vz-muted);
  font-size: 19px;
  line-height: 1.55;
}

.download-main .hero-actions { margin-top: 30px; }

.release-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--vz-line);
}

.release-notes span {
  color: var(--vz-muted);
  font-size: 12px;
}

.release-notes strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.testing-install-note {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(21,24,22,0.24);
  border-radius: 7px;
  background: rgba(255,255,255,0.56);
}

.testing-install-note[hidden] { display: none; }

.testing-install-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.testing-install-note p strong {
  display: block;
  margin-bottom: 3px;
}

.testing-install-note ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--vz-muted);
  font-size: 13px;
  line-height: 1.55;
}

.testing-install-note li + li { margin-top: 7px; }

.testing-install-note li strong { color: var(--vz-ink); }

.download-art {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--vz-ink);
  border-radius: 8px;
  background: var(--vz-sky);
}

.download-art img {
  width: 114px;
  height: 114px;
  filter: drop-shadow(0 22px 24px rgba(21,24,22,0.2));
}

.download-art .install-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.install-flow span:not(.install-arrow) {
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(21,24,22,0.24);
  border-radius: 6px;
  background: rgba(255,255,255,0.62);
  font-size: 15px;
  font-weight: 750;
  text-align: center;
}

.install-arrow {
  font-size: 28px;
}

.download-art p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Keep the browser sign-in surface visually connected to the public site. */
body.auth-mode {
  background: #e5eee9;
}

body.auth-mode .auth-card {
  border-color: rgba(21,24,22,0.18);
  border-radius: 8px;
  background: var(--vz-paper);
  box-shadow: 0 28px 72px rgba(7,74,58,0.13);
  backdrop-filter: none;
}

body.auth-mode .auth-card h1 {
  color: var(--vz-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 38px;
  font-weight: 760;
}

@media (max-width: 1040px) {
  .marketing-header {
    grid-template-columns: auto auto;
  }

  .marketing-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding: 0 0 18px;
  }

  .marketing-nav.open { display: flex; }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    display: none;
  }

  .hero-stage {
    min-height: 700px;
  }

  .speech-stream,
  .spoken-thought {
    width: 70%;
  }

  .destination-window {
    width: 72%;
  }

  .product-tour-section {
    grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1.5fr);
    gap: 40px;
  }

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

  .tour-stats { display: none; }

  .rewrite-section {
    grid-template-columns: 1fr;
  }

  .rewrite-intro {
    max-width: 780px;
  }

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

  .work-grid article:nth-child(2) { border-right: 0; }
  .work-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--vz-ink); }

  .download-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .launch-strip {
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .marketing-header,
  .landing-hero,
  .speed-section,
  .product-tour-section,
  .steps-section,
  .rewrite-section,
  .features-section,
  .work-section,
  .faq-section,
  .final-cta,
  .marketing-footer {
    width: min(100% - 28px, var(--vz-max));
  }

  .marketing-header {
    min-height: 68px;
    grid-template-columns: auto auto;
    position: relative;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 21px;
    height: 2px;
    background: var(--vz-ink);
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .marketing-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 4px 0 18px;
  }

  .marketing-nav.open { display: flex; }

  .marketing-nav a {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--vz-line);
  }

  .landing-hero {
    padding-top: 62px;
  }

  .site-shell .landing-hero h1 {
    font-size: clamp(54px, 15vw, 82px);
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-stage {
    min-height: 760px;
    margin-top: 46px;
    padding: 74px 26px 26px;
  }

  .hero-stage::before {
    width: 100%;
    height: 56%;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  }

  .speech-stream,
  .spoken-thought {
    width: 100%;
  }

  .speech-stream {
    margin-top: 54px;
  }

  .spoken-thought {
    max-width: 520px;
  }

  .destination-window {
    width: calc(100% - 52px);
    right: 26px;
    bottom: 26px;
  }

  .demo-progress { display: none; }

  .speed-section {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 82px 0;
  }

  .speed-number,
  .speed-copy {
    border: 1px solid var(--vz-ink);
    border-radius: 8px;
  }

  .speed-copy {
    margin-top: -1px;
    padding: 46px 28px;
    border-radius: 0 0 8px 8px;
  }

  .speed-number {
    border-radius: 8px 8px 0 0;
  }

  .product-tour-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 18px 0 100px;
  }

  .product-tour-copy { max-width: 660px; }

  .app-tour-window { transform: none; }

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

  .steps-grid article {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--vz-ink);
  }

  .steps-grid article:last-child { border-bottom: 0; }

  .step-icon,
  .mini-wave {
    margin: 32px 0 24px;
  }

  .rewrite-demo {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .demo-column {
    min-height: 270px;
  }

  .transform-mark {
    height: 40px;
  }

  .transform-mark b { transform: rotate(90deg); }

  .features-heading,
  .feature-grid,
  .privacy-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .features-heading {
    gap: 24px;
  }

  .feature {
    min-height: 470px;
  }

  .privacy-section {
    gap: 48px;
    padding: 82px 28px;
  }

  .privacy-mark {
    min-height: 280px;
  }

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

  .work-grid article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--vz-ink);
  }

  .work-grid article:last-child { border-bottom: 0; }

  .faq-section {
    gap: 52px;
  }

  .final-cta {
    padding: 72px 20px;
  }

  .marketing-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .download-main {
    width: min(100% - 28px, 1080px);
    padding: 60px 0;
  }
}

@media (max-width: 520px) {
  .launch-dot { display: none; }

  .hero-actions,
  .site-shell .button {
    width: 100%;
  }

  .site-shell .button {
    min-height: 52px;
  }

  .site-shell .landing-hero h1 {
    font-size: 54px;
    overflow-wrap: anywhere;
  }

  .hero-stage {
    min-height: 770px;
    padding: 72px 20px 20px;
  }

  .stage-menubar {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    padding: 0 10px;
  }

  .stage-menubar-apps span:not(.stage-apple) { display: none; }
  .stage-recorder-pill { min-width: 86px; padding: 0 9px; }
  .stage-clock { font-size: 9px; }

  .stage-status {
    align-items: flex-start;
  }

  .stage-status > span { max-width: 190px; }

  .demo-replay { width: 32px; height: 32px; }

  .speech-stream {
    gap: 5px;
    margin-top: 44px;
  }

  .speech-stream span { width: 6px; }

  .spoken-thought {
    font-size: 21px;
  }

  .destination-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 20px;
  }

  .tour-titlebar { grid-template-columns: 1fr auto 1fr; }

  .tour-layout {
    min-height: 450px;
    grid-template-columns: 1fr;
  }

  .tour-sidebar,
  .tour-stats { display: none; }

  .tour-main { padding: 22px 18px; }

  .tour-heading h3 { font-size: 21px; }

  .tour-live-row {
    grid-template-columns: auto 1fr;
    box-shadow: 5px 5px 0 var(--vz-ink);
  }

  .tour-mini-wave { display: none; }

  .tour-history article { grid-template-columns: 50px 1fr; }
  .tour-history article span { display: none; }

  .window-bar {
    grid-template-columns: 1fr auto;
  }

  .window-bar strong { display: none; }

  .message-context,
  .composer-preview {
    padding: 18px;
  }

  .app-band {
    padding: 28px 20px;
  }

  .app-band > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .app-band span { text-align: left; }

  .site-shell .speed-copy h2,
  .site-shell .product-tour-copy h2,
  .site-shell .section-heading h2,
  .site-shell .rewrite-intro h2,
  .site-shell .features-heading h2,
  .site-shell .privacy-section h2,
  .site-shell .faq-intro h2,
  .site-shell .final-cta h2 {
    font-size: 40px;
    overflow-wrap: anywhere;
  }

  .speed-number {
    min-height: 330px;
    padding: 26px;
  }

  .speed-number strong {
    font-size: 78px;
  }

  .steps-section,
  .rewrite-section,
  .features-section,
  .work-section,
  .faq-section {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .demo-tabs {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .site-shell .demo-tab {
    padding: 0 7px;
    font-size: 12px;
  }

  .rewrite-demo {
    padding: 12px;
  }

  .demo-column {
    min-height: 250px;
    padding: 20px;
  }

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

  .feature {
    min-height: 440px;
    padding: 20px;
  }

  .dictionary-visual span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .history-visual {
    grid-template-columns: 1fr 1fr;
  }

  .history-visual > div {
    min-height: 160px;
    padding: 16px;
  }

  .history-visual strong {
    font-size: 45px;
  }

  .privacy-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .marketing-footer {
    grid-template-columns: 1fr 1fr;
    padding-top: 54px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .download-main h1 {
    font-size: 54px;
    overflow-wrap: anywhere;
  }

  .release-notes {
    grid-template-columns: 1fr;
  }

  .testing-install-note {
    padding: 18px;
  }

  .download-art {
    min-height: 440px;
    padding: 24px;
  }

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

  .install-arrow { transform: rotate(90deg); text-align: center; }
}

.app-tour-window.phase-review .tour-live-row {
  background: var(--vz-sky);
  transform: translateY(4px);
}

.app-tour-window.phase-reuse .tour-live-row {
  background: var(--vz-mint);
  box-shadow: 0 0 0 var(--vz-ink);
  transform: translateY(8px);
}

.tour-live-row {
  transition: background-color 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.app-tour-window.phase-reuse .tour-history article:first-child {
  background: rgba(220,238,232,0.72);
  transform: translateX(5px);
}

.tour-history article {
  transition: background-color 280ms ease, transform 280ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .feature,
  .steps-grid article,
  .work-grid article {
    transition: transform 260ms ease, box-shadow 260ms ease;
  }

  .feature:hover,
  .steps-grid article:hover,
  .work-grid article:hover {
    z-index: 2;
    box-shadow: 0 20px 56px rgba(21,24,22,0.12);
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .motion-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--motion-delay, 0ms);
  }

  html.motion-ready .motion-reveal.motion-left {
    transform: translateX(-34px);
  }

  html.motion-ready .motion-reveal.motion-right {
    transform: translateX(34px);
  }

  html.motion-ready .motion-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  html.motion-ready .app-tour-window.motion-reveal.is-visible {
    transform: perspective(1500px) rotateY(0) rotateX(0) translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
