:root {
  color-scheme: dark;
  --bg: oklch(11% 0.018 260);
  --bg-2: oklch(15% 0.025 260);
  --surface: oklch(18% 0.028 258);
  --surface-2: oklch(22% 0.032 258);
  --text: oklch(94% 0.016 255);
  --muted: oklch(72% 0.045 258);
  --faint: oklch(57% 0.055 258);
  --line: oklch(33% 0.045 258 / 0.62);
  --accent: oklch(64% 0.22 263);
  --accent-strong: oklch(70% 0.19 255);
  --good: oklch(72% 0.18 152);
  --warn: oklch(75% 0.17 68);
  --danger: oklch(63% 0.19 28);
  --shadow: 0 28px 90px oklch(6% 0.02 260 / 0.55);
  --radius: 18px;
  --max: 1180px;
  --font-ui: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Chakra Petch", "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: oklch(95% 0.02 255);
  --bg-2: oklch(91% 0.025 255);
  --surface: oklch(98% 0.008 255);
  --surface-2: oklch(94% 0.018 255);
  --text: oklch(20% 0.04 257);
  --muted: oklch(42% 0.055 257);
  --faint: oklch(56% 0.06 257);
  --line: oklch(80% 0.035 257 / 0.82);
  --accent: oklch(58% 0.22 263);
  --accent-strong: oklch(52% 0.21 263);
  --shadow: 0 24px 76px oklch(41% 0.05 260 / 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, oklch(28% 0.11 263 / 0.48), transparent 34rem),
    radial-gradient(circle at 100% 8%, oklch(25% 0.09 215 / 0.36), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 42%, var(--bg));
  color: var(--text);
  font-family: var(--font-ui);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.16;
  z-index: -1;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: oklch(64% 0.22 263 / 0.32);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--accent);
  color: oklch(98% 0.01 255);
  border-radius: 999px;
  transform: translateY(-150%);
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 44px);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: calc(13px + env(safe-area-inset-top)) 0 13px;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  width: 100%;
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  background: oklch(11% 0.018 260 / 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

:root[data-theme="light"] .site-header.is-scrolled {
  background: oklch(96% 0.018 255 / 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  filter: drop-shadow(0 8px 20px oklch(7% 0.04 260 / 0.35));
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.theme-toggle {
  position: relative;
  width: 58px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.08);
}

.theme-toggle::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 4px;
  top: 3px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="light"] .theme-toggle::before {
  transform: translateX(22px);
}

.theme-toggle .sun,
.theme-toggle .moon {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.theme-toggle .sun {
  right: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 -8px 0 -5px currentColor, 0 8px 0 -5px currentColor, 8px 0 0 -5px currentColor, -8px 0 0 -5px currentColor;
}

.theme-toggle .moon {
  left: 9px;
  border-radius: 50%;
  box-shadow: inset -5px 0 0 currentColor;
}

.section-grid,
.section-stack,
.feature-section,
.map-demo,
.truth-section,
.faq-section,
.compare-section,
.cta-panel,
.notice-band,
.legal-page,
.support-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  padding: clamp(52px, 8vw, 108px) 0 clamp(38px, 6vw, 80px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 10vw, 8.6rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1), border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  border-color: transparent;
  color: oklch(98% 0.01 255);
  box-shadow: 0 14px 36px oklch(50% 0.2 263 / 0.33);
}

.button.secondary {
  color: var(--text);
  background: var(--surface);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.hero-facts div {
  padding: 18px;
  background: var(--surface);
}

.hero-facts dt {
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-shot {
  justify-self: center;
  width: min(100%, 430px);
}

.phone-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 24px;
  background:
    linear-gradient(180deg, oklch(20% 0.035 258), oklch(12% 0.025 260)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

:root[data-theme="light"] .phone-shell {
  background: linear-gradient(180deg, oklch(99% 0.01 255), oklch(91% 0.022 255));
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, oklch(100% 0 0 / 0.16), transparent 42%);
}

.phone-status,
.app-top,
.split-row,
.matrix-head,
.fare-matrix > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.signal {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--good);
  color: oklch(15% 0.03 155);
}

.app-top {
  justify-content: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.app-top img {
  width: 52px;
  height: 52px;
}

.scan-box {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: oklch(15% 0.027 258 / 0.72);
}

:root[data-theme="light"] .scan-box {
  background: oklch(96% 0.015 255 / 0.82);
}

.field-row,
.split-row > div {
  display: grid;
  gap: 7px;
}

.field-row span,
.split-row span,
.matrix-head,
.fare-matrix span {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.field-row b,
.split-row b {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.split-row {
  gap: 12px;
}

.split-row > div {
  flex: 1;
}

.scan-button {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: oklch(98% 0.01 255);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
}

.mini-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.mini-tabs span {
  padding: 9px 8px;
  border-radius: 11px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.mini-tabs .active {
  background: var(--accent);
  color: oklch(98% 0.01 255);
}

.fare-matrix {
  display: grid;
  gap: 8px;
}

.fare-matrix > div {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}

.fare-matrix b {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.fare-matrix .fare.good {
  color: var(--good);
}

.fare-matrix .fare.warn {
  color: var(--warn);
}

.notice-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: clamp(66px, 10vw, 124px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.notice-band p {
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  background: var(--surface);
  color: var(--muted);
  line-height: 1.55;
}

.notice-band strong {
  color: var(--text);
}

.section-stack,
.feature-section,
.map-demo,
.truth-section,
.faq-section,
.compare-section,
.cta-panel {
  margin-bottom: clamp(72px, 12vw, 148px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading.compact {
  display: block;
  max-width: 740px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.workflow article {
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border-right: 1px solid var(--line);
}

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

.workflow span {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-weight: 700;
}

.workflow p,
.feature-list p,
.map-copy p,
.truth-list p,
.faq-list p,
.support-card p,
.support-hero .lead,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.feature-copy {
  position: sticky;
  top: 104px;
}

.feature-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.feature-list article {
  padding: clamp(22px, 4vw, 36px);
  background: var(--surface);
}

.map-demo {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--surface), oklch(17% 0.04 260 / 0.72));
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .map-demo {
  background: linear-gradient(135deg, var(--surface), oklch(91% 0.025 255));
}

.route-graphic {
  min-height: 300px;
}

.route-graphic svg {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.route {
  fill: none;
  stroke-width: 4.5;
  stroke-linecap: round;
}

.route.line-blue {
  stroke: url(#gBlue);
  filter: url(#routeGlow);
}

.route.line-green {
  stroke: url(#gGreen);
  filter: url(#routeGlow);
}

.route.muted {
  stroke: var(--faint);
  stroke-width: 3;
  opacity: 0.5;
  stroke-dasharray: 1 13;
}

.route.ghost {
  stroke: var(--faint);
  stroke-width: 2;
  opacity: 0.14;
}

.map-glow {
  fill: url(#gAmbient);
  transform-box: fill-box;
  transform-origin: center;
  animation: mapBreathe 6s ease-in-out infinite;
}

.radar circle {
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: radarPing 3.6s ease-out infinite;
}

.radar circle:nth-child(2) {
  animation-delay: 1.2s;
}

.radar circle:nth-child(3) {
  animation-delay: 2.4s;
}

.pulse {
  fill: oklch(97% 0.02 250);
  opacity: 0;
  filter: url(#routeGlow);
}

@supports (offset-path: path("M0 0 L1 1")) {
  .pulse {
    opacity: 1;
    offset-rotate: 0deg;
  }

  .p-den {
    offset-path: path("M108 216 C235 135 335 128 438 158");
    animation: routeFly 2.6s linear infinite;
  }

  .p-hot {
    offset-path: path("M438 158 C512 128 562 150 614 200");
    animation: routeFly 2.1s linear infinite 0.5s;
  }

  .p-lga {
    offset-path: path("M108 216 C260 280 430 288 614 200");
    animation: routeFly 3.4s linear infinite;
  }
}

.node circle {
  fill: var(--surface);
  stroke: var(--accent-strong);
  stroke-width: 4;
}

.node.dest circle {
  stroke: url(#gBlue);
  stroke-width: 4.5;
}

.node.hot-node circle {
  stroke: var(--good);
}

.node.muted-node circle {
  stroke: var(--faint);
  opacity: 0.75;
}

.node.origin circle {
  fill: url(#gOrigin);
  stroke: oklch(86% 0.1 252 / 0.55);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  filter: url(#routeGlow);
  animation: originPulse 3s ease-in-out infinite;
}

.node text {
  fill: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-anchor: middle;
  letter-spacing: 0.1em;
}

.node.muted-node text {
  fill: var(--muted);
  font-size: 19px;
}

@keyframes routeFly {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@keyframes radarPing {
  0% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(3.4); opacity: 0; }
}

@keyframes mapBreathe {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes originPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.truth-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.truth-list {
  display: grid;
  gap: 16px;
}

.truth-list p {
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  max-width: 75ch;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
}

.cta-panel h2 {
  max-width: 12ch;
}

.cta-panel p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.65;
}

/* -------------------------------------------------- comparison table */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-scroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.compare-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.compare-table th,
.compare-table td {
  padding: clamp(13px, 1.7vw, 18px) clamp(13px, 1.8vw, 22px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: middle;
}

.compare-table tr > :last-child {
  border-right: 0;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table thead th {
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.compare-table thead .prod {
  display: block;
  font-size: 1.06rem;
}

.compare-table thead .tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(98% 0.01 255);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* row labels: first column, left-aligned, sticks while scrolling */
.compare-table tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 210px;
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
}

.compare-table .corner {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--surface-2);
}

/* highlighted Wilders column */
.compare-table .col-us {
  background: oklch(64% 0.22 263 / 0.10);
}

.compare-table thead th.col-us {
  background: oklch(64% 0.22 263 / 0.18);
  color: var(--text);
}

.compare-table td.col-us {
  font-weight: 600;
  color: var(--text);
}

.compare-table .c-yes {
  color: var(--good);
  font-weight: 600;
}

.compare-table .c-no {
  color: var(--faint);
}

.compare-note {
  margin: clamp(16px, 2.4vw, 22px) 0 0;
  max-width: 92ch;
  color: var(--faint);
  font-size: 0.82rem;
  line-height: 1.6;
}

.compare-note sup {
  color: var(--muted);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 calc(42px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 24px;
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
}

.legal-page,
.support-page {
  padding: clamp(42px, 8vw, 92px) 0 clamp(70px, 10vw, 128px);
}

.legal-document {
  max-width: 850px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-document h1,
.support-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.updated {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.legal-document h2 {
  margin-top: 36px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-document a {
  color: var(--accent-strong);
}

.legal-note {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: var(--bg-2);
}

.support-hero {
  max-width: 820px;
  margin-bottom: clamp(34px, 7vw, 78px);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
  margin-bottom: clamp(54px, 8vw, 96px);
}

.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(22px, 4vw, 36px);
}

.support-card a {
  color: var(--accent-strong);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
}

.support-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.support-faq {
  margin-bottom: 0;
}

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

  .nav-links {
    grid-column: 1 / -1;
    justify-self: start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .theme-toggle {
    justify-self: end;
  }

  .hero,
  .section-heading,
  .feature-section,
  .map-demo,
  .truth-section,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    position: static;
  }

  h1 {
    max-width: 10ch;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-facts,
  .notice-band,
  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .workflow span {
    margin-bottom: 28px;
  }

  .cta-panel,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .phone-shell {
    border-radius: 28px;
    padding: 18px;
  }
}

@media (max-width: 470px) {
  .section-grid,
  .section-stack,
  .feature-section,
  .map-demo,
  .truth-section,
  .faq-section,
  .compare-section,
  .cta-panel,
  .notice-band,
  .legal-page,
  .support-page,
  .site-footer,
  .site-header {
    width: min(100% - 22px, var(--max));
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .fare-matrix > div {
    grid-template-columns: 0.9fr repeat(3, 1fr);
    padding: 9px 8px;
    gap: 5px;
  }

  .fare-matrix span,
  .field-row span,
  .split-row span {
    font-size: 0.66rem;
  }
}

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