:root {
  color: #191816;
  background: #f3ebdd;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  --paper: #f3ebdd;
  --paper-light: #fffaf1;
  --ink: #191816;
  --signal: #ff5a36;
  --muted: #cec1ae;
  --quiet: #6d665c;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--paper); scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--paper); }
button, textarea { font: inherit; color: inherit; }
a { color: inherit; }
button:focus-visible, textarea:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

.wordmark { font-family: Arial Black, Arial, sans-serif; font-size: 31px; font-weight: 950; letter-spacing: -.08em; text-decoration: none; }
.eyebrow { margin: 0; font-size: 10px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: grid;
  /* Wordmark left, nav right-of-center beside the actions — the previous
     centered nav collided with the hero's panel divider. */
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 62px);
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: min-height 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), backdrop-filter 260ms var(--ease);
}
.site-header.is-scrolled { min-height: 62px; background: rgba(243,235,221,.79); border-color: rgba(25,24,22,.28); backdrop-filter: blur(14px) saturate(1.1); }
/* Nav sits right-of-center so it never collides with the hero's panel divider. */
.desktop-nav { display: flex; gap: 28px; justify-self: end; margin-right: clamp(24px, 4vw, 58px); }
.feasibility-note { margin: 14px 0 0; color: var(--quiet); font-size: 11px; font-weight: 800; line-height: 1.55; max-width: 460px; }
.desktop-nav a, .sign-in { font-size: 11px; font-weight: 900; text-decoration: none; text-transform: lowercase; }
.desktop-nav a:hover, .sign-in:hover { text-decoration: underline; text-underline-offset: 5px; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-start { display: flex; align-items: center; gap: 8px; padding: 10px 13px; background: var(--signal); border: 1.5px solid var(--ink); font-size: 10px; font-weight: 950; text-decoration: none; text-transform: lowercase; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity 220ms var(--ease), transform 220ms var(--ease); }
.site-header.is-deep .header-start { opacity: 1; transform: translateY(0); pointer-events: auto; }
.header-mic, .final-mic { position: relative; display: inline-block; width: 9px; height: 14px; border: 1.5px solid currentColor; border-radius: 8px; }
.header-mic::after, .final-mic::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 13px; height: 7px; border: 1.5px solid currentColor; border-top: 0; border-radius: 0 0 8px 8px; transform: translateX(-50%); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr); height: 100svh; min-height: 500px; overflow: hidden; border-bottom: 3px solid var(--ink); }
.hero-copy { position: relative; z-index: 3; display: flex; min-height: 0; flex-direction: column; justify-content: center; gap: clamp(20px, 3.1svh, 34px); padding: clamp(72px, 9svh, 104px) clamp(28px, 4.5vw, 72px) clamp(18px, 3.5svh, 42px); }
.hero-message { width: min(100%, 720px); }
.hero-copy .eyebrow { margin-bottom: clamp(12px, 2svh, 20px); }
.hero h1 { max-width: 800px; margin: 0; font-family: Arial Black, Arial, sans-serif; font-size: clamp(64px, min(7vw, 11.5svh), 112px); line-height: .84; letter-spacing: -.076em; text-transform: lowercase; }
.hero-deck { max-width: 690px; margin: clamp(15px, 2.3svh, 23px) 0 0; font-size: clamp(15px, min(1.3vw, 2.35svh), 19px); font-weight: 700; line-height: 1.38; }
.hero-entry { width: min(100%, 680px); }

