@font-face {
  font-family: "Geist Sans";
  src: url("fonts/Geist-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("fonts/Geist-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("fonts/Geist-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("fonts/GeistMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("fonts/GeistMono-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light dark;

  --background-100: #ffffff;
  --background-200: #fafafa;
  --gray-100: #f2f2f2;
  --gray-200: #ebebeb;
  --gray-300: #e6e6e6;
  --gray-400: #eaeaea;
  --gray-500: #c9c9c9;
  --gray-600: #a8a8a8;
  --gray-700: #8f8f8f;
  --gray-800: #7d7d7d;
  --gray-900: #4d4d4d;
  --gray-1000: #171717;
  --gray-alpha-100: #0000000d;
  --gray-alpha-200: #00000015;
  --gray-alpha-300: #0000001a;
  --gray-alpha-400: #00000014;
  --gray-alpha-500: #00000036;
  --gray-alpha-600: #0000003d;
  --gray-alpha-700: #00000070;

  /* Obsidian-inspired violet accents for secondary and tertiary emphasis. */
  --secondary-100: #f5f2ff;
  --secondary-200: #eee9ff;
  --secondary-300: #e4dcff;
  --secondary-400: #d1c3ff;
  --secondary-600: #9678f4;
  --secondary-700: #7852ee;
  --secondary-800: #6742dc;
  --secondary-900: #5835c1;
  --secondary-1000: #2d196b;
  --red-100: #ffeeef;
  --red-400: #ffd7d6;
  --red-800: #ea001d;
  --red-900: #d8001b;
  --red-1000: #47000c;
  --tertiary-100: #faf5ff;
  --tertiary-400: #ead8ff;
  --tertiary-700: #9b6be8;
  --tertiary-900: #7546bb;
  --tertiary-1000: #351d5a;
  --amber-100: #fff6de;
  --amber-400: #ffdc73;
  --amber-900: #aa4d00;
  --amber-1000: #561900;

  --focus: var(--secondary-700);
  --raised-shadow: 0 2px 2px rgba(0, 0, 0, 0.04);
  --popover-shadow: 0 1px 1px rgba(0, 0, 0, 0.02), 0 4px 8px -4px rgba(0, 0, 0, 0.04), 0 16px 24px -8px rgba(0, 0, 0, 0.06);
  --font-sans: "Geist Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --page-padding: 24px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-100: #000000;
    --background-200: #000000;
    --gray-100: #1a1a1a;
    --gray-200: #1f1f1f;
    --gray-300: #292929;
    --gray-400: #2e2e2e;
    --gray-500: #454545;
    --gray-600: #878787;
    --gray-700: #8f8f8f;
    --gray-800: #7d7d7d;
    --gray-900: #a0a0a0;
    --gray-1000: #ededed;
    --gray-alpha-100: #ffffff12;
    --gray-alpha-200: #ffffff17;
    --gray-alpha-300: #ffffff21;
    --gray-alpha-400: #ffffff24;
    --gray-alpha-500: #ffffff3d;
    --gray-alpha-600: #ffffff82;
    --gray-alpha-700: #ffffff8a;

    --secondary-100: #1e1733;
    --secondary-200: #271b42;
    --secondary-300: #332252;
    --secondary-400: #45306d;
    --secondary-600: #9270ed;
    --secondary-700: #7852ee;
    --secondary-800: #8f6cf5;
    --secondary-900: #a882ff;
    --secondary-1000: #f2edff;
    --red-100: #330a11;
    --red-400: #6f101b;
    --red-800: #e2162a;
    --red-900: #ff565f;
    --red-1000: #ffe9ed;
    --tertiary-100: #24182f;
    --tertiary-400: #4b3262;
    --tertiary-700: #9b6be8;
    --tertiary-900: #c29cff;
    --tertiary-1000: #f8efff;
    --amber-100: #2a1700;
    --amber-400: #5b3000;
    --amber-900: #ff9300;
    --amber-1000: #fff3d5;

    --focus: var(--secondary-900);
    --raised-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background-100);
  color: var(--gray-1000);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--secondary-200);
  color: var(--secondary-1000);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-alpha-400);
  border: 2px solid var(--background-100);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-alpha-500);
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--background-100), 0 0 0 4px var(--focus);
  border-radius: var(--radius-sm);
}

.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

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

nav:not(.toc) {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-alpha-400);
  background: var(--background-100);
}

