:root {
  --primary: #172d78;
  --primary-dark: #172d78;
  --secondary: #0f766e;
  --action: #0f766e;
  --action-hover: #115e59;
  --background: #f8fafc;
  --surface: #ffffff;
  --foreground: #0f172a;
  --muted-text: #475569;
  --border: #dbe3ee;
  --ring: #172d78;
  --max-width: 1180px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.13);
  --shadow-card: 0 10px 28px rgba(15, 23, 42, 0.08);
  --font-sans: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-wrap: anywhere;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
a, button { cursor: pointer; touch-action: manipulation; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
section[id], main[id], #vehicle-matcher, #cost-calculator { scroll-margin-top: 88px; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.notice-bar { background: #ecfdf5; border-bottom: 1px solid #a7f3d0; color: #134e4a; font-size: 14px; }
.notice-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.notice-inner a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.no-js-warning { border-bottom: 1px solid #f59e0b; background: #fffbeb; color: #78350f; }
.no-js-warning .container { display: grid; gap: 2px; padding-block: 12px; }
.no-js-warning strong { font-weight: 850; }
.no-js-warning a { font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.js .no-js-warning { display: none; }
.no-js #cost-calculator { display: none; }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 24px; }
.brand { min-width: 0; min-height: 44px; display: inline-flex; align-items: center; flex: 0 0 auto; color: var(--primary-dark); }
.brand-picture { display: block; width: 300px; max-width: 100%; line-height: 0; }
.brand-lockup { display: block; width: 100%; height: auto; aspect-ratio: 575 / 128; object-fit: contain; }
.nav-disclosure { display: none; }
.main-nav { display: flex; align-items: center; gap: 8px; margin-left: auto; color: #334155; font-size: 14px; font-weight: 600; }
.main-nav a, .mobile-nav a, .footer-links a { min-height: 44px; display: inline-flex; align-items: center; transition: color 180ms ease, background 180ms ease; }
.main-nav a { padding-inline: 8px; border-radius: 7px; white-space: nowrap; }
.main-nav a:hover, .mobile-nav a:hover { background: #eff6ff; color: var(--primary); }
.footer-links a:hover { color: #5eead4; }
.header-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 16px; border-radius: 8px; background: var(--action); color: #fff; font-weight: 600; white-space: nowrap; transition: background 180ms ease, transform 180ms ease; }
.header-cta:hover { background: var(--action-hover); transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; padding: 76px 0 68px; background: #fff; border-bottom: 1px solid var(--border); }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -190px; top: -190px; border: 52px solid #dbeafe; border-radius: 50%; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr); grid-template-areas: "primary selector" "support selector"; align-items: start; column-gap: 74px; row-gap: 0; }
.hero-copy-primary { grid-area: primary; align-self: end; }
.hero-copy-support { grid-area: support; align-self: start; }
.eyebrow { margin: 0 0 14px; color: var(--secondary); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; }
h1, h2, h3 { margin-top: 0; font-family: var(--font-sans); line-height: 1.18; letter-spacing: -0.03em; }
h1 { max-width: 700px; margin-bottom: 22px; font-size: clamp(42px, 5.5vw, 68px); }
h2 { margin-bottom: 16px; font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: 18px; }
.hero-lead { max-width: 660px; margin: 0; color: var(--muted-text); font-size: 19px; }
.hero-route-note { margin: 10px 0 0; color: #475569; font-size: 14px; font-weight: 650; }
.role-disclosure { max-width: 650px; margin: 20px 0 0; padding-left: 14px; border-left: 4px solid var(--secondary); color: #334155; font-size: 14px; font-weight: 700; }
.preview-meta-line { margin: 9px 0 0; color: #475569; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px; border: 2px solid transparent; border-radius: 8px; font-weight: 750; transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--action); color: #fff; }
.button-primary:hover { background: var(--action-hover); }
.button-secondary { border-color: var(--primary); color: var(--primary); background: #fff; }
.button-secondary:hover { background: #eff6ff; }
.button-quiet { border-color: #64748b; background: #fff; color: #334155; }
.button-quiet:hover { border-color: #475569; background: #f8fafc; }
.trust-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 28px 0 0; padding: 0; color: #334155; font-size: 14px; font-weight: 650; list-style: none; }
.trust-list li::before { content: ""; width: 8px; height: 8px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--secondary); }

.selector-card { grid-area: selector; align-self: center; padding: 28px; border: 1px solid #cbd5e1; border-top: 5px solid var(--primary); border-radius: 14px; background: var(--surface); box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12); }
.selector-heading { display: flex; align-items: flex-start; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.selector-heading h2 { margin: 0; font-size: 24px; }
.step-label { flex: 0 0 auto; padding: 4px 8px; border-radius: 5px; background: #dbeafe; color: var(--primary-dark); font-size: 11px; font-weight: 850; letter-spacing: 0.08em; }
.matcher-intro { margin: 16px 0 0; color: var(--muted-text); font-size: 14px; }
.required-note { margin: 0; color: var(--muted-text); font-size: 14px; }
.matcher-form > .required-note { margin-top: 10px; }
.calculator-card .required-note { margin-bottom: 16px; }
.required-note span, .required-mark { color: #b91c1c; font-weight: 850; }
.vehicle-choice { margin: 20px 0 0; padding: 0; border: 0; }
.vehicle-choice legend { margin-bottom: 8px; color: #1e293b; font-weight: 750; }
.vehicle-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vehicle-choice-card { position: relative; min-height: 78px; display: grid; align-content: center; gap: 2px; padding: 12px 12px 12px 44px; border: 1px solid #64748b; border-radius: 9px; background: #fff; cursor: pointer; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.vehicle-choice-card:hover { border-color: var(--primary); background: #f8fbff; }
.vehicle-choice-card:focus-within { border-color: var(--primary); outline: 3px solid var(--ring); outline-offset: 2px; }
.vehicle-choice-card:has(input:checked) { border-color: var(--primary); background: #eff6ff; box-shadow: inset 0 0 0 1px var(--primary); }
.vehicle-choice-card:has(input[aria-invalid="true"]) { border-color: #b91c1c; }
.vehicle-choice-card input { position: absolute; left: 15px; top: 50%; width: 18px; height: 18px; margin: -9px 0 0; accent-color: var(--primary); }
.vehicle-choice-card span { color: #1e293b; font-weight: 800; }
.vehicle-choice-card small { color: #475569; font-size: 12px; }
.matcher-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; margin-top: 18px; }
.matcher-grid-compact { grid-template-columns: 1fr; }
.matcher-amount-field { min-inline-size: 0; }
.matcher-exact-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, 180px); gap: 12px; align-items: center; margin-top: 2px; }
.matcher-exact-row label { font-size: 14px; }
.matcher-submit { width: 100%; margin-top: 20px; }
.selector-note { margin: 14px 0 0; color: #475569; font-size: 13px; text-align: center; }

.section { padding: 84px 0; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr minmax(320px, 0.7fr); gap: 60px; align-items: end; }
.split-heading p:last-child { margin: 0 0 18px; color: var(--muted-text); }
.comparison-section { background: var(--background); }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filter-tab { min-height: 44px; padding: 9px 15px; border: 1px solid #64748b; border-radius: 999px; background: #fff; color: #334155; font-weight: 750; transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.is-active { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: 0 5px 14px rgba(30, 64, 175, 0.2); }

.match-summary { margin-bottom: 18px; padding: 20px 22px; border: 1px solid #93c5fd; border-left: 5px solid var(--primary); border-radius: 10px; background: #eff6ff; }
.match-summary:focus { outline: 3px solid var(--ring); outline-offset: 3px; }
.match-summary-label { margin: 0 0 5px; color: var(--primary); font-size: 12px; font-weight: 850; letter-spacing: 0.08em; }
.match-summary h3 { margin: 0; color: #172d78; font-size: 21px; }
.match-summary p:last-child { margin: 8px 0 0; color: #334155; }

.offer-list { overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: #fff; box-shadow: var(--shadow-card); }
.offer-head, .offer-row { display: grid; grid-template-columns: 1.25fr 1fr 0.8fr 1fr 0.9fr; gap: 18px; align-items: center; }
.offer-head { min-height: 50px; padding: 0 22px; background: #eaf0fb; color: #334155; font-size: 12px; font-weight: 850; letter-spacing: 0.04em; text-transform: uppercase; }
.offer-row { min-height: 132px; padding: 22px; border-top: 1px solid var(--border); }
.offer-row:first-of-type { border-top: 0; }
.offer-row p { margin: 0; color: #334155; font-size: 14px; }
.offer-title { display: flex; align-items: center; gap: 13px; }
.offer-title h3 { margin: 0; }
.offer-code { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #bfdbfe; border-radius: 9px; background: #eff6ff; color: var(--primary); font-size: 12px; font-weight: 850; }
.offer-action { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.offer-action a { min-height: 44px; display: inline-flex; align-items: center; color: var(--primary); font-size: 14px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.status-badge { display: inline-flex; padding: 5px 8px; border-radius: 6px; background: #fff7ed; color: #9a3412; font-size: 12px; font-weight: 800; }
.status-badge-neutral { background: #f1f5f9; color: #334155; }
.mobile-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.data-note { display: flex; gap: 18px; margin-top: 18px; padding: 18px 22px; border-left: 4px solid var(--secondary); background: #f0fdfa; color: #134e4a; }
.data-note strong { flex: 0 0 auto; }

.calculator-section { background: #fff; }
.calculator-grid { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1.3fr); gap: 72px; align-items: start; }
.calculator-intro { position: sticky; top: 96px; }
.calculator-intro > p:not(.eyebrow) { color: var(--muted-text); }
.hero-tool-link { margin-top: 14px; color: #334155; }
.privacy-list { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; color: #134e4a; font-weight: 700; }
.privacy-list li { display: flex; gap: 10px; }
.privacy-list li::before { content: ""; width: 9px; height: 9px; flex: 0 0 auto; margin-top: 8px; border-radius: 50%; background: var(--secondary); }
.calculator-card { padding: 28px; border: 1px solid #cbd5e1; border-radius: 14px; background: #fff; box-shadow: var(--shadow-card); }
.calculator-card:focus { outline: 3px solid var(--ring); outline-offset: 3px; }
.calculator-prefill-summary { display: flex; align-items: center; justify-content: space-between; gap: 14px 20px; margin: 0 0 18px; padding: 12px 14px; border: 1px solid #99f6e4; border-left: 4px solid var(--secondary); border-radius: 8px; background: #f0fdfa; color: #134e4a; }
.calculator-prefill-summary > div { display: grid; gap: 2px; }
.calculator-prefill-summary span { font-size: 12px; font-weight: 700; }
.calculator-prefill-summary strong { font-family: var(--font-sans); font-size: 18px; font-variant-numeric: tabular-nums; }
.calculator-prefill-error { display: block; margin: -8px 0 16px; color: #991b1b; font-size: 14px; font-weight: 700; }
.calculator-prefill-details { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; align-content: start; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: #1e293b; font-weight: 750; }
.field input, .field select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #64748b; border-radius: 8px; background: #fff; color: var(--foreground); font: inherit; transition: border-color 180ms ease, box-shadow 180ms ease; }
.field input:focus, .field select:focus { border-color: var(--primary); outline: 3px solid var(--ring); outline-offset: 2px; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #b91c1c; box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12); }
.field small { color: #64748b; font-size: 14px; line-height: 1.45; }
.field .field-error { color: #991b1b; font-weight: 700; }
.calculator-step { padding: 0; border: 0; }
.calculator-step + .calculator-step { margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--border); }
.calculator-step-heading { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; margin-bottom: 18px; }
.calculator-step-heading > span { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #93c5fd; border-radius: 50%; background: #eff6ff; color: var(--primary-dark); font-family: var(--font-sans); font-size: 13px; font-weight: 850; }
.calculator-step-heading h3 { margin: 1px 0 0; color: #172554; font-size: 19px; line-height: 1.3; }
.calculator-step-heading p { margin: 5px 0 0; color: #64748b; font-size: 14px; }
.calculator-choice-field { min-inline-size: 0; margin: 0; padding: 0; border: 0; }
.calculator-choice-field > legend { width: 100%; margin: 0 0 9px; padding: 0; color: #1e293b; font-weight: 750; }
.calculator-choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 10px; }
.calculator-choice-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.calculator-choice-card { position: relative; min-height: 78px; display: grid; align-content: center; gap: 3px; padding: 12px 12px 12px 44px; border: 1px solid #64748b; border-radius: 9px; background: #fff; cursor: pointer; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.calculator-choice-card:hover { border-color: var(--primary); background: #f8fbff; }
.calculator-choice-card:focus-within { border-color: var(--primary); outline: 3px solid var(--ring); outline-offset: 2px; }
.calculator-choice-card:has(input:checked) { border-color: var(--primary); background: #eff6ff; box-shadow: inset 0 0 0 1px var(--primary); }
.calculator-choice-card:has(input[aria-invalid="true"]) { border-color: #b91c1c; }
.calculator-choice-card input { position: absolute; left: 15px; top: 50%; width: 19px; min-width: 19px; height: 19px; min-height: 19px; margin: -9px 0 0; padding: 0; border: 0; accent-color: var(--primary); box-shadow: none; cursor: pointer; }
.calculator-choice-card input:focus { border: 0; outline: 0; box-shadow: none; }
.calculator-choice-card span { color: #1e293b; font-size: 14px; font-weight: 800; line-height: 1.35; }
.calculator-choice-card small { color: #475569; font-size: 13px; line-height: 1.35; }
.calculator-vehicle-field > small,
.interest-method-field > small { margin-top: 8px; }
.conditional-panel { margin-top: 18px; }
.conditional-panel.form-grid:not([hidden]) { display: grid; }
.input-note { padding: 13px 14px; border-left: 4px solid #b45309; border-radius: 6px; background: #fffbeb; color: #78350f; font-size: 14px; font-weight: 700; }
.optional-label { color: #64748b; font-size: 13px; font-weight: 650; }
.principal-field { min-inline-size: 0; margin: 0; padding: 0; border: 0; }
.principal-field > legend { width: 100%; margin: 0 0 6px; padding: 0; color: #1e293b; font-weight: 750; }
.principal-amount-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 8px 18px; }
.principal-amount-heading label { font-size: 14px; }
.principal-amount-heading output { color: var(--primary-dark); font-family: var(--font-sans); font-size: 19px; font-weight: 850; font-variant-numeric: tabular-nums; white-space: nowrap; }
.principal-presets { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 8px 0 4px; }
.principal-presets > span { flex: 0 0 100%; color: #475569; font-size: 13px; font-weight: 750; }
.principal-presets button { min-height: 44px; flex: 1 1 86px; padding: 8px 10px; border: 1px solid #64748b; border-radius: 8px; background: #fff; color: #334155; font-weight: 750; transition: border-color 180ms ease, background 180ms ease, color 180ms ease; }
.principal-presets button:hover { border-color: var(--primary); color: var(--primary); }
.principal-presets button[aria-pressed="true"] { border-color: var(--primary); background: #eff6ff; color: var(--primary-dark); box-shadow: inset 0 0 0 1px var(--primary); }
.principal-field > label[for="principal"] { margin-top: 4px; }
.field input:disabled { border-color: #cbd5e1; background: #f1f5f9; color: #64748b; cursor: not-allowed; }
.form-error { margin: 16px 0 0; padding: 10px 12px; border-left: 4px solid #b91c1c; background: #fef2f2; color: #991b1b; font-weight: 700; }
.calculator-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.calculator-result { margin-top: 24px; padding: 22px; border: 1px solid #99f6e4; border-radius: 10px; background: #f0fdfa; }
.calculator-result:focus { outline: 3px solid var(--ring); outline-offset: 3px; }
.calculator-result:not([data-state="ready"]) { border-color: #cbd5e1; background: #f8fafc; }
.calculator-result:not([data-state="ready"]) .result-heading { padding-bottom: 0; border-bottom: 0; }
.calculator-result:not([data-state="ready"]) .result-heading strong { max-width: 270px; color: #475569; font-size: 16px; }
.calculator-result[data-state="partial"],
.calculator-result[data-state="review"] { border-color: #f59e0b; background: #fffbeb; }
.calculator-result[data-state="partial"] .result-heading,
.calculator-result[data-state="review"] .result-heading { padding-bottom: 16px; border-bottom: 1px solid #fbbf24; }
.calculator-result[data-state="partial"] .result-heading span,
.calculator-result[data-state="partial"] .result-heading strong,
.calculator-result[data-state="partial"] .result-list dd,
.calculator-result[data-state="review"] .result-heading span,
.calculator-result[data-state="review"] .result-heading strong,
.calculator-result[data-state="review"] .result-list dd { color: #78350f; }
.calculator-result[data-state="partial"] .result-heading strong,
.calculator-result[data-state="review"] .result-heading strong { max-width: none; font-size: 21px; }
.result-heading { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid #99f6e4; }
.result-heading span { color: #0f766e; font-size: 12px; font-weight: 850; letter-spacing: 0.08em; }
.result-heading strong { flex-shrink: 0; max-width: 100%; color: #134e4a; font-family: var(--font-sans); font-size: 21px; text-align: right; }
.result-completeness { margin: 16px 0 0 !important; padding: 12px 14px; border-left: 4px solid #b45309; border-radius: 6px; background: #fef3c7; color: #78350f !important; font-size: 14px !important; font-weight: 750; }
.result-list { display: grid; gap: 9px; margin: 16px 0 0; }
.result-list div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.result-list dt { color: #334155; }
.result-list dd { flex-shrink: 0; max-width: 100%; margin: 0; color: #134e4a; font-weight: 800; text-align: right; }
.calculator-result p { margin: 16px 0 0; color: #475569; font-size: 14px; }
.result-warning { padding: 12px 14px; border-left: 4px solid #b91c1c; border-radius: 6px; background: #fef2f2; color: #991b1b !important; font-weight: 750; }

.method-section { background: #f8fafc; }
.method-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 88px; }
.method-list { margin: 0; padding: 0; list-style: none; }
.method-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 0 0 24px; }
.method-list li + li { padding-top: 24px; border-top: 1px solid var(--border); }
.method-list > li > span { color: var(--secondary); font-family: var(--font-sans); font-size: 14px; font-weight: 850; }
.method-list strong { font-family: var(--font-sans); font-size: 18px; }
.method-list p { margin: 5px 0 0; color: var(--muted-text); }

.knowledge-section { background: #eaf0fb; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.knowledge-grid article,
.knowledge-card { min-height: 252px; padding: 26px; border: 1px solid #cbd5e1; border-top: 4px solid var(--primary); border-radius: 10px; background: #fff; }
.knowledge-card { display: block; color: inherit; transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease; }
.knowledge-card:hover { border-color: #93c5fd; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.knowledge-card:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
.knowledge-grid article > span,
.knowledge-card > span { color: var(--secondary); font-size: 13px; font-weight: 850; }
.knowledge-grid h3 { margin: 30px 0 12px; font-size: 21px; }
.knowledge-grid p { margin: 0; color: var(--muted-text); }

footer { padding: 54px 0 24px; background: var(--primary-dark); color: #dbe5f5; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; }
.brand-footer { color: #fff; max-width: 100%; }
.footer-grid > div { min-width: 0; }
.footer-grid p { max-width: 580px; margin: 18px 0 0; color: #c5d3eb; }
.footer-group { min-width: 0; }
.footer-group summary { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; font-family: var(--font-sans); font-weight: 750; list-style: none; cursor: pointer; }
.footer-group summary::-webkit-details-marker { display: none; }
.footer-group summary::after { content: ""; width: 8px; height: 8px; flex: 0 0 auto; border-right: 2px solid #94a3b8; border-bottom: 2px solid #94a3b8; transform: rotate(45deg); transition: transform 180ms ease, border-color 180ms ease; }
.footer-group[open] summary::after { transform: rotate(225deg); }
.footer-group summary:hover::after { border-color: #fff; }
.footer-links { display: grid; gap: 8px; color: #e2e8f0; font-weight: 650; }
.footer-links a:hover { color: #fff; }
footer :focus-visible { outline-color: #93c5fd; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 20px; border-top: 1px solid #4b6097; color: #c5d3eb; font-size: 13px; }

@media (max-width: 1060px) {
  .site-header { position: relative; z-index: 20; backdrop-filter: none; }
  section[id], main[id], #cost-calculator { scroll-margin-top: 24px; }
  .header-inner { min-height: 64px; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; padding-block: 10px; }
  .main-nav { display: none; }
  .nav-disclosure { display: block; }
  .nav-disclosure > summary { min-width: 62px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 7px 10px; border: 1px solid #94a3b8; border-radius: 8px; background: #fff; color: #334155; font-size: 14px; font-weight: 750; white-space: nowrap; list-style: none; cursor: pointer; }
  .nav-disclosure > summary::-webkit-details-marker { display: none; }
  .nav-disclosure > summary::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 180ms ease; }
  .nav-disclosure[open] > summary::after { transform: translateY(2px) rotate(225deg); }
  .nav-disclosure .mobile-nav { position: absolute; z-index: 30; top: calc(100% - 4px); left: 0; right: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin: 0; padding: 12px; border: 1px solid var(--border); border-radius: 10px; background: #fff; box-shadow: var(--shadow-lg); color: #334155; font-size: 14px; font-weight: 650; }
  .nav-disclosure .mobile-nav a { justify-content: center; padding: 8px; border-radius: 7px; line-height: 1.35; text-align: center; }
  .header-cta { min-width: 78px; padding-inline: 12px; font-size: 14px; white-space: nowrap; }
}

@media (max-width: 960px) {
  section[id], main[id], #vehicle-matcher, #cost-calculator { scroll-margin-top: 24px; }
  .hero-grid, .method-grid, .calculator-grid { grid-template-columns: 1fr; }
  .calculator-intro { position: static; }
  .hero-grid { grid-template-areas: "primary" "selector" "support"; gap: 28px; }
  .method-grid, .calculator-grid { gap: 44px; }
  .hero { padding-top: 58px; }
  .selector-card { width: 100%; max-width: 680px; justify-self: center; }
  .split-heading { grid-template-columns: 1fr; gap: 10px; }
  .offer-head { display: none; }
  .offer-row { grid-template-columns: 1fr 1fr; }
  .offer-title, .offer-action { grid-column: 1 / -1; }
  .mobile-label { position: static; width: auto; height: auto; margin: 0 0 4px; overflow: visible; clip: auto; white-space: normal; display: block; color: #64748b; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-grid article,
  .knowledge-card { min-height: 0; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .notice-bar { font-size: 13px; }
  .notice-inner { min-height: 56px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(112px, 0.75fr); align-items: center; gap: 12px; padding-block: 6px; }
  .notice-inner span { line-height: 1.35; }
  .notice-inner a { min-height: 44px; line-height: 1.3; }
  .header-inner { min-height: 60px; padding-block: 8px; }
  .header-inner > .brand .brand-picture { width: 210px; }
  .hero { padding: 36px 0 44px; }
  .hero-grid { grid-template-areas: "primary" "selector" "support"; gap: 0; }
  .selector-card { width: 100%; margin-top: 28px; }
  .hero-copy-support { margin-top: 28px; }
  .hero-copy-support .role-disclosure { margin-top: 0; }
  h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.14; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .selector-card, .calculator-card { padding: 20px; }
  .vehicle-choice-grid { grid-template-columns: 1fr; }
  .selector-heading { display: block; }
  .selector-heading h2 { margin-top: 12px; font-size: 22px; }
  .section { padding: 62px 0; }
  .filter-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-tab { border-radius: 8px; }
  .offer-row { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .offer-title, .offer-action { grid-column: 1; }
  .data-note { flex-direction: column; gap: 6px; }
  .form-grid, .matcher-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .calculator-choice-grid,
  .calculator-choice-grid-2 { grid-template-columns: 1fr; }
  .calculator-step + .calculator-step { margin-top: 26px; padding-top: 24px; }
  .calculator-step-heading { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .calculator-step-heading > span { width: 32px; height: 32px; }
  .calculator-choice-card { min-height: 72px; }
  .principal-amount-heading { align-items: stretch; flex-direction: column; }
  .principal-amount-heading output { align-self: flex-start; white-space: normal; }
  .calculator-prefill-summary { align-items: flex-start; flex-direction: column; }
  .calculator-actions { display: grid; }
  .result-heading, .result-list div { align-items: flex-start; flex-direction: column; gap: 3px; }
  .result-heading strong, .result-list dd { text-align: left; }
  .knowledge-grid article { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-grid { gap: 0; }
  .footer-group { border-top: 1px solid #4b6097; }
  .footer-group:last-child { border-bottom: 1px solid #4b6097; }
  .footer-group summary { padding-block: 8px; }
  .footer-group .footer-links { gap: 0; padding: 0 0 8px 4px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .header-inner > .brand .brand-picture { width: 42px; }
  .header-inner > .brand .brand-lockup { aspect-ratio: 1; }
  .matcher-exact-row { grid-template-columns: 1fr; }
}

@media print {
  .brand-picture { width: 280px !important; }
  .brand-lockup { aspect-ratio: 575 / 128 !important; }
  footer { background: #fff; color: #111; }
  .footer-grid p, .footer-bottom, .footer-links, .footer-group summary { color: #111; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* Editorial routes and long-form content */
.home-page,
.content-page {
  background: var(--background);
}

.home-hero {
  min-height: auto;
}

.summary-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.match-summary {
  margin: 20px 0 0;
}

.match-summary p {
  margin: 8px 0 0;
  color: #334155;
}

.route-section {
  background: #fff;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.route-card:hover {
  border-color: #93c5fd;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.route-card:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.route-number {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary);
  font-weight: 850;
}

.route-card h3 {
  margin: 24px 0 10px;
  font-size: 24px;
}

.route-card p {
  margin: 0 0 20px;
  color: var(--muted-text);
}

.route-card .text-link {
  margin-top: auto;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.method-section {
  background: #f8fafc;
}

.method-section p a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prelaunch-section {
  padding: 28px 0 74px;
}

.prelaunch-card {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid #fed7aa;
  border-left: 5px solid var(--action);
  border-radius: 12px;
  background: #fff7ed;
}

.prelaunch-card h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.prelaunch-card p:last-child {
  max-width: 760px;
  margin: 0;
  color: #7c2d12;
}

.content-hero .article-byline {
  max-width: 820px;
  margin: 20px 0 0;
  color: #64748b;
  font-size: 14px;
}

.content-shell {
  grid-template-columns: minmax(210px, 250px) minmax(0, 800px);
}

.content-article {
  container-type: inline-size;
  font-size: 17px;
  line-height: 1.75;
}

.content-article > p,
.content-article > ul,
.content-article > ol,
.content-article > blockquote {
  max-width: 68ch;
}

.content-article > h2,
.content-article > h3 {
  max-width: 34ch;
}

.content-article h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.content-article strong {
  color: #0f172a;
}

.source-box,
.related-box,
.formula-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: #eff6ff;
}

.source-box h3,
.related-box h3,
.formula-box h3 {
  margin-top: 0;
}

.source-box a,
.related-box a {
  overflow-wrap: anywhere;
}

.source-note {
  margin-bottom: 0 !important;
  color: #475569 !important;
  font-size: 14px;
}

.related-box {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.related-box ul,
.source-box ul {
  margin-bottom: 0;
}

.formula-box {
  border-color: #cbd5e1;
  background: #f8fafc;
  font-variant-numeric: tabular-nums;
}

.formula-box p:last-child {
  margin-bottom: 0;
}

.comparison-table-wrap {
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.table-scroll-hint {
  display: none;
}

@container (max-width: 660px) {
  .table-scroll-hint {
    display: block;
    margin: 22px 0 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
  }

  .table-scroll-hint + .comparison-table-wrap {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .table-scroll-hint {
    display: block;
    margin: 22px 0 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
  }

  .table-scroll-hint + .comparison-table-wrap {
    margin-top: 0;
  }
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table caption {
  padding: 14px 16px;
  background: #f8fafc;
  color: #334155;
  font-weight: 750;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #f1f5f9;
  color: #0f172a;
}

.comparison-table tbody th {
  background: #fff;
  font-weight: 750;
}

.comparison-table td {
  color: #334155;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.answer-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.answer-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.answer-card p:last-child {
  margin-bottom: 0;
}

.content-page-compact .legal-main {
  padding-bottom: 56px;
}

.content-page-compact .legal-hero {
  padding-block: 48px 36px;
}

.content-page-compact .legal-title {
  max-width: 900px;
  font-size: clamp(34px, 4vw, 48px);
}

.content-page-compact .legal-shell {
  gap: 44px;
  padding-top: 32px;
}

.content-page-compact .legal-section + .legal-section {
  margin-top: 30px;
  padding-top: 30px;
}

.standalone-calculator {
  max-width: none;
  margin: 20px 0 30px;
}

.article-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-index-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  text-decoration: none !important;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.article-index-card:hover {
  border-color: #93c5fd;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-index-card > span {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-index-card h3 {
  margin: 16px 0 10px;
  color: var(--foreground);
}

.article-index-card p {
  margin: 0;
  color: var(--muted-text);
}

.footer-grid-wide {
  grid-template-columns: minmax(260px, 1fr) minmax(460px, 1.35fr);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.empty-state-main {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: 70px 0;
}

.empty-state {
  max-width: 760px;
  text-align: center;
}

.empty-state h1 {
  margin-bottom: 18px;
}

.empty-state p {
  color: var(--muted-text);
  font-size: 18px;
}

.empty-state .hero-actions {
  justify-content: center;
}

.main-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  background: #eff6ff;
  color: var(--primary);
}

@media (max-width: 960px) {
  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 0;
  }

  .footer-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .prelaunch-card {
    display: block;
  }

  .prelaunch-card .button {
    width: 100%;
    margin-top: 22px;
  }

  .answer-grid,
  .article-index-grid,
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .summary-actions {
    display: grid;
  }
}

@media (max-width: 620px) {
  .route-card,
  .source-box,
  .related-box,
  .formula-box,
  .prelaunch-card {
    padding: 20px;
  }

  .content-article {
    font-size: 16px;
  }

  .content-page-compact .legal-hero {
    padding-block: 32px 28px;
  }

  .content-page-compact .legal-title {
    font-size: clamp(32px, 9vw, 40px);
  }

  .content-page-compact .legal-shell {
    padding-top: 24px;
  }

  .comparison-table-wrap {
    margin-inline: -2px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .route-card,
  .article-index-card,
  .knowledge-card {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
}

/* A short category entry, with all product information available as HTML. */
.discovery-hero { padding: 58px 0 54px; background: linear-gradient(120deg, #fff 42%, #f0f5ff); }
.discovery-hero::after { display: none; }
.discovery-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.discovery-copy h1 { font-size: clamp(38px, 4.2vw, 54px); line-height: 1.13; letter-spacing: -0.04em; }
.discovery-copy .hero-lead { max-width: 540px; font-size: 19px; }
.discovery-benefits { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: var(--secondary); font-size: 14px; font-weight: 700; }
.discovery-benefits span { display: flex; align-items: center; gap: 8px; }
.discovery-benefits span::before { content: ""; height: 7px; width: 7px; border-radius: 50%; background: currentColor; }
.discovery-role { max-width: 470px; margin: 16px 0 0; color: var(--muted-text); font-size: 14px; }
.vehicle-selector { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); }
.vehicle-selector > .eyebrow { margin-bottom: 10px; font-size: 12px; }
.vehicle-selector h2 { max-width: 370px; margin-bottom: 22px; font-size: 26px; line-height: 1.25; }
.vehicle-entries { display: grid; gap: 12px; }
.vehicle-entry { display: flex; align-items: center; gap: 16px; padding: 17px; border: 1px solid #b9c9e4; border-radius: 12px; color: var(--primary-dark); background: #fff; transition: border-color 180ms ease, background 180ms ease; }
.vehicle-entry:hover { border-color: var(--primary); background: #f0f5ff; }
.vehicle-entry strong { display: block; font-size: 19px; }
.vehicle-entry small { display: block; margin-top: 3px; color: var(--muted-text); font-size: 14px; line-height: 1.4; }
.vehicle-symbol { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: #eff4ff; color: var(--primary); }
.vehicle-symbol svg { width: 34px; height: 34px; }
.vehicle-arrow { margin-left: auto; color: var(--action); font-size: 25px; }
.selector-secondary { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; color: var(--primary); font-size: 14px; font-weight: 700; }
.selector-secondary:hover { text-decoration: underline; text-underline-offset: 4px; }
.provider-overview { background: #fff; }
.provider-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.provider-card { display: flex; flex-direction: column; min-width: 0; padding: 26px; border: 1px solid var(--border); border-top: 3px solid var(--primary); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-sm); }
.provider-card-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.provider-card .provider-card-label { margin: 0 0 8px; color: var(--secondary); font-size: 12px; font-weight: 750; letter-spacing: 0.04em; text-transform: uppercase; }
.provider-card .provider-card-name { margin: 0; font-size: 25px; color: var(--primary-dark); line-height: 1.3; }
.provider-card-facts { margin: 22px 0 12px; }
.provider-card-facts > div { display: grid; grid-template-columns: minmax(100px, 0.8fr) 1.4fr; gap: 16px; padding: 13px 0; border-top: 1px solid var(--border); }
.provider-card-facts dt { font-size: 14px; color: var(--muted-text); }
.provider-card-facts dd { margin: 0; color: var(--foreground); font-size: 15px; font-weight: 600; line-height: 1.5; }
.provider-card .provider-card-note { margin: 10px 0 0; color: var(--muted-text); font-size: 13px; line-height: 1.55; }
.provider-card-note a, .section-source-note a, .calculator-entry-note a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.provider-card-actions { margin-top: auto; padding-top: 18px; }
.provider-card-actions .button { width: 100%; text-align: center; }
.provider-card .button-primary { color: #fff; text-decoration: none; }
.section-source-note { max-width: 960px; margin: 22px 0 0; color: var(--muted-text); font-size: 14px; }
.calculator-entry-section { background: #f1f5fa; }
.calculator-entry { display: grid; grid-template-columns: 1.15fr 1fr; gap: 76px; align-items: center; }
.calculator-entry h2 { font-size: clamp(28px, 3.2vw, 40px); }
.calculator-entry > div > p:not(.eyebrow) { max-width: 560px; color: var(--muted-text); }
.calculator-entry .button { margin-top: 10px; }
.calculator-entry-note { padding: 26px 28px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.entry-note-label { color: var(--secondary); font-size: 12px; font-weight: 800; letter-spacing: 0.05em; }
.calculator-entry-note ol { display: grid; gap: 18px; margin: 20px 0; padding-left: 22px; }
.calculator-entry-note li { padding-left: 5px; color: var(--primary); }
.calculator-entry-note strong { display: block; color: var(--foreground); font-size: 16px; }
.calculator-entry-note li span { color: var(--muted-text); font-size: 14px; }
.calculator-entry-note > p { margin-bottom: 0; font-size: 14px; }
.trust-entry-section { background: #fff; border-top: 1px solid var(--border); }
.trust-entry { display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 70px; }
.trust-entry h2 { font-size: 32px; }
.trust-entry p:not(.eyebrow) { max-width: 650px; color: var(--muted-text); }
.trust-entry-links { display: grid; }
.trust-entry-links a { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 15px; border-bottom: 1px solid var(--border); color: var(--primary); font-weight: 700; }
.trust-entry-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.content-article .next-step { padding: 28px; margin: 38px 0 28px; border: 1px solid #bfceea; border-radius: 12px; background: #eff4ff; }
.content-article .next-step h2 { margin-top: 0; font-size: 27px; }
.content-article .next-step > p:not(.eyebrow) { color: var(--muted-text); }
.content-article .next-step .button { color: #fff; text-decoration: none; }
.situation-links { margin-top: 22px; }
.situation-links p { margin-bottom: 10px; }
.situation-links a { display: inline-flex; min-height: 44px; align-items: center; margin: 0 12px 8px 0; padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; }
.content-hero .article-byline a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1060px) {
  .discovery-grid { gap: 32px; }
}
@media (max-width: 960px) {
  .discovery-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .discovery-copy h1 { font-size: 40px; }
  .vehicle-selector { padding: 22px; }
  .vehicle-entry { gap: 12px; padding: 14px; }
  .calculator-entry { gap: 32px; }
}
@media (max-width: 720px) {
  .discovery-hero { padding: 36px 0; }
  .discovery-grid, .provider-grid, .calculator-entry, .trust-entry { grid-template-columns: 1fr; gap: 28px; }
  .discovery-copy h1 { max-width: 520px; font-size: 40px; margin-bottom: 16px; }
  .desktop-break { display: none; }
  .discovery-copy .hero-lead { font-size: 17px; }
  .discovery-benefits { margin-top: 18px; font-size: 13px; gap: 8px 18px; }
  .discovery-role { margin-top: 12px; font-size: 13px; }
  .vehicle-selector h2 { font-size: 23px; max-width: none; margin-bottom: 18px; }
  .provider-card { padding: 22px; }
  .provider-card-facts > div { grid-template-columns: 0.8fr 1.4fr; gap: 12px; }
  .trust-entry { gap: 12px; }
}
@media (max-width: 430px) {
  .discovery-copy h1 { font-size: 34px; }
  .vehicle-selector { padding: 20px 16px; }
  .vehicle-entry { padding: 14px 12px; }
  .vehicle-entry strong { font-size: 18px; }
  .vehicle-entry small { font-size: 13px; }
  .vehicle-symbol { width: 42px; height: 42px; }
  .vehicle-arrow { font-size: 22px; }
  .selector-secondary { font-size: 13px; }
  .provider-card { padding: 20px 18px; }
  .provider-card-facts > div { grid-template-columns: 1fr; gap: 4px; }
  .calculator-entry .button { width: 100%; text-align: center; }
  .content-article .next-step { padding: 22px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .vehicle-entry { transition: none; }
}

/* F88 launch: the vehicle choice is a normal link, usable without JavaScript. */
:root { --mint-surface: #edf8f6; --mint-border: #cce6e1; }
.home-page { background: var(--surface); }
.home-page .discovery-hero { padding: 48px 0 36px; background: var(--surface); border: 0; }
.home-page .discovery-grid { grid-template-columns: .9fr 1.1fr; gap: 48px; }
.home-page .discovery-copy h1 { color: var(--primary); font-size: clamp(42px, 5.6vw, 72px); line-height: 1.12; letter-spacing: -.055em; margin-bottom: 24px; }
.brand-period { color: var(--secondary); }
.home-page .discovery-copy .eyebrow { font-size: 11px; letter-spacing: .08em; }
.home-page .discovery-copy .hero-lead { max-width: 440px; font-size: 18px; }
.home-page .discovery-role { font-size: 13px; }
.hero-calculator-link { display: inline-flex; align-items: center; gap: 14px; min-height: 44px; margin-top: 22px; color: var(--secondary); font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; }
.home-page .vehicle-selector { padding: 26px; background: var(--mint-surface); border: 0; border-radius: 24px; box-shadow: none; }
.home-page .vehicle-selector h2 { max-width: none; margin: 0 0 20px; color: var(--secondary); font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.home-page .vehicle-entries { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.home-page .vehicle-entry { display: grid; grid-template-rows: 100px minmax(150px, 1fr) 44px; align-items: stretch; gap: 12px; padding: 22px 18px 18px; background: var(--surface); border: 1px solid transparent; border-radius: 16px; box-shadow: 0 6px 22px #0f766e08; }
.home-page .vehicle-entry:hover { border-color: var(--secondary); background: var(--surface); box-shadow: 0 6px 22px #0f766e15; }
.home-page .vehicle-entry:active { background: #f5fbfa; }
.home-page .vehicle-entry strong { font-size: 25px; line-height: 1.2; letter-spacing: -.04em; }
.home-page .vehicle-entry small { font-size: 14px; line-height: 1.6; margin-top: 10px; }
.vehicle-art { display: grid; align-items: center; min-width: 0; margin: 0 -8px; }
.vehicle-art img { display: block; width: 100%; height: auto; aspect-ratio: 640 / 427; object-fit: contain; }
.vehicle-art-car img { transform: translateY(12%); }
.hero-title-line { white-space: nowrap; }
.vehicle-entry-cta { display: flex; justify-content: space-between; align-items: center; gap: 6px; min-height: 44px; padding: 6px 6px 6px 12px; color: var(--secondary); border: 1px solid var(--mint-border); border-radius: 24px; font-size: 12px; font-weight: 600; }
.vehicle-entry-cta > span { display: grid; place-items: center; flex-shrink: 0; width: 30px; height: 30px; background: var(--secondary); color: #fff; border-radius: 50%; font-size: 20px; }
.selector-footnote { margin: 18px 0 0; color: var(--muted-text); font-size: 12px; text-align: center; }
.journey-section { padding: 24px 0 44px; }
.journey-heading { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 24px; }
.journey-heading h2 { margin: 0; font-size: 20px; color: var(--primary); }
.journey-heading > span { color: var(--muted-text); font-size: 13px; }
.partner-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin: 0; padding: 0; list-style: none; }
.partner-steps li { display: flex; align-items: start; gap: 14px; }
.partner-steps li > span { display: grid; place-items: center; flex: 0 0 44px; height: 44px; background: var(--mint-surface); border-radius: 50%; color: var(--secondary); font-weight: 600; font-size: 14px; }
.partner-steps strong { display: block; color: var(--primary); font-size: 15px; line-height: 1.4; margin-top: 2px; }
.partner-steps p { margin: 6px 0 0; color: var(--muted-text); font-size: 13px; line-height: 1.6; }
.home-page .section { padding-block: 56px; }
.home-page .provider-overview { background: #f8fafb; border-block: 1px solid #e6edee; }
.home-page h2 { color: var(--primary); }
.home-page .split-heading h2 { font-size: 34px; }
.home-page .split-heading > p { max-width: 445px; font-size: 14px; }
.provider-card { border-top: 1px solid var(--mint-border); border-color: var(--mint-border); box-shadow: none; border-radius: 18px; }
.provider-card-header { align-items: start; }
.provider-visit-badge { display: inline-block; padding: 5px 9px; border-radius: 20px; background: var(--mint-surface); color: var(--secondary); font-size: 11px; font-weight: 600; white-space: nowrap; }
.provider-card .provider-entity { margin: 10px 0 0; color: var(--muted-text); font-size: 12px; }
.provider-card .provider-cost-caution { margin: 8px 0; padding: 14px; background: #f7f9fc; border-radius: 8px; color: var(--muted-text); font-size: 13px; line-height: 1.65; }
.provider-cost-caution strong { color: var(--primary); }
.provider-card .provider-preparation { margin: 12px 0 0; font-size: 14px; }
.provider-preparation p { margin: 4px 0 0; }
.provider-details-link, .vehicle-switch { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding-block: 8px; color: var(--secondary); font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.provider-details-link { margin: 8px 0 0; }
.vehicle-switch { margin-bottom: 14px; }
.affiliate-action { margin-top: auto; padding-top: 16px; }
.affiliate-action .affiliate-disclosure { margin: 0 0 12px; color: var(--muted-text); font-size: 12px; line-height: 1.65; }
.affiliate-disclosure a { text-decoration: underline; text-underline-offset: 3px; }
.affiliate-action .button { width: 100%; gap: 14px; color: #fff; text-decoration: none; border-radius: 28px; }
.affiliate-action .partner-next-note { margin: 12px 0 0; color: var(--muted-text); font-size: 12px; line-height: 1.65; }
.category-process { margin-block: 28px; }
.category-page .content-hero { padding-block: 32px; }
.category-page .legal-title { max-width: 950px; font-size: clamp(30px, 3.5vw, 44px); }
.category-page .legal-summary { max-width: 900px; font-size: 17px; line-height: 1.7; }
.category-quick-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 24px 0 18px; }
.category-quick-facts > div { display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--mint-border); border-radius: 14px; background: var(--mint-surface); }
.category-quick-facts dt { color: var(--primary); font-size: 17px; font-weight: 700; line-height: 1.4; }
.category-quick-facts dd { display: flex; flex: 1; flex-direction: column; margin: 8px 0 0; font-size: 14px; line-height: 1.65; color: var(--muted-text); }
.category-quick-facts a { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 10px; min-height: 44px; font-size: 13px; font-weight: 600; color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
  .category-page .content-hero { padding-block: 24px; }
  .category-page .legal-title { font-size: 30px; line-height: 1.2; }
  .category-page .legal-summary { font-size: 16px; }
  .category-quick-facts { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .category-quick-facts > div { padding: 16px; }
}
.category-process .partner-steps { grid-template-columns: 1fr; gap: 18px; }
.content-section .partner-steps p { margin: 5px 0 0; }
.content-section .partner-steps { padding: 0; }
.home-page .calculator-entry-section { background: var(--mint-surface); }
.home-page .calculator-entry { gap: 60px; }
.home-page .calculator-entry-note { border: 0; border-radius: 18px; padding: 30px; box-shadow: 0 6px 24px #0f766e08; }
.home-page .calculator-entry-note ol { padding: 0; list-style: none; }
.home-page .calculator-entry-note li { padding: 0 0 14px; border-bottom: 1px solid var(--border); }
.home-page .calculator-entry-note strong { color: var(--primary); }
.home-page .calculator-entry .button { gap: 22px; border-radius: 28px; }
.home-page .knowledge-section { background: #fff; }
.home-page .knowledge-card { box-shadow: none; border: 0; border-left: 1px solid var(--border); border-radius: 0; padding: 10px 24px; background: #fff; }
.home-page .knowledge-card h3 { color: var(--primary); font-size: 19px; }
.home-page .knowledge-card p { font-size: 14px; }
.read-more { color: var(--secondary); display: block; margin-top: 16px; font-size: 14px; font-weight: 600; }
.home-faq { border-top: 1px solid var(--border); }
.home-faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.home-faq h2 { font-size: 32px; }
.home-faq p { color: var(--muted-text); font-size: 14px; }
.faq-items details { border-bottom: 1px solid var(--border); }
.faq-items summary { min-height: 60px; padding: 16px 0; color: var(--primary); font-size: 15px; font-weight: 600; cursor: pointer; }
.faq-items p { padding: 0 10px 10px 0; }
.faq-items a { color: var(--secondary); text-decoration: underline; }
@media (max-width: 1060px) {
  .home-page .discovery-grid { gap: 28px; grid-template-columns: .85fr 1.15fr; }
  .home-page .vehicle-selector { padding: 20px; }
  .home-page .vehicle-entry { padding: 18px 12px 12px; }
  .home-page .vehicle-entry strong { font-size: 23px; }
}
@media (max-width: 760px) {
  .home-page .discovery-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-page .discovery-hero { padding: 30px 0 24px; }
  .home-page .discovery-copy h1 { font-size: 48px; margin-bottom: 16px; }
  .home-page .discovery-copy .hero-lead { max-width: 520px; font-size: 16px; }
  .hero-calculator-link { margin-top: 8px; font-size: 13px; }
  .home-page .vehicle-art { width: 100%; max-width: 280px; margin-inline: auto; }
  .journey-section { padding: 18px 0 32px; }
  .journey-heading > span { display: none; }
  .partner-steps { grid-template-columns: 1fr; gap: 18px; }
  .home-page .section { padding-block: 36px; }
  .home-page .split-heading h2 { font-size: 28px; }
  .home-page .calculator-entry, .home-faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-page .knowledge-card { padding-block: 14px; }
  .home-faq h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .home-page .discovery-copy h1 { font-size: 43px; }
  .home-page .discovery-copy .eyebrow { font-size: 10px; }
  .home-page .vehicle-selector { padding: 18px 14px 12px; border-radius: 18px; }
  .home-page .vehicle-selector h2 { font-size: 14px; margin-bottom: 14px; }
  .home-page .vehicle-entries { grid-template-columns: 1fr; gap: 12px; }
  .home-page .vehicle-entry { position: relative; padding: 16px; min-height: 150px; display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: auto 32px; gap: 8px 6px; }
  .home-page .vehicle-entry strong { font-size: 23px; }
  .home-page .vehicle-entry small { font-size: 12px; margin-top: 6px; }
  .home-page .vehicle-art { grid-column: 2; grid-row: 1 / 3; align-self: center; margin: 0 -6px 0 0; padding: 0; }
  .vehicle-art-car img { transform: none; }
  .vehicle-entry-cta { grid-column: 1; border: 0; padding: 6px 0 0; justify-content: start; gap: 10px; min-height: 32px; }
  .vehicle-entry-cta > span { width: 24px; height: 24px; font-size: 16px; }
  .selector-footnote { font-size: 11px; margin-top: 12px; }
  .provider-card-header { flex-wrap: wrap; gap: 8px; }
  .provider-card .provider-card-name { font-size: 23px; }
  .home-page .calculator-entry-note { padding: 22px; }
  .provider-card-facts > div { grid-template-columns: 94px 1fr; gap: 10px; padding-block: 12px; }
  .provider-card-facts dt { font-size: 12px; }
  .provider-card-facts dd { font-size: 13px; }
  .provider-card .provider-cost-caution { font-size: 12px; padding: 12px; }
}
@media screen and (max-width: 620px) {
  .header-inner { justify-content: space-between; gap: 12px; }
  .header-inner > .brand .brand-picture { width: clamp(180px, 52vw, 230px); }
  .header-inner > .brand .brand-lockup { aspect-ratio: 575 / 128; }
  .header-inner > .header-cta { display: none; }
  .nav-disclosure { margin-left: auto; }
}

/* Approved reference: compact editorial homepage, with vehicle-first navigation. */
.home-page .container { width: min(90%, var(--max-width)); }
.reference-header { border-bottom: 0; }
.reference-header .header-inner { display: flex; min-height: 80px; gap: 32px; }
.reference-header .brand-picture { width: 260px; }
.reference-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; font-size: 13px; }
.reference-nav > a, .vehicle-nav > summary { display: flex; align-items: center; min-height: 44px; white-space: nowrap; }
.vehicle-nav { position: relative; }
.vehicle-nav > summary { cursor: pointer; list-style: none; gap: 12px; }
.vehicle-nav > summary::-webkit-details-marker { display: none; }
.vehicle-nav > summary::after { content: ''; width: 6px; height: 6px; border-right: 1px solid; border-bottom: 1px solid; transform: rotate(45deg); margin-top: -4px; }
.vehicle-nav[open] > summary::after { transform: rotate(225deg); margin-top: 3px; }
.vehicle-nav > div { position: absolute; z-index: 5; top: 100%; left: -16px; width: 190px; padding: 8px; border: 1px solid var(--mint-border); border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.vehicle-nav > div a { display: block; padding: 12px; border-radius: 6px; }
.vehicle-nav > div a:hover { background: var(--mint-surface); }
.header-role { margin: 0 0 0 auto; font-size: 11px; color: var(--muted-text); white-space: nowrap; }
.reference-header .nav-disclosure { display: none; }
.home-page .discovery-hero { padding: 0 0 26px; }
.home-page .discovery-grid { grid-template-columns: .83fr 1.17fr; gap: 24px; }
.home-page .discovery-copy h1 { font-size: clamp(42px, 6.1vw, 76px); line-height: 1.08; letter-spacing: -.055em; margin-bottom: 22px; }
.home-page .brand-period { color: var(--primary); }
.home-page .discovery-copy .hero-lead { max-width: 430px; font-size: 19px; line-height: 1.55; }
.home-page .hero-calculator-link { margin-top: 20px; font-size: 15px; }
.home-page .vehicle-selector { padding: 26px; border-radius: 18px; }
.home-page .vehicle-entry { grid-template-rows: 114px minmax(165px, 1fr) 44px; padding: 24px 18px 18px; gap: 12px; }
.home-page .vehicle-entry strong { font-size: clamp(23px, 2.7vw, 32px); }
.home-page .vehicle-entry small { font-size: 15px; line-height: 1.5; margin-top: 8px; }
.home-page .vehicle-art { margin: 0 -12px; }
.home-page .vehicle-entry-cta { font-size: 13px; }
.reference-benefits { padding: 8px 0 28px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.benefit { display: flex; align-items: flex-start; gap: 20px; min-width: 0; }
.benefit > div { padding-top: 9px; }
.benefit + .benefit { border-left: 1px solid var(--border); padding-left: 30px; }
.feature-icon { display: grid; place-items: center; width: 64px; height: 64px; flex: 0 0 64px; border-radius: 50%; background: #e8f7f4; }
.icon-glyph { display: block; width: 48px; height: 48px; background: url('/feature-icons.webp') 0 50% / 500% 333.333% no-repeat; }
.icon-calculator { background-position-x: 25%; }
.icon-message { background-position-x: 50%; }
.icon-users { background-position-x: 75%; }
.icon-shield { background-position-x: 100%; }
.benefit h2 { font-size: 18px; margin: 0 0 5px; line-height: 1.4; letter-spacing: -.03em; }
.benefit p { font-size: 12px; color: var(--muted-text); margin: 0; line-height: 1.6; }
.home-page .calculator-entry-section { width: min(96%, 1252px); margin-inline: auto; border-radius: 18px; padding-block: 24px; }
.home-page .calculator-entry-section .container { width: calc(100% - 64px); }
.home-page .calculator-entry { grid-template-columns: 1.15fr 1fr; gap: 48px; }
.home-page .calculator-entry h2 { font-size: clamp(28px, 3.8vw, 43px); line-height: 1.18; letter-spacing: -.045em; margin-bottom: 14px; }
.home-page .calculator-entry .eyebrow { font-size: 11px; margin-bottom: 12px; }
.home-page .calculator-entry > div > p:not(.eyebrow) { font-size: 16px; line-height: 1.7; }
.home-page .calculator-entry-note { padding: 24px; border-radius: 16px; }
.calculator-entry-note h3 { font-size: 17px; color: var(--primary); margin: 0 0 12px; }
.cost-explainer { margin: 0; }
.cost-explainer > div { border-top: 1px solid var(--border); padding: 10px 0; }
.cost-explainer dt { display: flex; justify-content: space-between; color: var(--primary); font-size: 14px; font-weight: 650; }
.cost-explainer dd { margin: 4px 0 0; font-size: 12px; line-height: 1.5; color: var(--muted-text); }
.home-page .calculator-entry .calculator-entry-note > .cost-reference-note { margin: 8px 0 0; padding: 13px 16px; border-radius: 12px; background: var(--mint-surface); color: #456b70; font-size: 12px; line-height: 1.55; }
.home-page .knowledge-section { padding-block: 24px 20px; }
.home-page .knowledge-section .section-heading { max-width: none; grid-template-columns: 1fr auto; align-items: center; margin-bottom: 18px; }
.home-page .knowledge-section h2 { font-size: 27px; margin-bottom: 4px; }
.knowledge-intro { margin: 0; font-size: 14px; color: var(--muted-text); }
.home-page .knowledge-card { display: grid; min-height: 0; grid-template-columns: 48px minmax(0, 1fr); grid-template-rows: auto 1fr; column-gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 12px; }
.home-page .knowledge-card .feature-icon { display: grid; place-items: center; grid-row: 1 / 3; width: 48px; height: 48px; }
.home-page .knowledge-card .icon-glyph { width: 100%; height: 100%; }
.home-page .knowledge-card > :not(.feature-icon) { grid-column: 2; }
.home-page .knowledge-card h3 { font-size: 1rem; margin: 0 0 6px; line-height: 1.45; }
.home-page .knowledge-card p { font-size: .875rem; margin: 0; line-height: 1.55; }
.home-f88-next { padding: 12px 0 24px; }
.home-f88-next-panel { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 32px; padding: 32px; border: 1px solid var(--mint-border); border-radius: 18px; background: var(--mint-surface); }
.home-f88-next .eyebrow { margin: 0 0 10px; font-size: .875rem; color: var(--secondary); }
.home-f88-next h2 { margin: 0 0 12px; color: var(--primary); font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 1.35; }
.home-f88-next p:not(.eyebrow) { margin: 0; color: var(--muted-text); font-size: 1rem; line-height: 1.65; }
.home-f88-next-actions { display: grid; gap: 12px; }
.home-f88-next-actions .button { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 52px; text-align: left; white-space: normal; font-size: 1rem; }
.home-editorial { color: var(--muted-text); font-size: 11px; padding-bottom: 8px; }
.home-editorial summary { cursor: pointer; min-height: 32px; display: flex; align-items: center; }
.home-editorial summary::after { content: '+'; margin-left: 8px; }
.home-editorial[open] summary::after { content: '−'; }
.reference-footer { padding: 24px 0 8px; background: #172f70; color: #dce6f7; }
.reference-footer-row { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: center; gap: 12px 32px; }
.reference-footer .brand-picture { width: 240px; }
.reference-footer-links { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: 12px; }
.reference-footer-links a { min-height: 44px; display: flex; align-items: center; white-space: nowrap; }
.reference-footer-links a + a { position: relative; }
.reference-footer-links a + a::before { content: ''; position: absolute; left: -12px; height: 16px; border-left: 1px solid #ffffff60; }
.reference-footer-row > p { margin: 0; padding-left: 28px; border-left: 1px solid #ffffff60; font-size: 11px; line-height: 1.6; }
.home-policy-links { grid-column: 1 / -1; font-size: 11px; }
.home-policy-links summary { cursor: pointer; min-height: 32px; }
.home-policy-links nav { display: flex; flex-wrap: wrap; gap: 4px 24px; padding: 8px 0; }
.home-policy-links a { display: flex; align-items: center; min-height: 44px; }
@media (max-width: 1100px) {
  .reference-header .header-inner { gap: 24px; }
  .reference-header .brand-picture { width: 245px; }
  .reference-nav { gap: 24px; }
  .header-role { font-size: 10px; }
  .home-page .vehicle-selector { padding: 24px; }
  .home-page .vehicle-entry { padding-inline: 16px; }
  .benefit-grid { gap: 24px; }
  .benefit { gap: 16px; }
  .benefit + .benefit { padding-left: 24px; }
  .home-page .knowledge-card { grid-template-columns: 40px minmax(0, 1fr); column-gap: 12px; padding-inline: 14px; }
  .home-page .knowledge-card .feature-icon { width: 40px; height: 40px; }
  .reference-footer .brand-picture { width: 220px; }
  .reference-footer-row { gap: 12px 24px; }
}
@media (max-width: 960px) {
  .header-role { display: none; }
  .home-page .discovery-copy h1 { font-size: 5.7vw; }
  .home-page .discovery-copy .hero-lead { font-size: 17px; }
  .home-page .vehicle-selector { padding: 18px; }
  .home-page .vehicle-entry { padding: 18px 12px 12px; grid-template-rows: 132px minmax(120px, 1fr) 44px; }
  .home-page .vehicle-entry strong { font-size: 24px; }
  .home-page .vehicle-entry small { font-size: 13px; }
  .benefit h2 { font-size: 15px; }
  .benefit-grid { gap: 16px; }
  .benefit { gap: 12px; }
  .benefit + .benefit { padding-left: 16px; }
  .feature-icon { width: 52px; height: 52px; flex-basis: 52px; }
  .home-page .calculator-entry { gap: 28px; }
  .home-page .knowledge-grid { grid-template-columns: 1fr; gap: 0; }
  .home-page .knowledge-card { padding: 16px 0; border: 0; border-top: 1px solid var(--border); border-radius: 0; }
  .reference-footer-row { grid-template-columns: 1fr 1.2fr; }
  .reference-footer-row > p { grid-column: 1 / -1; padding-left: 0; border: 0; }
}
@media (max-width: 760px) {
  .home-page .container { width: calc(100% - 40px); }
  .reference-header .header-inner { min-height: 76px; }
  .reference-header .brand-picture { width: 235px; }
  .reference-nav { display: none; }
  .reference-header .nav-disclosure { display: block; }
  .home-page .discovery-hero { padding: 22px 0 24px; }
  .home-page .discovery-grid { grid-template-columns: 1fr; gap: 26px; }
  .home-page .discovery-copy h1 { font-size: clamp(38px, 10vw, 60px); margin-bottom: 16px; }
  .home-page .discovery-copy .hero-lead { font-size: 16px; max-width: 460px; }
  .home-page .hero-calculator-link { margin-top: 8px; font-size: 14px; }
  .home-page .vehicle-entry { grid-template-rows: 100px minmax(140px, 1fr) 44px; }
  .home-page .vehicle-entry strong { font-size: 25px; }
  .home-page .vehicle-art { margin: 0 auto; }
  .reference-benefits { padding: 0 0 24px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit + .benefit { border: 0; padding-left: 0; }
  .benefit h2 { font-size: 16px; margin-bottom: 2px; }
  .benefit > div { padding-top: 4px; }
  .benefit p { font-size: 13px; }
  .home-page .calculator-entry-section { width: calc(100% - 24px); padding-block: 24px; }
  .home-page .calculator-entry-section .container { width: calc(100% - 32px); }
  .home-page .calculator-entry { grid-template-columns: 1fr; gap: 24px; }
  .home-page .calculator-entry h2 { font-size: clamp(27px, 6.6vw, 38px); }
  .home-page .calculator-entry > div > p:not(.eyebrow) { font-size: 15px; }
  .home-page .calculator-entry-note { padding: 20px; }
  .home-page .calculator-entry-note .cost-reference-note { font-size: 12px; }
  .home-page .knowledge-section { padding-block: 28px 12px; }
  .home-page .knowledge-section .section-heading { grid-template-columns: 1fr; align-items: flex-start; gap: 6px; }
  .home-page .knowledge-section .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .home-f88-next-panel { grid-template-columns: 1fr; gap: 22px; padding: 24px 20px; }
  .reference-footer-row { grid-template-columns: 1fr; gap: 14px; }
  .reference-footer-links { justify-content: flex-start; }
  .reference-footer-row > p { font-size: 12px; }
  .home-policy-links summary { min-height: 44px; padding-block: 10px; }
}
@media (max-width: 480px) {
  .home-page .vehicle-selector { padding: 18px 14px 14px; }
  .home-page .vehicle-entry { grid-template-columns: 1.2fr 1fr; grid-template-rows: auto 36px; padding: 16px; gap: 10px 6px; min-height: 170px; }
  .home-page .vehicle-entry strong { font-size: 23px; }
  .home-page .vehicle-entry small { font-size: 12px; }
  .home-page .vehicle-art { margin: 0 -6px 0 0; }
  .home-page .vehicle-entry-cta { font-size: 12px; padding: 4px 0; }
  .home-page .calculator-entry .button { width: 100%; }
}
@media (max-width: 360px) {
  .home-page .container { width: calc(100% - 32px); }
  .reference-header .header-inner > .brand { flex-shrink: 1; }
  .reference-header .header-inner > .brand .brand-picture { width: 190px; }
  .home-page .discovery-copy h1 { font-size: 35px; }
  .home-page .vehicle-entry { padding: 12px; grid-template-columns: 1.3fr 1fr; }
  .home-page .vehicle-entry strong { font-size: 21px; }
  .home-page .calculator-entry-note { padding: 16px; }
}
.analytics-consent[hidden], .analytics-settings button[hidden] { display: none !important; }
.analytics-consent { position: fixed; z-index: 1000; bottom: 16px; left: 16px; right: 16px; max-width: 940px; margin: 0 auto; display: flex; align-items: center; gap: 24px; padding: 22px; background: #fff; color: #18345d; border: 1px solid #bad8d6; border-radius: 16px; box-shadow: 0 8px 40px #102c5426; }
.analytics-consent h2 { font-size: 18px; line-height: 1.4; margin: 0 0 6px; }
.analytics-consent p { font-size: 14px; line-height: 1.6; margin: 0; }
.analytics-consent a { text-decoration: underline; color: #007c7e; }
.analytics-consent-actions { display: flex; flex-shrink: 0; gap: 10px; }
.analytics-consent-actions button, .analytics-settings button { font: inherit; font-size: 14px; min-height: 44px; border: 1px solid #007c7e; border-radius: 8px; background: #fff; color: #006a6d; padding: 10px 14px; cursor: pointer; }
.analytics-consent-actions button:focus-visible, .analytics-settings button:focus-visible { outline: 3px solid #007c7e; outline-offset: 3px; }
.analytics-settings { text-align: center; background: #142f69; padding: 8px 16px; }
.analytics-settings button { border-color: transparent; background: transparent; color: #fff; text-decoration: underline; }
@media (max-width: 680px) { .analytics-consent { flex-direction: column; align-items: stretch; gap: 14px; bottom: 10px; left: 10px; right: 10px; padding: 18px; } .analytics-consent-actions button { flex: 1; } }
@media print { .analytics-consent, .analytics-settings { display: none !important; } }

.provider-card { border-top: 4px solid var(--secondary); }
.provider-benefit { margin-top: 20px; padding: 20px; border: 1px solid #b6dcd5; border-radius: 12px; background: #f0fdfa; color: #18345d; }
.provider-benefit p { margin: 0 0 12px; font-size: 1rem; line-height: 1.65; }
.provider-benefit .provider-benefit-title { color: #134e4a; font-size: 1.125rem; font-weight: 750; line-height: 1.4; }
.provider-benefit a { display: inline-block; color: #115e59; font-size: .875rem; line-height: 1.6; text-decoration: underline; text-underline-offset: 3px; }
.provider-benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 24px 0; }
.provider-benefit-choice { display: flex; flex-direction: column; min-width: 0; padding: 20px; border: 1px solid #b6dcd5; border-top: 4px solid var(--secondary); border-radius: 14px; background: #fff; }
.provider-benefit-choice .provider-benefit { margin: 0; padding: 0; border: 0; background: transparent; }
.provider-card .provider-card-label, .provider-card .provider-card-note, .provider-card .provider-entity, .provider-card .provider-cost-caution, .provider-card-facts dt, .affiliate-action .affiliate-disclosure, .affiliate-action .partner-next-note { font-size: .875rem; }
.provider-card-facts dd { font-size: 1rem; }
.provider-comparison-product { margin: 28px 0 36px; scroll-margin-top: 100px; }
.provider-comparison-product h3 { margin-bottom: 16px; }
.provider-comparison-table { min-width: 650px; table-layout: fixed; }
.provider-comparison-table th, .provider-comparison-table td { width: 36%; font-size: 1rem; line-height: 1.6; overflow-wrap: anywhere; vertical-align: top; }
.provider-comparison-table th:first-child { width: 28%; }
.provider-comparison-table tbody th { background: #fff; color: var(--foreground); text-align: left; font-weight: 600; }
.provider-comparison-table .partner-column { background: #f0fdfa; }
.provider-comparison-table thead .partner-column { background: #115e59; color: #fff; }
.comparison-partner-label { display: block; margin-top: 6px; font-size: .875rem; line-height: 1.5; font-weight: 400; text-transform: none; letter-spacing: normal; }
.comparison-disclosure, .comparison-fit { padding: 18px 20px; border-left: 3px solid #0f766e; background: #f7faf9; font-size: 1rem; line-height: 1.65; }
.provider-comparison-product .comparison-table-wrap:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }
@media (max-width: 800px) { .provider-benefits-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .provider-benefit, .provider-benefit-choice { padding: 16px; } .provider-benefit-choice .provider-benefit { padding: 0; } }
@media print { .provider-comparison-table { min-width: 0; } .provider-benefits-grid { display: block; } .provider-benefit-choice { margin-bottom: 16px; } }
.affiliate-inline-link { color: #115e59; text-decoration: underline; text-underline-offset: 3px; }
.affiliate-inline-link { font-size: .875rem; font-weight: 600; }
.affiliate-inline-link span { font-weight: 400; }
.f88-source-catalog { margin-block: 24px 40px; }
.f88-source-catalog details { padding: 18px 20px; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.f88-source-catalog summary { cursor: pointer; color: var(--primary); font-weight: 600; font-size: 1rem; }
.f88-source-catalog summary:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }
.f88-source-catalog p, .f88-source-catalog li { font-size: .875rem; line-height: 1.65; }
.f88-source-catalog li { margin: 16px 0; }
.source-original-url { display: block; margin-top: 6px; padding: 8px 10px; background: #f8fafc; color: #18345d; font-size: .875rem; white-space: normal; overflow-wrap: anywhere; user-select: all; }

/* Vehicle conditions, comparison and the next useful action. */
.provider-card-compact { gap: 0; scroll-margin-top: 100px; }
.provider-key-facts { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; margin: 22px 0 4px; padding: 20px 0; border-block: 1px solid var(--mint-border); }
.provider-key-facts dt { font-size: .875rem; color: var(--muted-text); }
.provider-key-facts dd { margin: 8px 0 0; font-size: clamp(1.3rem, 3vw, 1.875rem); line-height: 1.3; font-weight: 700; color: var(--primary); }
.provider-key-facts dd span { display: block; font-size: .875rem; font-weight: 400; margin-top: 4px; color: var(--muted-text); }
.provider-card .provider-cost-summary { margin: 18px 0 12px; font-size: 1rem; line-height: 1.65; }
.provider-cost-summary strong { color: var(--primary); }
.provider-more { margin-top: 18px; border-block: 1px solid var(--border); padding-block: 14px; }
.provider-more summary { cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--primary); }
.provider-more summary:focus-visible, .provider-card-compact:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }
.provider-more .provider-card-facts { margin-block: 14px; }
.affiliate-action .partner-steps-compact { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
.partner-steps-compact li { gap: 10px; }
.partner-steps-compact li > span { flex-basis: 28px; height: 28px; font-size: .875rem; }
.affiliate-action .partner-steps-compact p { margin: 0; font-size: .875rem; line-height: 1.55; }
.partner-steps-compact strong { margin: 0; font-size: .875rem; }
.provider-tabs { display: flex; gap: 6px; padding: 5px; margin: 24px 0; border: 1px solid var(--mint-border); border-radius: 12px; background: var(--mint-surface); }
.provider-tabs[hidden], .provider-comparison-product[hidden], .provider-mobile-bar[hidden] { display: none !important; }
.provider-tabs button { flex: 1; min-height: 48px; padding: 12px; border: 1px solid transparent; border-radius: 8px; background: transparent; font: inherit; font-size: 1rem; color: var(--primary); cursor: pointer; }
.provider-tabs button[aria-selected="true"] { background: var(--primary); color: #fff; font-weight: 600; }
.provider-tabs button:focus-visible, .provider-comparison-product:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }
.provider-comparison-product { scroll-margin-top: 100px; }
.provider-comparison-mobile { display: none; }
.comparison-priorities { margin: 18px 0 12px; }
.comparison-priorities > p { margin: 0 0 10px; font-size: 1rem; font-weight: 600; color: var(--primary); }
.comparison-priorities [role="group"] { display: flex; flex-wrap: wrap; gap: 8px; }
.comparison-priorities button { min-height: 44px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 24px; background: #fff; color: var(--primary); font: inherit; font-size: .875rem; cursor: pointer; }
.comparison-priorities button[aria-pressed="true"] { border-color: var(--primary); background: var(--primary); color: #fff; }
.comparison-priorities button:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }
.comparison-priority-result { margin: 0 0 20px; }
.comparison-priority-result .comparison-fit { margin: 0 0 12px; }
.criterion-focus { display: block; margin-top: 6px; font-size: .875rem; font-weight: 600; color: #172d78; }
.criterion-focus[hidden], .comparison-priorities[hidden], [data-priority-note][hidden] { display: none !important; }
.provider-comparison-table [data-priority-match="true"] > * { background: #edf2ff; box-shadow: inset 0 2px #172d78, inset 0 -2px #172d78; }
.comparison-pair[data-priority-match="true"] { border-color: var(--primary); outline: 2px solid var(--primary); outline-offset: -2px; }
.comparison-pair[data-priority-match="true"] h4 { background: #edf2ff; }
@media print { .comparison-priorities { display: none !important; } }
.provider-mobile-bar { display: none; }
.tool-task-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 16px; }
.tool-task-grid a { display: block; padding: 18px; border: 1px solid var(--mint-border); border-radius: 12px; color: var(--primary); background: #fff; text-decoration: none; }
.tool-task-grid a:hover { background: var(--mint-surface); border-color: var(--secondary); }
.tool-task-grid a:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }
.tool-task-grid strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.tool-task-grid span { display: block; color: var(--muted-text); font-size: .875rem; line-height: 1.6; }
.tool-task-more { font-size: .875rem; margin-bottom: 24px; }
#budget-form { scroll-margin-top: 100px; }
.budget-selection-status:empty { display: none; }
.budget-selection-status { padding: 14px; background: var(--mint-surface); border-left: 3px solid var(--secondary); font-size: 1rem; }
@media (min-width: 1100px) {
  .provider-card-compact .partner-steps-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .provider-comparison-product > .comparison-table-wrap, .provider-desktop-hint { display: none; }
  .provider-comparison-mobile { display: grid; gap: 16px; }
  .comparison-pair { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .comparison-pair h4 { margin: 0; padding: 12px 16px; font-size: 1rem; line-height: 1.5; color: var(--primary); background: #f8fafc; }
  .comparison-pair dl { margin: 0; }
  .comparison-pair dl > div { padding: 14px 16px; }
  .comparison-pair dl > div + div { border-top: 1px solid var(--border); }
  .comparison-pair .partner-column { background: #effcf8; }
  .comparison-pair dt { font-weight: 700; color: var(--primary); font-size: .875rem; }
  .comparison-pair dd { margin: 5px 0 0; font-size: 1rem; line-height: 1.6; overflow-wrap: anywhere; }
  .provider-mobile-bar { position: fixed; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 12px; z-index: 80; inset: auto 0 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--mint-border); box-shadow: 0 -4px 20px #172d7810; }
  .provider-mobile-bar > span { color: var(--primary); font-size: .875rem; }
  .provider-mobile-bar .button { min-height: 44px; font-size: .875rem; padding: 10px 14px; }
  body.has-provider-return { padding-bottom: calc(120px + env(safe-area-inset-bottom)); }
}
@media (max-width: 400px) { .tool-task-grid { grid-template-columns: 1fr; } .provider-mobile-bar .button { width: 100%; } }
@media print {
  .provider-tabs, .provider-mobile-bar, .provider-comparison-mobile, .provider-desktop-hint { display: none !important; }
  .provider-comparison-product, .provider-comparison-product[hidden], .provider-comparison-product > .comparison-table-wrap { display: block !important; }
  body.has-provider-return { padding-bottom: 0; }
}
