:root {
  --ink: #01182d;
  --ink-dark: #000f1c;
  --ink-soft: #536978;
  --paper: #f5f7f8;
  --white: #ffffff;
  --accent: #f2b544;
  --accent-dark: #a96500;
  --sage: #e1eef2;
  --sage-dark: #2f7480;
  --mint: #dcecf0;
  --line: #d6e1e5;
  --shadow: 0 24px 70px rgba(1, 24, 45, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 5;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: auto; height: auto; }
.brand-logo-founder { width: clamp(210px, 25vw, 310px); }
.prototype-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ced9dc;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.prototype-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-dark); box-shadow: 0 0 0 4px rgba(47,116,128,.13); }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  padding-top: 52px;
  padding-bottom: 104px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  font-size: clamp(47px, 6vw, 77px);
  line-height: .99;
  letter-spacing: -.045em;
  font-weight: 800;
}
.hero h1 em { color: var(--accent-dark); font-style: normal; font-weight: 800; }
.hero-lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.58;
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.button {
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .option-button:focus-visible, .back-button:focus-visible, .text-button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(239,180,63,.42); outline-offset: 3px; }
.button-primary { background: var(--accent); color: var(--ink-dark); box-shadow: 0 12px 30px rgba(185,120,20,.2); }
.button-primary:hover { background: #f6c65f; }
.duration { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 14px; }
.duration svg { width: 19px; fill: none; stroke: var(--sage-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefits { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; padding: 0; margin: 26px 0 0; color: var(--ink-soft); font-size: 13px; }
.benefits li::before { content: "✓"; color: var(--sage-dark); font-weight: 800; margin-right: 7px; }
.host-notice { max-width: 680px; margin-top: 27px; border: 1px solid #d7dece; border-radius: 16px; background: rgba(255,255,255,.62); overflow: hidden; }
.host-notice summary { display: grid; grid-template-columns: 38px 1fr 19px; align-items: center; gap: 12px; padding: 15px 17px; cursor: pointer; list-style: none; }
.host-notice summary::-webkit-details-marker { display: none; }
.host-notice summary > span:nth-child(2) { display: flex; flex-direction: column; gap: 2px; }
.host-notice summary strong { font-size: 13px; }
.host-notice summary small { color: var(--ink-soft); font-size: 11px; }
.notice-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--sage); color: var(--sage-dark); }
.notice-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.notice-chevron { width: 18px; fill: none; stroke: var(--ink-soft); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.host-notice[open] .notice-chevron { transform: rotate(180deg); }
.host-notice-body { padding: 0 18px 18px 67px; color: var(--ink-soft); font-size: 11px; line-height: 1.55; }
.host-notice-body p { margin: 0; }
.host-notice-body .residency-note { margin-top: 10px; padding-left: 11px; border-left: 2px solid var(--accent); }
.host-notice-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 13px 0; padding: 0; list-style: none; }
.host-notice-body li { position: relative; padding-left: 13px; }
.host-notice-body li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.host-notice-body strong { color: var(--ink); }
.notice-links { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 12px; }
.notice-links a { color: var(--accent-dark); font-weight: 750; text-underline-offset: 3px; }
.hosting-disclosure, .privacy-openai, .privacy-self { display: none; }
html[data-hosting="openai"] .disclosure-openai { display: block; }
html[data-hosting="self"] .disclosure-self { display: block; }
html[data-hosting="openai"] .privacy-openai,
html[data-hosting="self"] .privacy-self { display: inline; }

.journey-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.journey-visual::before {
  content: "";
  position: absolute;
  inset: 3% 2% 0;
  border-radius: 49% 51% 61% 39% / 48% 43% 57% 52%;
  background: linear-gradient(135deg, #dcecf0, #eaf2f5 55%, #f8dfad);
  transform: rotate(-7deg);
}
.orbit { position: absolute; border: 1px solid rgba(23,54,75,.14); border-radius: 50%; }
.orbit-one { inset: 8% -8% 3% 7%; transform: rotate(16deg); }
.orbit-two { inset: 19% 4% 13% -6%; transform: rotate(-19deg); }
.map-card {
  position: relative;
  z-index: 2;
  width: min(360px, 82%);
  padding: 30px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transform: rotate(2deg);
}
.map-label { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-size: 10px; font-weight: 800; }
.map-step { display: flex; align-items: center; gap: 15px; }
.map-step > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; border: 1px solid #c9d6d8; color: var(--ink-soft); font-size: 11px; font-weight: 800; background: white; }
.map-step.active > span { background: var(--accent); border-color: var(--accent); color: var(--ink-dark); box-shadow: 0 7px 20px rgba(185,120,20,.2); }
.map-step div { display: flex; flex-direction: column; gap: 3px; }
.map-step strong { font-size: 15px; }
.map-step small { color: var(--ink-soft); font-size: 12px; }
.map-line { height: 30px; margin-left: 21px; display: flex; align-items: stretch; }
.map-line i { border-left: 1px dashed #aabcc1; }
.map-destination { margin-top: 25px; padding: 13px 15px; border-radius: 11px; display: flex; align-items: center; gap: 10px; background: var(--ink); color: white; font-size: 12px; font-weight: 700; }
.map-destination svg { width: 19px; fill: none; stroke: #9ee0c8; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.guide-section { position: relative; padding: 110px 0; background: linear-gradient(145deg, #06233b, #01182d 68%, #000f1c); color: white; overflow: hidden; }
.guide-section::before { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -180px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018); }
.guide-layout { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(48px, 7vw, 88px); }
.guide-intro { padding-top: 27px; }
.guide-intro .eyebrow { color: #f4c769; }
.guide-intro h2, .paths h2 { margin: 0; font-family: Arial, Helvetica, "Segoe UI", sans-serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; font-weight: 800; }
.guide-intro > p:not(.eyebrow) { margin: 22px 0 0; color: #b7c5cb; line-height: 1.7; font-size: 16px; }
.privacy-note { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); display: flex; gap: 13px; color: #b7c5cb; font-size: 12px; line-height: 1.55; }
.privacy-note svg { flex: 0 0 23px; fill: none; stroke: #c6db92; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.privacy-note strong { color: white; display: block; font-size: 13px; }

.wizard-card { min-width: 0; background: white; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(25px, 4vw, 44px); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.wizard-head { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.back-button { visibility: hidden; display: inline-flex; align-items: center; gap: 5px; border: 0; background: transparent; padding: 4px 0; cursor: pointer; color: var(--ink-soft); }
.back-button.visible { visibility: visible; }
.back-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.progress-track { height: 5px; margin-top: 14px; overflow: hidden; border-radius: 10px; background: #e9eeee; }
.progress-track span { display: block; height: 100%; width: 33.333%; border-radius: inherit; background: linear-gradient(90deg, var(--accent-dark), var(--accent)); transition: width .35s ease; }
.question-copy { margin-top: 35px; }
.question-copy > p:first-child { margin: 0 0 8px; color: var(--accent-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.question-copy h3 { margin: 0; font-family: Arial, Helvetica, "Segoe UI", sans-serif; font-size: clamp(28px, 3vw, 37px); line-height: 1.15; font-weight: 800; letter-spacing: -.03em; }
.question-copy > p:last-child { margin: 10px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.option-button {
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
  background: white;
  cursor: pointer;
  transition: border .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.option-button:hover { border-color: #aac0c4; transform: translateY(-1px); box-shadow: 0 9px 22px rgba(23,54,75,.08); }
.option-button.selected { border-color: var(--accent-dark); background: #fffaf0; box-shadow: 0 0 0 2px rgba(185,120,20,.11); }
.option-number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: #edf3f2; color: var(--sage-dark); font-size: 11px; font-weight: 800; }
.option-button.selected .option-number { background: var(--accent); color: var(--ink-dark); }
.option-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.option-text strong { font-size: 14px; line-height: 1.25; }
.option-text small { color: var(--ink-soft); font-size: 11px; line-height: 1.35; }
.option-check { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid #bdcacc; border-radius: 50%; }
.option-check svg { opacity: 0; width: 12px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.option-button.selected .option-check { border-color: var(--accent); background: var(--accent); }
.option-button.selected .option-check svg { opacity: 1; }
.wizard-actions { min-height: 62px; margin-top: 28px; padding-top: 22px; border-top: 1px solid #e8edef; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.wizard-actions > span { color: var(--ink-soft); font-size: 11px; }
.button-next { min-width: 130px; min-height: 46px; color: white; background: var(--ink); }
.button-next:hover:not(:disabled) { background: var(--ink-dark); }
.button-next:disabled { cursor: not-allowed; opacity: .38; transform: none; }

.result-view[hidden] { display: none; }
.result-heading { display: flex; align-items: flex-start; gap: 15px; }
.result-check { flex: 0 0 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--sage-dark); }
.result-check svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.result-heading p { margin: 1px 0 4px; color: var(--accent-dark); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.result-heading h3 { margin: 0; font-family: Arial, Helvetica, "Segoe UI", sans-serif; font-size: clamp(25px, 3vw, 34px); line-height: 1.16; font-weight: 800; }
.primary-result { position: relative; overflow: hidden; margin-top: 27px; padding: 28px; color: white; background: linear-gradient(140deg, #062b48, #174761); border-radius: 20px; }
.primary-result::after { content: ""; position: absolute; width: 180px; height: 180px; right: -70px; top: -90px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.025); }
.result-tag { position: relative; z-index: 1; display: inline-block; margin: 0 0 12px; padding: 5px 8px; border-radius: 6px; background: rgba(239,180,63,.15); color: #f6d788; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.primary-result h4 { position: relative; z-index: 1; margin: 0; max-width: 520px; font-size: clamp(21px, 2.5vw, 28px); line-height: 1.2; }
.primary-result .result-reason { position: relative; z-index: 1; margin: 13px 0 0; max-width: 600px; color: #c5d3d8; font-size: 14px; line-height: 1.6; }
.result-highlights { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.result-highlights li { padding: 6px 9px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: #e0e9eb; font-size: 10px; }
.primary-result .result-action { position: relative; z-index: 1; margin-top: 22px; background: var(--accent); color: var(--ink-dark); }
.primary-result .result-action:hover { background: #f6c65f; }
.secondary-heading { margin-top: 25px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.secondary-heading h4 { margin: 0; font-size: 14px; }
.secondary-heading p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.secondary-results { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 12px; }
.secondary-card { display: flex; flex-direction: column; min-height: 155px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; transition: transform .18s ease, border .18s ease, box-shadow .18s ease; }
.secondary-card:hover { transform: translateY(-2px); border-color: #b5c4c7; box-shadow: 0 10px 24px rgba(23,54,75,.08); }
.secondary-card small { color: var(--accent-dark); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.secondary-card strong { margin-top: 8px; font-size: 14px; line-height: 1.25; }
.secondary-card span { margin-top: 6px; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
.secondary-card b { margin-top: auto; padding-top: 12px; color: var(--sage-dark); font-size: 11px; }
.result-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.text-button { display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; background: transparent; color: var(--ink-soft); font-size: 11px; cursor: pointer; }
.text-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.consult-link { color: var(--accent-dark); font-size: 11px; font-weight: 750; text-underline-offset: 3px; }
.contact-panel { margin-top: 24px; padding: 24px; border: 1px solid #d8dece; border-radius: 18px; background: #f8f8f1; }
.contact-panel[hidden] { display: none; }
.contact-heading > p { margin: 0 0 6px; color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-heading h4 { margin: 0; font-family: Arial, Helvetica, "Segoe UI", sans-serif; font-size: 26px; line-height: 1.15; font-weight: 800; }
.contact-heading > span { display: block; margin-top: 9px; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 22px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; }
.form-grid label > span { color: var(--ink); font-size: 11px; font-weight: 750; }
.form-grid label b { color: var(--accent-dark); }
.form-grid label small { color: var(--ink-soft); font-size: 9px; font-weight: 500; }
.form-wide { grid-column: 1 / -1; }
.form-grid input { width: 100%; height: 43px; border: 1px solid #cbd4c5; border-radius: 9px; padding: 0 12px; color: var(--ink); background: white; font-size: 14px; }
.form-grid input:hover { border-color: #a9b7a2; }
.form-grid input:focus { outline: 0; border-color: var(--accent-dark); box-shadow: 0 0 0 3px rgba(239,180,63,.18); }
.consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 10px; margin-top: 17px; align-items: start; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.consent-row input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--sage-dark); }
.consent-row a { color: var(--accent-dark); text-underline-offset: 2px; }
.data-boundary-note { display: flex; gap: 10px; margin-top: 17px; padding: 12px 13px; border-radius: 10px; background: var(--mint); color: #4c6457; font-size: 10px; line-height: 1.5; }
.data-boundary-note svg { flex: 0 0 19px; width: 19px; fill: none; stroke: var(--sage-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.data-boundary-note strong { color: var(--ink); }
.form-submit { min-height: 47px; margin-top: 18px; background: var(--accent); color: var(--ink-dark); }
.form-submit:hover { background: #f6c65f; }
.form-status { min-height: 17px; margin: 9px 0 0; color: var(--sage-dark); font-size: 10px; }

.paths { padding: 100px 0; display: grid; grid-template-columns: .84fr 1.16fr; align-items: end; gap: clamp(45px, 8vw, 95px); }
.paths-copy > p:last-child { margin: 20px 0 0; max-width: 500px; color: var(--ink-soft); line-height: 1.7; }
.path-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.path-item { display: grid; grid-template-columns: 45px .8fr 1.2fr; align-items: center; gap: 14px; padding: 21px 23px; background: rgba(255,255,255,.7); }
.path-item > span { color: var(--accent-dark); font-size: 10px; font-weight: 800; }
.path-item strong { font-size: 14px; }
.path-item small { color: var(--ink-soft); font-size: 12px; }
.footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #7b8d95; font-size: 10px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px 16px; }
.footer-links a { color: var(--ink-soft); text-underline-offset: 2px; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 55px; padding-top: 60px; padding-bottom: 85px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .benefits { justify-content: center; }
  .host-notice { margin-inline: auto; text-align: left; }
  .journey-visual { min-height: 410px; }
  .journey-visual::before { inset: 2% 13%; }
  .orbit-one { inset: 5% 9%; }
  .orbit-two { inset: 14% 15%; }
  .guide-layout, .paths { grid-template-columns: 1fr; }
  .guide-intro { max-width: 610px; padding-top: 0; }
  .guide-intro > p:not(.eyebrow) { max-width: 600px; }
  .privacy-note { max-width: 520px; }
  .paths { gap: 42px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .topbar { min-height: 74px; }
  .brand-logo-founder { width: min(52vw, 230px); }
  .prototype-badge { padding: 7px 9px; font-size: 10px; }
  .hero { padding-top: 42px; padding-bottom: 66px; gap: 40px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { margin-top: 22px; font-size: 17px; line-height: 1.55; }
  .hero-actions { flex-direction: column; gap: 16px; margin-top: 27px; }
  .button-primary { width: 100%; }
  .benefits { justify-content: flex-start; max-width: 290px; margin-inline: auto; text-align: left; gap: 8px 18px; }
  .host-notice summary { grid-template-columns: 36px 1fr 18px; padding: 14px; }
  .host-notice-body { padding: 0 15px 16px; }
  .host-notice-body ul { grid-template-columns: 1fr; gap: 7px; }
  .journey-visual { min-height: 350px; }
  .journey-visual::before { inset: 0; }
  .map-card { width: min(330px, 88%); padding: 24px; }
  .guide-section { padding: 72px 0; }
  .guide-layout { gap: 38px; }
  .guide-intro h2, .paths h2 { font-size: 37px; }
  .wizard-card { padding: 22px 18px; border-radius: 21px; }
  .question-copy { margin-top: 28px; }
  .option-grid { grid-template-columns: 1fr; gap: 9px; margin-top: 22px; }
  .option-button { min-height: 72px; }
  .wizard-actions { align-items: stretch; flex-direction: column-reverse; gap: 11px; }
  .wizard-actions > span { text-align: center; }
  .button-next { width: 100%; }
  .result-heading { align-items: center; }
  .result-heading h3 { font-size: 25px; }
  .primary-result { padding: 23px 20px; }
  .primary-result .result-action { width: 100%; }
  .contact-panel { padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-submit { width: 100%; }
  .secondary-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .secondary-results { grid-template-columns: 1fr; }
  .secondary-card { min-height: 138px; }
  .result-footer { align-items: flex-start; flex-direction: column-reverse; }
  .paths { padding: 72px 0; }
  .path-item { grid-template-columns: 35px 1fr; gap: 6px 12px; }
  .path-item small { grid-column: 2; }
  .footer-inner { padding: 20px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