.nav-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.logo-mark {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--raised-shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  transition: color 150ms, background-color 150ms;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--gray-alpha-200);
  color: var(--gray-1000);
}

.nav-cta,
.btn-primary,
.btn-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 150ms, border-color 150ms, color 150ms;
}

.nav-cta,
.btn-primary {
  background: var(--gray-1000);
  color: var(--background-100);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--gray-900);
}

.btn-secondary,
.text-link {
  border-color: var(--gray-alpha-400);
  background: var(--background-100);
  color: var(--gray-1000);
}

.btn-secondary:hover,
.text-link:hover {
  border-color: var(--gray-alpha-500);
  background: var(--gray-alpha-100);
}

.hero-actions .btn-primary,
.cta-section .btn-primary,
.cta .btn-primary {
  height: 48px;
  padding: 0 14px;
  font-size: 16px;
}

.btn-note {
  display: block;
  margin-top: 8px;
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.hero,
.page-hero {
  border-bottom: 1px solid var(--gray-alpha-400);
}

.hero {
  min-height: auto;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.hero-label,
.eyebrow,
.page-eyebrow,
.section-label,
.privacy-eyebrow,
.hero-card-label,
.meta-label,
.toc-title,
.answer-box .label {
  color: var(--gray-900);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}

.hero-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: 9999px;
  background: var(--background-100);
}

.hero-label::before,
.eyebrow::before,
.page-eyebrow::before,
.privacy-eyebrow::before,
.privacy-eyebrow::after {
  display: none;
}

.hero-title {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--gray-1000);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-title .line {
  display: inline;
}

.hero-title .line > span {
  display: inline;
}

.hero-title .line:not(:last-child)::after {
  content: " ";
}


.hero-subtitle {
  max-width: 640px;
  margin: 0 0 32px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 28px;
}

.hero-actions,
.button-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  max-width: 720px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--gray-alpha-400);
  gap: 1px;
}

.trust-card,
.lead-card {
  min-height: 0;
  padding: 16px;
  background: var(--background-100);
}

.trust-card strong,
.lead-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-1000);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.trust-card span,
.lead-card span {
  display: block;
  color: var(--gray-900);
  font-size: 13px;
  line-height: 18px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(320px, 78vw);
  padding: 8px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-lg);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
}

.phone-shell::before {
  display: none;
}

.phone-shell img,
.phone-frame,
.phone-frame img,
.screenshot-frame,
.screenshot-frame img {
  border-radius: var(--radius-md);
}

.phone-shell img {
  display: block;
  width: 100%;
  border: 1px solid var(--gray-alpha-200);
}

.terminal-card,
.privacy-rail,
.hero-card,
.meta-card {
  position: absolute;
  z-index: 3;
  width: 224px;
  padding: 16px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--popover-shadow);
}

.terminal-card {
  top: 64px;
  right: -16px;
}

.privacy-rail {
  bottom: 64px;
  left: -16px;
}

.terminal-card .k,
.terminal-card .v,
.rail-row,
.destination-meta,
.feature-num,
.post-meta,
.page-meta,
.footer-copy {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.terminal-card .k {
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.terminal-card .v {
  margin-top: 4px;
  color: var(--tertiary-900);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.rail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-alpha-400);
  color: var(--gray-900);
  font-size: 12px;
  line-height: 16px;
}

.rail-row:first-child {
  padding-top: 0;
}

.rail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rail-row span:last-child {
  color: var(--tertiary-900);
  font-weight: 500;
}

section {
  border-top: 0;
}

.how-section,
.features-section,
.screenshots-section,
.destinations-section,
.specs-section,
.privacy-section,
.faq-section,
.cta-section,
.blog-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--gray-alpha-400);
}

.how-section,
.screenshots-section,
.specs-section,
.faq-section,
.lead-strip {
  background: var(--background-200);
}

.section-header {
  display: block;
  max-width: 760px;
  margin: 0 0 40px;
}

.section-label {
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--gray-1000);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-kicker {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 28px;
}

.steps,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.step,
.feature-card,
.destination-card,
.post-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
  transition: border-color 150ms, background-color 150ms;
}

.step:hover,
.feature-card:hover,
.destination-card:hover,
.post-card:hover {
  border-color: var(--gray-alpha-500);
  background: var(--gray-alpha-100);
  transform: none;
}

.step-number,
.feature-num {
  margin-bottom: 24px;
  color: var(--gray-700);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  -webkit-text-stroke: 0;
}