.trip-starter { display: grid; grid-template-columns: minmax(112px, 31%) 1fr; width: 100%; min-height: clamp(100px, 14svh, 122px); overflow: hidden; border: 2.5px solid var(--ink); border-radius: 28px; background: var(--paper-light); box-shadow: 7px 7px 0 var(--ink); }
.starter-mic { position: relative; display: grid; place-items: center; align-content: center; gap: 11px; border: 0; border-right: 2.5px solid var(--ink); background: var(--signal); cursor: pointer; }
.starter-mic::before, .starter-mic::after { content: ""; position: absolute; inset: 15px; border: 1.5px solid var(--ink); border-radius: 22px; opacity: 0; }
.starter-mic.is-listening::before { animation: listening 1.15s var(--ease) infinite; }
.starter-mic.is-listening::after { animation: listening 1.15s .42s var(--ease) infinite; }
.starter-mic.is-transcribing { background: var(--paper-light); }
@keyframes listening { from { opacity: .75; transform: scale(.7); } to { opacity: 0; transform: scale(1.12); } }
.mic-glyph { position: relative; width: 21px; height: 32px; border: 3px solid var(--ink); border-radius: 15px; }
.mic-glyph::before { content: ""; position: absolute; left: 50%; bottom: -12px; width: 34px; height: 20px; border: 3px solid var(--ink); border-top: 0; border-radius: 0 0 20px 20px; transform: translateX(-50%); }
.mic-glyph::after { content: ""; position: absolute; left: 50%; bottom: -19px; width: 3px; height: 9px; background: var(--ink); transform: translateX(-50%); }
.mic-label { position: relative; z-index: 1; margin-top: 22px; font-size: 9px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.starter-level { display: flex; align-items: flex-end; gap: 3px; height: 16px; margin-top: 6px; }
.starter-level i { width: 4px; background: var(--ink); border-radius: 2px; height: calc(3px + var(--level, 0) * var(--bar, 12px)); transition: height 90ms linear; }
.starter-type { position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 18px 64px 17px 22px; }
.starter-type label { margin-bottom: 9px; font-size: 9px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.starter-type textarea { position: relative; z-index: 2; flex: 1; width: 100%; height: 100%; min-height: 0; padding: 0; resize: none; overflow-y: auto; border: 0; background: transparent; font-size: 16px; font-weight: 750; line-height: 1.32; outline: 0; }
.starter-type textarea::placeholder { color: transparent; }
.rotating-prompt { position: absolute; left: 22px; right: 60px; top: 53px; z-index: 3; color: #888074; font-size: 16px; font-weight: 700; line-height: 1.3; pointer-events: none; transition: opacity 180ms var(--ease); }
.rotating-prompt::after { content: ""; display: inline-block; width: 2px; height: .95em; margin-left: 3px; background: currentColor; vertical-align: -.08em; animation: type-caret 780ms steps(1,end) infinite; }
@keyframes type-caret { 50% { opacity: 0; } }
.starter-type:focus-within .rotating-prompt, .starter-type.has-value .rotating-prompt { opacity: 0; pointer-events: none; }
.rotating-prompt[data-typing-state="error"] { color: #9b2f20; }
.starter-go { position: absolute; right: 16px; bottom: 15px; z-index: 4; display: grid; width: 40px; height: 40px; place-items: center; border: 1.5px solid var(--ink); border-radius: 50%; background: var(--ink); color: var(--paper-light); cursor: pointer; font-size: 20px; transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease); }
.starter-go:hover { transform: rotate(-8deg) scale(1.04); background: var(--signal); color: var(--ink); }
.starter-help { width: 100%; margin: clamp(10px, 1.5svh, 15px) 0 0; font-size: 11px; font-weight: 850; }
.starter-help a { text-underline-offset: 5px; }
.starter-status { margin: 9px 0 0; color: var(--quiet); font-size: 9px; font-weight: 850; line-height: 1.35; }
.starter-status:empty { display: none; }

.hero-media { position: relative; min-height: 100%; overflow: hidden; background: #d3c4af; border-left: 2px solid var(--ink); }
.media-aperture { position: absolute; inset: 0; background: #cbbba4; -webkit-mask-image: radial-gradient(circle at 28% 29%, #000 0 30%, transparent 30.5%), radial-gradient(circle at 77% 28%, #000 0 29%, transparent 29.5%), radial-gradient(circle at 52% 78%, #000 0 38%, transparent 38.5%); mask-image: radial-gradient(circle at 28% 29%, #000 0 30%, transparent 30.5%), radial-gradient(circle at 77% 28%, #000 0 29%, transparent 29.5%), radial-gradient(circle at 52% 78%, #000 0 38%, transparent 38.5%); }
.media-aperture img, .media-aperture video { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(.78) contrast(1.03) sepia(.06); animation: media-drift 16s var(--ease) infinite alternate; }
@keyframes media-drift { from { transform: scale(1.02) translate3d(-1%,0,0); } to { transform: scale(1.08) translate3d(1.5%,-.7%,0); } }
.hero-route { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.hero-route path, .field-route path { fill: none; stroke: var(--signal); stroke-width: 4; stroke-dasharray: 11 13; animation: route-move 18s linear infinite; }
.hero-route circle { fill: var(--signal); stroke: var(--ink); stroke-width: 3; }
@keyframes route-move { to { stroke-dashoffset: -240; } }
.media-caption { position: absolute; right: 22px; bottom: 24px; z-index: 4; margin: 0; padding: 8px 10px; background: var(--paper); border: 1.5px solid var(--ink); font-size: 8px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; transform: rotate(-1deg); }
.scroll-cue { position: absolute; left: 50%; bottom: 12px; z-index: 10; display: flex; align-items: center; gap: 8px; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 22px; height: 1px; background: var(--ink); }

.problem { min-height: 100svh; padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 92px); overflow: hidden; background: var(--ink); color: var(--paper-light); }
.problem-lead h2, .section-heading h2, .feasibility h2, .privacy h2, .after-choice h2, .final-cta h2 { margin: 17px 0 0; font-family: Arial Black, Arial, sans-serif; font-size: clamp(55px, 9vw, 128px); line-height: .87; letter-spacing: -.072em; text-transform: lowercase; }
.chat-field { position: relative; height: 520px; margin: clamp(42px, 8vw, 92px) 0 0; }
.chat { position: absolute; z-index: 2; margin: 0; padding: 12px 16px; border: 1.5px solid var(--paper-light); background: var(--ink); font-size: clamp(14px, 1.4vw, 20px); font-weight: 800; transform: rotate(var(--r)); }
.chat--one { left: 2%; top: 8%; --r: -2deg; }.chat--two { right: 13%; top: 2%; --r: 2deg; }.chat--three { left: 22%; top: 42%; --r: 1deg; }.chat--four { right: 2%; top: 48%; --r: -2deg; }.chat--five { left: 4%; bottom: 6%; --r: 2deg; }.chat--six { right: 24%; bottom: 1%; --r: -1deg; background: var(--signal); color: var(--ink); }
.field-route { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.problem-close { max-width: 720px; margin: 20px 0 0 auto; color: #bfb5a7; font-size: clamp(19px, 2vw, 27px); font-weight: 700; line-height: 1.35; }

.how, .examples, .faq { padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 92px); }
.section-heading { max-width: 1000px; }
.section-heading h2 { font-size: clamp(58px, 9.2vw, 132px); }
.step-list { margin: clamp(62px, 9vw, 110px) 0 0; padding: 0; list-style: none; border-top: 4px solid var(--ink); }
.step-list li { display: grid; grid-template-columns: 110px minmax(260px,.8fr) 1fr; gap: 32px; align-items: baseline; padding: 30px 0 35px; border-bottom: 1.5px solid var(--ink); }
.step-list span { font-family: Arial Black, Arial, sans-serif; font-size: 44px; letter-spacing: -.06em; }
.step-list h3 { margin: 0; font-size: clamp(24px, 3.2vw, 48px); letter-spacing: -.045em; }
.step-list p { max-width: 510px; margin: 0; color: var(--quiet); font-size: 16px; font-weight: 700; line-height: 1.5; }

.feasibility { display: grid; grid-template-columns: minmax(0,.83fr) minmax(500px,1.17fr); gap: clamp(44px, 7vw, 110px); align-items: center; min-height: 100svh; padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 92px); background: #e3d7c5; border-block: 3px solid var(--ink); }
.feasibility h2 { margin-top: 19px; font-size: clamp(55px, 7vw, 104px); }
.feasibility-copy > p:last-of-type { max-width: 600px; margin: 28px 0; font-size: 18px; font-weight: 700; line-height: 1.55; }
.candidate-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.candidate-tab { padding: 10px 13px; border: 1.5px solid var(--ink); border-radius: 0; background: transparent; cursor: pointer; font-size: 10px; font-weight: 950; text-transform: uppercase; }
.candidate-tab.is-active { background: var(--signal); box-shadow: 3px 3px 0 var(--ink); }
.map-sheet { overflow: hidden; background: var(--paper); border: 2.5px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.map-topline { display: flex; justify-content: space-between; align-items: center; min-height: 62px; padding: 13px 17px; border-bottom: 2px solid var(--ink); font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.map-topline strong { display: grid; width: 42px; height: 42px; place-items: center; border: 1.5px solid var(--ink); border-radius: 50%; background: var(--signal); letter-spacing: -.04em; }
.map-visual { position: relative; height: min(55vw, 540px); overflow: hidden; background: #8d806e; isolation: isolate; }
.map-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.62) contrast(.92) sepia(.08); transform: scale(1.025); transition: opacity 240ms var(--ease), transform 900ms var(--ease); }
.map-visual.is-swapping .map-photo { opacity: .2; transform: scale(1.055); }
.map-photo-wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(243,235,221,.42), rgba(243,235,221,.12) 42%, rgba(25,24,22,.26)), linear-gradient(90deg, rgba(243,235,221,.2), transparent 55%); }
.geo-map { position: relative; z-index: 2; display: block; width: 100%; height: 100%; }
.map-route { fill: none; stroke: var(--signal); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 9 11; filter: drop-shadow(0 1px 0 rgba(25,24,22,.65)); animation: route-move 15s linear infinite; }
.origin-badge { fill: rgba(255,250,241,.94); stroke: var(--ink); stroke-width: 2.5; }
.origin-icon { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.origin-icon--spark { fill: var(--ink); stroke-width: 1.5; }
.map-destination { fill: var(--signal); stroke: var(--ink); stroke-width: 3; }
.map-destination-core { fill: var(--paper-light); }
.map-label { fill: var(--ink); paint-order: stroke; stroke: rgba(255,250,241,.94); stroke-width: 6px; stroke-linejoin: round; font: 900 11px Arial, sans-serif; letter-spacing: .05em; }
.map-destination-label { font: 950 15px Arial Black, Arial, sans-serif; }
.map-place-label { position: absolute; right: 13px; bottom: 12px; z-index: 4; margin: 0; padding: 7px 9px; background: rgba(255,250,241,.92); border: 1.5px solid var(--ink); font-size: 8px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.map-facts { display: grid; grid-template-columns: repeat(3,1fr); border-top: 2px solid var(--ink); }
.map-facts div { min-height: 104px; padding: 16px; border-right: 1px solid var(--ink); }.map-facts div:last-child { border: 0; }
.map-facts small, .private-answer small, .group-output small { display: block; margin-bottom: 8px; color: var(--quiet); font-size: 8px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }
.map-facts strong { font-size: 13px; line-height: 1.3; }

.section-heading--wide { max-width: none; }
.example-ledger { margin-top: clamp(58px, 9vw, 110px); border-top: 4px solid var(--ink); }
.example-line { display: grid; grid-template-columns: 140px 1fr minmax(220px,.35fr); gap: 30px; align-items: center; min-height: 140px; border-bottom: 1.5px solid var(--ink); }
.example-line > span { font-size: 9px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.example-line h3 { margin: 0; font-size: clamp(23px, 3.5vw, 52px); letter-spacing: -.05em; }
.example-line p { margin: 0; color: var(--quiet); font-size: 13px; font-weight: 800; }
.example-line:hover h3 { color: var(--signal); }

.privacy { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 130px); align-items: center; min-height: 88svh; padding: clamp(88px, 11vw, 160px) clamp(22px, 6vw, 92px); background: var(--signal); border-block: 3px solid var(--ink); }
.privacy h2 { font-size: clamp(54px, 7vw, 100px); }
.privacy-copy > p:last-child { max-width: 570px; margin: 28px 0 0; font-size: 18px; font-weight: 750; line-height: 1.55; }
.privacy-visual { position: relative; min-height: 530px; }
.private-answer, .group-output { position: absolute; width: min(66%, 340px); padding: 16px 18px; background: var(--paper); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.private-answer span { display: block; margin-bottom: 18px; font-size: 11px; font-weight: 950; text-transform: uppercase; }
.private-answer strong { display: block; margin-bottom: 11px; font-size: 29px; letter-spacing: .08em; }
.private-answer--one { left: 0; top: 2%; transform: rotate(-2deg); }.private-answer--two { right: 0; top: 32%; transform: rotate(2deg); }.private-answer--three { left: 8%; bottom: 2%; transform: rotate(-1deg); }
.group-output { right: 2%; bottom: 3%; z-index: 3; background: var(--ink); color: var(--paper); transform: translateY(45%); }
.group-output small { color: #bfb5a7; }.group-output strong { font-size: 23px; }

.after-choice { padding: clamp(95px, 12vw, 170px) clamp(22px, 6vw, 92px); overflow: hidden; background: var(--ink); color: var(--paper); }
.after-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; }
.after-copy .eyebrow { grid-column: 1 / -1; }
.after-choice h2 { font-size: clamp(58px, 8vw, 116px); }
.after-copy > p:last-child { max-width: 520px; margin: 0 0 6px auto; color: #bfb5a7; font-size: 17px; font-weight: 700; line-height: 1.55; }
.wordmark-window { min-height: clamp(320px, 44vw, 650px); margin-top: clamp(60px, 8vw, 100px); display: grid; align-items: center; overflow: visible; padding: clamp(24px, 3vw, 48px) 0 clamp(44px, 5vw, 82px); }
.wordmark-window span { display: block; padding-bottom: .12em; color: transparent; background: url("https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=2200&q=88") center 48% / cover; -webkit-background-clip: text; background-clip: text; font-family: Arial Black, Arial, sans-serif; font-size: clamp(95px, 20vw, 310px); font-weight: 950; line-height: .96; letter-spacing: -.09em; animation: wordmark-pan 18s var(--ease) infinite alternate; }
@keyframes wordmark-pan { from { background-position: 42% 42%; } to { background-position: 58% 58%; } }
.plan-line { display: flex; justify-content: space-between; gap: 18px; margin: 35px 0 0; padding: 21px 0 0; border-top: 1px solid var(--paper); list-style: none; font-size: 10px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 150px); }
.faq .section-heading h2 { font-size: clamp(51px, 6vw, 84px); }
.faq-list { border-top: 3px solid var(--ink); }
.faq details { padding: 21px 0; border-bottom: 1.5px solid var(--ink); }
.faq summary { cursor: pointer; font-size: 17px; font-weight: 900; list-style-position: outside; }
.faq details p { max-width: 680px; margin: 17px 0 3px; color: var(--quiet); font-size: 14px; font-weight: 650; line-height: 1.6; }

.final-cta { display: grid; min-height: 78svh; place-content: center; padding: 100px 22px; text-align: center; background: #e2d5c2; border-top: 3px solid var(--ink); }
.final-cta h2 { max-width: 1100px; font-size: clamp(57px, 10vw, 142px); }
.final-action { display: grid; grid-template-columns: 45px 1fr auto; gap: 16px; align-items: center; width: min(680px, 100%); min-height: 82px; margin: 46px auto 0; padding: 16px 20px; background: var(--signal); border: 2.5px solid var(--ink); border-radius: 24px; box-shadow: 7px 7px 0 var(--ink); text-align: left; text-decoration: none; }
.final-action > span:last-child { font-size: 25px; }
.final-mic { justify-self: center; width: 17px; height: 26px; border-width: 2.5px; }
.final-mic::after { bottom: -9px; width: 27px; height: 14px; border-width: 2.5px; }

footer { display: grid; grid-template-columns: .7fr 1fr 1fr auto; gap: 35px; align-items: start; padding: 55px clamp(22px, 6vw, 92px) 80px; background: var(--ink); color: var(--paper); }
footer p { max-width: 380px; margin: 5px 0 0; color: #bfb5a7; font-size: 12px; font-weight: 700; line-height: 1.45; }
footer nav { display: flex; flex-wrap: wrap; gap: 10px 20px; padding-top: 8px; }
footer nav a { font-size: 10px; font-weight: 850; text-underline-offset: 4px; } footer small { padding-top: 8px; color: #938a7e; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-up 620ms var(--ease) both; }
@keyframes reveal-up { from { opacity: 0; transform: translateY(22px); } }

/* Desktop poster composition: let the action fill the left plane instead of
   vertically floating in the middle of it. Mobile keeps its own layout below. */
@media (min-width: 921px) and (min-height: 721px) {
  .hero-copy {
    justify-content: flex-start;
    gap: clamp(24px, 2.8svh, 30px);
    padding: clamp(108px, 12svh, 124px) clamp(36px, 4vw, 72px) 22px;
  }
  .hero-message { width: min(100%, 860px); }
  .hero-copy .eyebrow { margin-bottom: clamp(17px, 2.2svh, 23px); font-size: clamp(10px, .62vw, 12px); }
  .hero h1 {
    max-width: 860px;
    font-size: clamp(98px, min(7.5vw, 13.75svh), 140px);
    line-height: .83;
  }
  .hero-deck {
    max-width: 790px;
    margin-top: clamp(20px, 2.5svh, 27px);
    font-size: clamp(18px, min(1.35vw, 2.2svh), 21px);
  }
  .hero-entry { display: flex; flex: 1; width: min(100%, 860px); min-height: 0; flex-direction: column; }
  .trip-starter {
    flex: 1;
    grid-template-columns: minmax(178px, 31%) 1fr;
    min-height: clamp(158px, 20svh, 205px);
    border-radius: 32px;
  }
  .starter-mic { gap: 15px; }
  .mic-glyph { transform: scale(1.14); }
  .mic-label { margin-top: 12px; font-size: 10px; }
  .starter-type { justify-content: flex-start; padding: 34px 78px 22px 28px; }
  .starter-type label { margin-bottom: 13px; font-size: 10px; }
  .starter-type textarea, .rotating-prompt { font-size: clamp(17px, 1.08vw, 20px); }
  .rotating-prompt { left: 28px; right: 74px; top: 72px; }
  .starter-go { right: 20px; bottom: 20px; width: 46px; height: 46px; font-size: 23px; }
  .starter-help { margin-top: 16px; font-size: 12px; }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 62px; padding: 8px 18px; }
  .desktop-nav { display: none; }.header-actions { gap: 11px; }.header-start { display: none; }
  .hero { display: block; min-height: 100svh; padding-bottom: min(32svh, 280px); }
  .hero-copy { min-height: 68svh; justify-content: flex-start; gap: 16px; padding: 92px 20px 25px; }
  .hero h1 { max-width: 650px; font-size: clamp(54px, 15vw, 86px); }
  .hero-deck { margin: 19px 0 0; font-size: 15px; }
  .trip-starter { grid-template-columns: minmax(95px, 31%) 1fr; min-height: 104px; border-radius: 23px; }
  .starter-type { padding: 17px 51px 15px 17px; }.starter-type label { margin-bottom: 8px; }.rotating-prompt { left: 17px; right: 49px; top: 50px; font-size: 14px; }.starter-go { right: 10px; bottom: 11px; width: 35px; height: 35px; }
  .hero-media { position: absolute; inset: auto 0 0; min-height: min(34svh, 290px); border-top: 2px solid var(--ink); border-left: 0; }
  .media-aperture { -webkit-mask-image: radial-gradient(circle at 20% 54%,#000 0 37%,transparent 37.5%), radial-gradient(circle at 58% 46%,#000 0 43%,transparent 43.5%), radial-gradient(circle at 92% 55%,#000 0 35%,transparent 35.5%); mask-image: radial-gradient(circle at 20% 54%,#000 0 37%,transparent 37.5%), radial-gradient(circle at 58% 46%,#000 0 43%,transparent 43.5%), radial-gradient(circle at 92% 55%,#000 0 35%,transparent 35.5%); }
  .media-aperture img, .media-aperture video { object-position: center 52%; }.hero-route { height: 175%; transform: translateY(-22%); }.media-caption { right: 10px; bottom: 10px; }
  .scroll-cue { display: none; }
  .step-list li { grid-template-columns: 70px 1fr; gap: 18px; }.step-list p { grid-column: 2; }
  .feasibility { grid-template-columns: 1fr; }.map-visual { height: min(75vw, 520px); }
  .example-line { grid-template-columns: 100px 1fr; padding: 22px 0; }.example-line p { grid-column: 2; }
  .privacy { grid-template-columns: 1fr; }.privacy-visual { width: min(100%, 620px); margin: 0 auto; }
  .after-copy { grid-template-columns: 1fr; }.after-copy > p:last-child { margin: 0; }.faq { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; } footer p { justify-self: end; } footer nav { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wordmark { font-size: 27px; }.site-header.is-scrolled { min-height: 56px; }.sign-in { font-size: 10px; }
  .hero { padding-bottom: 27svh; }.hero-copy { min-height: 73svh; padding-top: 78px; }
  .hero-copy .eyebrow { margin-bottom: 15px; font-size: 8px; }.hero h1 { font-size: clamp(48px, 14.2vw, 68px); }.hero-deck { max-width: 370px; font-size: 13px; line-height: 1.36; }
  .trip-starter { min-height: 98px; box-shadow: 5px 5px 0 var(--ink); }.starter-type label { font-size: 7px; }.starter-type textarea, .rotating-prompt { font-size: 12.5px; }.rotating-prompt { top: 47px; }.starter-mic { gap: 9px; }.mic-glyph { transform: scale(.82); }.mic-label { font-size: 7px; }
  .starter-help { margin-top: 13px; font-size: 9px; }.hero-media { min-height: 28svh; }
  .problem, .how, .examples, .faq { padding-inline: 18px; }.problem-lead h2, .section-heading h2, .feasibility h2, .privacy h2, .after-choice h2, .final-cta h2 { font-size: clamp(47px, 14vw, 68px); }
  .chat-field { height: 470px; }.chat { padding: 9px 11px; font-size: 12px; }.chat--two { right: 2%; }.chat--three { left: 7%; }.chat--six { right: 2%; }
  .step-list li { grid-template-columns: 52px 1fr; gap: 12px; padding: 22px 0 25px; }.step-list span { font-size: 30px; }.step-list h3 { font-size: 22px; }.step-list p { font-size: 13px; }
  .feasibility { padding-inline: 18px; }.feasibility-copy > p:last-of-type { font-size: 14px; }.candidate-tabs { gap: 6px; }.candidate-tab { padding: 8px 9px; font-size: 8px; }
  .map-sheet { box-shadow: 6px 6px 0 var(--ink); }.map-facts { grid-template-columns: 1fr; }.map-facts div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }.map-facts div:last-child { border-bottom: 0; }
  .example-line { grid-template-columns: 1fr; gap: 10px; min-height: 0; padding: 27px 0; }.example-line p { grid-column: 1; }
  .privacy { padding-inline: 18px; }.privacy-copy > p:last-child { font-size: 14px; }.privacy-visual { min-height: 475px; }.private-answer { width: 74%; }.private-answer strong { font-size: 23px; }.group-output { width: 75%; }
  .after-choice { padding-inline: 18px; }.wordmark-window { min-height: 250px; margin-top: 35px; padding: 20px 0 34px; overflow: visible; }.wordmark-window span { font-size: 24vw; line-height: .98; }.plan-line { display: grid; grid-template-columns: repeat(3,1fr); font-size: 8px; }
  .faq summary { font-size: 14px; }.final-action { grid-template-columns: 36px 1fr auto; min-height: 72px; border-radius: 20px; font-size: 13px; }
  footer { grid-template-columns: 1fr; padding-inline: 18px; } footer p { justify-self: start; } footer nav { grid-column: 1; }
}

@media (min-width: 921px) and (max-height: 720px) {
  .site-header { min-height: 62px; padding-block: 7px; }
  .wordmark { font-size: 28px; }
  .hero-copy { justify-content: flex-start; gap: clamp(14px, 2.8svh, 19px); padding: clamp(62px, 11svh, 76px) clamp(28px, 4vw, 60px) 33px; }
  .hero-message { width: min(100%, 820px); }
  .hero-copy .eyebrow { margin-bottom: 9px; font-size: 8px; }
  .hero h1 { max-width: 820px; font-size: clamp(82px, min(7vw, 17svh), 110px); line-height: .82; }
  .hero-deck { max-width: 720px; margin: 12px 0 0; font-size: clamp(12px, 1.15vw, 15px); line-height: 1.3; }
  .hero-entry { display: flex; flex: 1; width: min(100%, 820px); min-height: 0; flex-direction: column; }
  .trip-starter { flex: 1; grid-template-columns: minmax(130px, 31%) 1fr; min-height: clamp(104px, 20svh, 132px); border-radius: 24px; box-shadow: 5px 5px 0 var(--ink); }
  .starter-type { justify-content: flex-start; padding: 26px 60px 13px 20px; }
  .starter-type label { margin-bottom: 7px; font-size: 8px; }
  .starter-type textarea, .rotating-prompt { font-size: clamp(13px, 1.1vw, 16px); }
  .rotating-prompt { left: 20px; right: 56px; top: 55px; }
  .starter-mic { gap: 8px; }
  .mic-glyph { transform: scale(.9); }
  .mic-label { margin-top: 5px; font-size: 8px; }
  .starter-help { margin-top: 9px; font-size: 9px; }
}

@media (max-height: 700px) and (max-width: 920px) {
  .hero { padding-bottom: 190px; }.hero-copy { min-height: 510px; padding-top: 70px; }.hero h1 { font-size: 50px; }.hero-deck { margin-block: 14px 16px; }.hero-media { min-height: 205px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Guided intake modal — the tap-it-out flow, housed in the landing system. */
.guided-modal { width: min(92vw, 720px); max-height: min(88svh, 860px); margin: auto; padding: 26px clamp(18px, 4vw, 34px) 30px; border: 3px solid var(--ink); background: var(--paper-light); color: var(--ink); box-shadow: 8px 8px 0 var(--ink); overflow-y: auto; }
.guided-modal::backdrop { background: rgba(25, 24, 22, .45); }
.guided-modal__header { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(25,24,22,.28); }
.guided-modal__close { border: 0; background: none; color: var(--ink); cursor: pointer; font: inherit; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-decoration: underline; text-underline-offset: 3px; text-transform: lowercase; }
.guided-modal h2 { margin: 18px 0 0; font-family: Arial Black, Arial, sans-serif; font-size: clamp(30px, 5vw, 52px); line-height: .9; letter-spacing: -.06em; }
.guided-modal__deck { margin: 10px 0 0; color: var(--quiet); font-size: 12px; font-weight: 700; line-height: 1.5; }
.guided-modal .guided-question { display: grid; grid-template-columns: minmax(150px, .34fr) 1fr; gap: 22px; padding: 20px 0; border-bottom: 1.5px solid var(--ink); }
.guided-modal .guided-question h3 { margin: 0; font-size: 12px; font-weight: 950; letter-spacing: .05em; text-transform: uppercase; }
.guided-modal .guided-question > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.guided-modal .guided-question button { min-height: 46px; padding: 8px 10px; border: 1.5px solid var(--ink); background: var(--paper-light); cursor: pointer; font: inherit; font-size: 11px; font-weight: 800; transition: background 120ms var(--ease), transform 120ms var(--ease), box-shadow 120ms var(--ease); }
.guided-modal .guided-question button:hover, .guided-modal .guided-question button.is-selected { background: var(--signal); }
.guided-modal .guided-question button.is-selected { box-shadow: 3px 3px 0 var(--ink); transform: translate(-1px, -1px); }
.guided-modal__submit { display: flex; justify-content: space-between; align-items: center; gap: 14px; width: min(100%, 440px); margin: 24px 0 0 auto; min-height: 54px; padding: 12px 18px; border: 2px solid var(--ink); background: var(--signal); box-shadow: 4px 4px 0 var(--ink); cursor: pointer; font: inherit; font-size: 12px; font-weight: 950; text-transform: lowercase; transition: transform 140ms var(--ease), box-shadow 140ms var(--ease); }
.guided-modal__submit:hover:not(:disabled) { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.guided-modal__submit:disabled { opacity: .5; cursor: not-allowed; }

@media (max-width: 920px) {
  .guided-modal { width: 100vw; max-width: 100vw; max-height: 100svh; height: 100svh; margin: 0; border: 0; border-top: 3px solid var(--ink); box-shadow: none; }
  .guided-modal .guided-question { grid-template-columns: 1fr; gap: 10px; padding: 16px 0; }
  .guided-modal .guided-question > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guided-modal .guided-question button { min-height: 52px; }
  .guided-modal__submit { width: 100%; }
}