.step-title,
.feature-title {
  margin-bottom: 8px;
  color: var(--gray-1000);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.step-desc,
.feature-desc {
  margin: 0;
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

.step-arrow {
  display: none;
}

.workflow-rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin-top: 40px;
  padding: 16px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
}

.workflow-step {
  padding: 20px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-sm);
  background: var(--background-200);
}

.workflow-step-label,
.visual-panel-index,
.route-pipeline-label {
  margin-bottom: 8px;
  color: var(--gray-700);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 16px;
}

.workflow-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-1000);
  font-size: 16px;
  line-height: 24px;
}

.workflow-step span {
  color: var(--gray-800);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 16px;
}

.workflow-connector,
.route-pipeline-arrow,
.privacy-flow-arrow {
  display: grid;
  align-self: center;
  color: var(--secondary-900);
  font-family: var(--font-mono);
  font-size: 20px;
  place-items: center;
}

.workflow-rail + .steps {
  margin-top: 16px;
}

.feature-card {
  display: block;
}

.feature-icon {
  display: inline-flex;
  width: auto;
  height: 32px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 8px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-sm);
  background: var(--gray-alpha-100);
  color: var(--gray-900);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 16px;
}

.screenshots-scroll {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px)) 8px;
  overflow-x: auto;
  scroll-padding-inline: var(--page-padding);
  scroll-snap-type: x mandatory;
}

.screenshot-item {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
}

.screenshot-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gray-alpha-400);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  filter: none;
}

.screenshot-label {
  margin-top: 12px;
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.screenshot-label strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-1000);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.visual-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
  isolation: isolate;
}

.visual-panel-capture,
.visual-panel-voice {
  grid-column: span 7;
}

.visual-panel-route,
.visual-panel-anywhere {
  grid-column: span 5;
}

.visual-panel-local {
  grid-column: span 12;
  min-height: 580px;
}

.visual-panel-copy {
  position: relative;
  z-index: 4;
  max-width: 540px;
  padding: 28px;
}

.visual-panel-copy h3 {
  max-width: 480px;
  margin: 0;
  color: var(--gray-1000);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.96px;
  text-wrap: balance;
}

.visual-panel-copy p {
  max-width: 440px;
  margin: 10px 0 0;
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

.visual-phone {
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-lg);
  background: var(--background-100);
  box-shadow: var(--popover-shadow);
}

.visual-phone picture,
.visual-phone img {
  display: block;
  width: 100%;
}

.visual-phone img {
  border: 1px solid var(--gray-alpha-200);
  border-radius: var(--radius-md);
}

.visual-phone-capture {
  position: absolute;
  z-index: 2;
  top: 210px;
  right: 32px;
  width: 280px;
  height: 410px;
  transform: rotate(1.5deg);
}

.visual-phone-capture img {
  transform: translateY(-96px);
}

.capture-chip-list {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 28px;
  display: grid;
  width: 210px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capture-chip-list li,
.route-option-stack span,
.entry-point-list span,
.local-status {
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-sm);
  background: var(--background-100);
  color: var(--gray-900);
  font-size: 12px;
  line-height: 16px;
  box-shadow: var(--raised-shadow);
}

.visual-phone-route {
  position: absolute;
  z-index: 2;
  top: 230px;
  right: -8px;
  width: 252px;
  transform: rotate(-1deg);
}

.route-option-stack {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 24px;
  display: grid;
  gap: 8px;
}

.route-option-stack span {
  width: max-content;
  color: var(--secondary-900);
  font-family: var(--font-mono);
}

.visual-phone-keyboard {
  position: absolute;
  z-index: 2;
  top: 238px;
  right: 28px;
  width: 248px;
  height: 382px;
  transform: rotate(1deg);
}

.visual-phone-keyboard img {
  transform: translateY(-104px);
}

.entry-point-list {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 24px;
  display: grid;
  width: 150px;
  gap: 8px;
}

.visual-phone-recording {
  position: absolute;
  z-index: 2;
  top: 218px;
  right: 32px;
  width: 250px;
  transform: rotate(1deg);
}

.visual-phone-models {
  position: absolute;
  z-index: 1;
  bottom: -150px;
  left: 42px;
  width: 215px;
  transform: rotate(-2deg);
}

.local-status {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tertiary-900);
}

.local-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tertiary-700);
}

.local-screen-stack {
  position: absolute;
  right: 42px;
  bottom: -190px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.local-screen-stack .visual-phone {
  width: 245px;
}

.local-screen-stack .visual-phone:first-child {
  transform: rotate(-2deg) translateY(24px);
}

.local-screen-stack .visual-phone:last-child {
  transform: rotate(2deg);
}

.route-pipeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  margin-top: 40px;
  padding: 16px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
}

.route-pipeline-step {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-sm);
  background: var(--background-200);
}

.route-pipeline-step.selected {
  border-color: var(--secondary-700);
  box-shadow: 0 0 0 1px var(--secondary-700);
}

.route-pipeline-step strong,
.route-pipeline-step code,
.route-pipeline-step span {
  display: block;
}

.route-pipeline-step strong {
  color: var(--gray-1000);
  font-size: 14px;
  line-height: 20px;
}

.route-pipeline-step code {
  color: var(--secondary-900);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 18px;
  overflow-wrap: anywhere;
}

.route-pipeline-step span {
  margin-top: 8px;
  color: var(--gray-800);
  font-size: 12px;
  line-height: 18px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.destination-card {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.destination-card.featured::before {
  content: "Common Route";
  align-self: flex-start;
  order: -1;
  padding: 4px 8px;
  border-radius: 9999px;
  background: var(--secondary-100);
  color: var(--secondary-900);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.destination-name {
  color: var(--gray-1000);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.4px;
}

.destination-meta {
  color: var(--secondary-900);
  font-size: 12px;
  line-height: 16px;
  overflow-wrap: anywhere;
}

.destination-label {
  margin-top: auto;
  color: var(--gray-900);
  font-size: 13px;
  line-height: 18px;
}

.specs-table {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  overflow: hidden;
  max-width: 900px;
  margin-top: 40px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--gray-alpha-400);
  gap: 1px;
}

.spec-row {
  display: contents;
}

.spec-key,
.spec-val {
  padding: 16px 24px;
  background: var(--background-100);
  font-size: 14px;
  line-height: 20px;
}

.spec-key {
  color: var(--gray-900);
}

.spec-val {
  color: var(--gray-1000);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.privacy-section {
  padding: 96px 0;
  text-align: center;
}

.privacy-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 9999px;
  background: var(--tertiary-100);
  color: var(--tertiary-900);
}

.privacy-title {
  margin: 0 auto 24px;
  color: var(--gray-1000);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.privacy-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 28px;
}

.privacy-flow {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin: 40px auto 0;
  padding: 16px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
  text-align: left;
}

.privacy-flow > div:not(.privacy-flow-arrow) {
  padding: 20px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-sm);
  background: var(--background-200);
}

.privacy-flow span,
.privacy-flow strong,
.privacy-flow small {
  display: block;
}

.privacy-flow span {
  margin-bottom: 8px;
  color: var(--tertiary-900);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 16px;
}

.privacy-flow strong {
  color: var(--gray-1000);
  font-size: 14px;
  line-height: 20px;
}

.privacy-flow small {
  margin-top: 4px;
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: start;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
}

details {
  border-bottom: 1px solid var(--gray-alpha-400);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  color: var(--gray-1000);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gray-800);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
  color: var(--gray-1000);
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

details a,
.article-body a,
.legal-content a {
  color: var(--secondary-900);
  text-decoration: underline;
  text-decoration-color: var(--secondary-400);
  text-underline-offset: 3px;
}

.cta-section {
  padding: 96px 0;
  text-align: center;
}

.cta-section::before {
  display: none;
}

.cta-title {
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--gray-1000);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.cta-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 28px;
}

footer {
  padding: 40px 0;
  border-top: 0;
  background: var(--background-100);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  font-size: 13px;
  line-height: 16px;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  background: var(--gray-alpha-200);
  color: var(--gray-1000);
}

.footer-copy {
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

/* Legal pages */
.page-hero {
  padding: 96px 0 64px;
  background: var(--background-200);
}

.page-eyebrow {
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.page-title {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--gray-1000);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.page-meta {
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.legal-content {
  max-width: 760px;
  padding: 64px 0 96px;
}

.legal-content h2 {
  margin: 40px 0 12px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-alpha-400);
  color: var(--gray-1000);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.96px;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--gray-900);
  font-size: 16px;
  line-height: 24px;
}

.legal-content p,
.legal-content ul {
  margin: 0 0 16px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content li::marker {
  color: var(--gray-700);
}

.legal-content strong {
  color: var(--gray-1000);
  font-weight: 600;
}

.callout,
.answer-box {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid var(--secondary-400);
  border-radius: var(--radius-md);
  background: var(--secondary-100);
}

.callout p,
.answer-box p {
  color: var(--secondary-1000);
}

/* Blog index */
.blog-section {
  min-height: 50vh;
}

.hero-card,
.meta-card {
  position: static;
  width: auto;
  padding: 24px;
  box-shadow: var(--raised-shadow);
}

.hero-card-label,
.meta-label {
  margin-bottom: 12px;
  color: var(--tertiary-900);
  font-weight: 500;
}

.hero-card p {
  margin: 0;
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

.post-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 16px;
}

.post-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.post-card.featured {
  min-height: 360px;
}

.post-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 9999px;
  background: var(--tertiary-100);
  color: var(--tertiary-900);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.post-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--tertiary-700);
}

.post-title {
  margin: 16px 0 12px;
  color: var(--gray-1000);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1.28px;
}

.post-card:not(.featured) .post-title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.96px;
}

.post-desc {
  max-width: 620px;
  margin: 0;
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.text-link {
  width: fit-content;
}

/* Article */
.article-container {
  width: min(100%, 760px);
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.meta-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.meta-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-alpha-400);
}

.meta-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.meta-card dt,
.meta-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 18px;
}

.meta-card dt {
  color: var(--gray-800);
}

.meta-card dd {
  color: var(--gray-1000);
  font-family: var(--font-mono);
  text-align: right;
}

.lead-strip {
  border-bottom: 1px solid var(--gray-alpha-400);
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-inline: 1px solid var(--gray-alpha-400);
  background: var(--gray-alpha-400);
  gap: 1px;
}

.lead-card {
  padding: 24px;
}

article {
  padding: 64px 0 96px;
}

.article-body {
  color: var(--gray-900);
  font-size: 18px;
  line-height: 28px;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body h2 {
  margin: 64px 0 16px;
  color: var(--gray-1000);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -1.28px;
  text-wrap: balance;
}

.article-body h3 {
  margin: 32px 0 12px;
  color: var(--gray-1000);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.4px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-body li {
  margin: 8px 0;
  padding-left: 4px;
}

.article-body strong {
  color: var(--gray-1000);
  font-weight: 600;
}

.article-body hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid var(--gray-alpha-400);
}

.toc {
  position: static;
  z-index: auto;
  margin: 0 0 40px;
  padding: 24px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-200);
  box-shadow: none;
}

.toc-title {
  margin-bottom: 12px;
  font-weight: 500;
}

.toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

.toc a {
  color: var(--gray-1000);
  text-decoration: none;
}

.answer-box .label {
  margin-bottom: 12px;
  color: var(--secondary-900);
  font-weight: 500;
}

.answer-box p:last-child {
  margin-bottom: 0;
}

.comparison {
  width: 100%;
  margin: 32px 0;
  overflow: hidden;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 20px;
}

.comparison th,
.comparison td {
  padding: 16px;
  border-right: 1px solid var(--gray-alpha-400);
  border-bottom: 1px solid var(--gray-alpha-400);
  text-align: left;
  vertical-align: top;
}

.comparison th:last-child,
.comparison td:last-child {
  border-right: 0;
}

.comparison tbody tr:last-child td {
  border-bottom: 0;
}

.comparison th {
  background: var(--background-200);
  color: var(--gray-900);
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.comparison td {
  color: var(--gray-900);
}

.comparison td:first-child {
  color: var(--gray-1000);
  font-weight: 600;
}

.screenshot-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  margin: 40px 0;
}

.phone-frame {
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--gray-alpha-400);
  background: var(--background-100);
  box-shadow: var(--raised-shadow);
}

.phone-frame img {
  display: block;
  border: 1px solid var(--gray-alpha-200);
}

.screenshot-note {
  padding: 24px 0;
  border-block: 1px solid var(--gray-alpha-400);
}

.screenshot-note .num {
  margin-bottom: 12px;
  color: var(--secondary-900);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 16px;
}

.screenshot-note h3 {
  margin-top: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 12px;
  color: var(--gray-800);
  font-size: 12px;
  line-height: 16px;
}

.checklist {
  display: grid;
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--gray-alpha-400);
  gap: 1px;
}

.check-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  background: var(--background-100);
}

.check-row strong,
.check-row span {
  padding: 16px;
}

.check-row strong {
  color: var(--gray-1000);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.check-row span {
  border-left: 1px solid var(--gray-alpha-400);
  color: var(--gray-900);
  font-size: 14px;
  line-height: 20px;
}

.cta {
  display: grid;
  gap: 20px;
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--gray-alpha-400);
  border-radius: var(--radius-md);
  background: var(--background-200);
  box-shadow: var(--raised-shadow);
}

.cta h2,
.cta p {
  margin: 0;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}

@media (max-width: 960px) {
  .hero-inner,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    min-height: 600px;
  }

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

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

  .visual-panel-capture,
  .visual-panel-route,
  .visual-panel-anywhere,
  .visual-panel-voice,
  .visual-panel-local {
    grid-column: span 12;
  }

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

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

@media (max-width: 720px) {
  :root {
    --page-padding: 18px;
  }

  .nav-inner {
    min-height: 56px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 64px 0;
  }

  .hero-title,
  .page-title,
  .privacy-title,
  .cta-title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -2.4px;
  }

  .hero-subtitle,
  .section-kicker,
  .privacy-desc,
  .cta-sub {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions > div,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .trust-grid,
  .steps,
  .features-grid,
  .destinations-grid,
  .specs-table,
  .lead-grid,
  .screenshot-feature,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    gap: 12px;
  }

  .workflow-rail,
  .route-pipeline,
  .privacy-flow {
    grid-template-columns: 1fr;
  }

  .workflow-connector,
  .route-pipeline-arrow,
  .privacy-flow-arrow {
    min-height: 24px;
    transform: rotate(90deg);
  }

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

  .visual-panel-capture,
  .visual-panel-route,
  .visual-panel-anywhere,
  .visual-panel-voice,
  .visual-panel-local {
    grid-column: 1;
  }

  .visual-panel {
    min-height: 740px;
  }

  .visual-panel-copy {
    padding: 20px;
  }

  .visual-panel-copy h3 {
    font-size: 21px;
    line-height: 28px;
    letter-spacing: -0.64px;
  }

  .visual-phone-capture {
    top: 220px;
    right: -28px;
    width: 230px;
    height: auto;
  }

  .visual-phone-capture img {
    transform: none;
  }

  .capture-chip-list {
    bottom: 18px;
    left: 18px;
    width: 160px;
  }

  .visual-phone-route {
    top: 242px;
    right: -42px;
    width: 230px;
  }

  .route-option-stack {
    bottom: 18px;
    left: 18px;
  }

  .visual-phone-keyboard {
    top: 252px;
    right: -28px;
    width: 220px;
  }

  .entry-point-list {
    bottom: 18px;
    left: 18px;
    width: 132px;
  }

  .visual-phone-recording {
    top: 230px;
    right: -22px;
    width: 220px;
  }

  .visual-phone-models {
    bottom: -110px;
    left: 18px;
    width: 180px;
  }

  .local-status {
    bottom: 18px;
    left: 18px;
  }

  .local-screen-stack {
    right: -100px;
    bottom: -120px;
    gap: 10px;
  }

  .local-screen-stack .visual-phone {
    width: 195px;
  }

  .phone-shell {
    width: min(320px, 88vw);
    order: 1;
  }

  .terminal-card,
  .privacy-rail {
    position: static;
    width: min(320px, 88vw);
    box-shadow: var(--raised-shadow);
  }

  .terminal-card {
    order: 2;
  }

  .privacy-rail {
    order: 3;
  }

  .how-section,
  .features-section,
  .screenshots-section,
  .destinations-section,
  .specs-section,
  .privacy-section,
  .faq-section,
  .cta-section,
  .blog-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1.28px;
  }

  .step,
  .feature-card,
  .destination-card,
  .post-card {
    padding: 24px;
  }

  .spec-key {
    padding-bottom: 4px;
  }

  .spec-val {
    padding-top: 4px;
  }

  .post-card,
  .post-card.featured {
    min-height: 0;
  }

  .article-body {
    font-size: 16px;
    line-height: 24px;
  }

  .article-body h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.96px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .check-row {
    grid-template-columns: 1fr;
  }

  .check-row span {
    padding-top: 0;
    border-left: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .nav-cta {
    height: 32px;
    padding: 0 6px;
    font-size: 12px;
  }

  .logo span {
    font-size: 14px;
  }

  .hero-label,
  .eyebrow {
    align-items: flex-start;
    border-radius: var(--radius-md);
  }

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

  .button-row,
  .button-row .btn-primary,
  .button-row .btn-secondary {
    width: 100%;
  }

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