:root {
  --forest: #123006;
  --forest-deep: #123006;
  --spruce: #054d28;
  --lime: #a8ee72;
  --lime-soft: #e7ffd7;
  --mist: #f2f4ef;
  --paper: #fbfcf7;
  --white: #ffffff;
  --ink: #13230d;
  --body: #44513f;
  --muted: #62705d;
  --line: rgba(19, 35, 13, .12);
  --danger: #ad2d2d;
  --shell: 1180px;
  --page-gutter: clamp(18px, 4vw, 40px);
  --radius-lg: 30px;
  --radius-md: 30px;
  --radius-sm: 12px;
  --shadow-card: 0 12px 34px rgba(18, 48, 6, .065);
  --shadow-card-hover: 0 26px 70px rgba(16, 39, 11, .12);
  --blue: #b7eef4;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #fcbd33;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.shell {
  width: min(var(--shell), calc(100% - (2 * var(--page-gutter))));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 252, 247, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  color: var(--forest);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  text-decoration: none;
  transform: skew(-4deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  justify-self: center;
  padding: 4px;
  border-radius: 999px;
  background: var(--mist);
}

.main-nav a {
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--body);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover { background: var(--lime-soft); color: var(--forest); }

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-toggle { display: none; }

.hero {
  overflow: hidden;
  padding: 58px 0 74px;
  background: var(--lime);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: 82px;
  min-height: 610px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--spruce);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: pretty; }

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 850;
  line-height: .98;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--body);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--forest); color: var(--white); }
.button-dark:hover { background: #0a2404; }
.button-lime { background: var(--lime); color: var(--forest-deep); }
.button-lime:hover { background: #bcf493; }

.text-link {
  color: var(--forest);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--body);
  font-size: 13px;
  list-style: none;
}

.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--spruce); }

.eligibility-widget {
  min-height: 520px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.widget-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #bfd2b7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.widget-topline span:last-child { padding: 6px 9px; border-radius: 999px; background: rgba(168, 238, 114, .14); color: var(--lime); }
.widget-title { margin: 28px 0 22px; color: var(--white); font-size: 28px; font-weight: 800; line-height: 1.1; }
.fact-list { border-top: 1px solid rgba(255, 255, 255, .14); }
.fact-row { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; align-items: center; gap: 12px; min-height: 74px; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.fact-row > span { color: var(--lime); font-size: 10px; font-weight: 850; }
.fact-row > div { display: grid; gap: 2px; }
.fact-row strong { font-size: 13px; }
.fact-row small { color: #b9cbb3; font-size: 11px; }
.fact-row b { padding: 6px 9px; border-radius: 999px; background: rgba(255, 255, 255, .08); color: #dce8d8; font-size: 9px; font-weight: 750; }
.widget-result { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; margin-top: 22px; padding: 15px; border-radius: var(--radius-sm); background: var(--lime); color: var(--forest); }
.widget-result > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--lime); font-weight: 900; }
.widget-result > div { display: grid; gap: 2px; }
.widget-result strong { font-size: 13px; }
.widget-result small { color: #365627; font-size: 10px; }

.section { padding: 112px 0; }
.section-heading { margin-bottom: 48px; }
.heading-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr); align-items: end; gap: 80px; }
.heading-split > p { max-width: 430px; margin: 0 0 6px; color: var(--body); font-size: 17px; }

h2 {
  max-width: 820px;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 820;
  line-height: 1.04;
}

.scenario-matrix { border-top: 1px solid var(--line); }
.scenario-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 170px 30px;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .18s ease, background .18s ease;
}
.scenario-row:hover { padding-left: 14px; background: #f5f8f2; }
.scenario-number { color: var(--spruce); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.scenario-copy { display: grid; gap: 6px; }
.scenario-copy strong { color: var(--ink); font-size: 20px; }
.scenario-copy small { color: var(--muted); font-size: 14px; }
.scenario-status { justify-self: start; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--body); font-size: 12px; font-weight: 750; }
.status-green { border-color: transparent; background: var(--lime-soft); color: var(--forest); }
.arrow { color: var(--spruce); font-size: 20px; }

.check-section { padding: 110px 0; background: var(--forest-deep); color: var(--white); }
.check-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(450px, .82fr); align-items: start; gap: 100px; }
.eyebrow-light { color: var(--lime); }
.check-copy { padding-top: 22px; }
.check-copy h2 { color: var(--white); }
.check-copy > p:not(.eyebrow):not(.check-disclaimer) { max-width: 590px; margin: 25px 0 0; color: #c7d7d0; font-size: 18px; }
.document-list { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.16); }
.document-list div { display: grid; grid-template-columns: 38px 1fr; align-items: center; min-height: 68px; border-bottom: 1px solid rgba(255,255,255,.16); }
.document-list span { color: var(--lime); font-size: 12px; font-weight: 800; }
.document-list strong { font-size: 15px; }
.check-disclaimer { max-width: 600px; margin: 28px 0 0; color: #9eb5ab; font-size: 13px; }

.lead-form { padding: 38px; background: var(--white); color: var(--ink); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.form-heading { margin-bottom: 24px; }
.form-kicker { color: var(--spruce); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin: 5px 0 6px; font-size: 34px; line-height: 1.1; }
.form-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-fieldset legend, .form-field label { display: block; margin-bottom: 8px; color: var(--body); font-size: 12px; font-weight: 750; }
.contact-options { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-option { display: inline-flex; min-width: 0; align-items: center; gap: 6px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--body); cursor: pointer; text-align: left; }
.contact-option strong, .contact-option span { display: inline; }
.contact-option strong { font-size: 13px; }
.contact-option span { color: var(--muted); font-size: 10px; }
.contact-option.active { border-color: var(--forest); background: var(--lime-soft); color: var(--forest); }
.contact-note { margin: 10px 0 18px; color: var(--muted); font-size: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-field input, .form-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bcc9c0; border-radius: 10px; background: var(--white); color: var(--ink); }
.form-field textarea { resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #86958e; }
.consent { display: grid; grid-template-columns: 19px 1fr; align-items: start; gap: 10px; margin: 4px 0 18px; color: var(--muted); font-size: 12px; }
.consent input { width: 18px; height: 18px; margin: 0; accent-color: var(--forest); }
.consent a { color: var(--forest); }
.form-submit { width: 100%; }
.form-status { min-height: 0; margin-top: 12px; font-size: 13px; }
.form-status.error { color: var(--danger); }
.form-status.success { display: grid; gap: 3px; padding: 12px; border-radius: 10px; background: var(--mist); color: var(--forest); }
.form-status.success span { font-size: 12px; }

.process-section { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 34px 34px 14px 0; border-right: 1px solid var(--line); }
.process-list li + li { padding-left: 34px; }
.process-list li:last-child { border-right: 0; }
.process-list > li > span { color: var(--spruce); font-size: 12px; font-weight: 850; }
.process-list strong { display: block; margin-bottom: 9px; color: var(--forest-deep); font-size: 19px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.terms-section { background: var(--forest-deep); color: var(--white); }
.terms-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(500px, 1fr); gap: 100px; }
.terms-intro { position: sticky; top: 126px; align-self: start; }
.terms-intro .eyebrow { color: var(--lime); }
.terms-intro h2 { color: var(--white); }
.terms-intro > p:last-child { max-width: 520px; margin: 24px 0 0; color: #becdb8; font-size: 17px; }
.terms-list { border-top: 1px solid rgba(255,255,255,.16); }
.terms-list article { padding: 30px 0 32px; border-bottom: 1px solid rgba(255,255,255,.16); }
.term-label { color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.terms-list h3 { margin: 8px 0 8px; color: var(--white); font-size: 27px; line-height: 1.15; }
.terms-list p { margin: 0; color: #becdb8; }
.terms-list .term-warning { margin-top: 22px; padding: 24px; border: 0; border-radius: var(--radius-md); background: var(--lime-soft); }
.terms-list .term-warning .term-label { color: var(--spruce); }
.terms-list .term-warning h3 { color: var(--forest); }
.terms-list .term-warning p { color: var(--body); }

.routes-section { background: var(--white); }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.route-card { position: relative; display: flex; min-height: 320px; overflow: hidden; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 34px; background: rgba(251,252,247,.92); box-shadow: var(--shadow-card); color: var(--ink); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease; }
.route-card:hover { transform: translateY(-3px); border-color: rgba(19,35,13,.24); background: var(--white); box-shadow: var(--shadow-card-hover); }
.route-card:focus-visible { outline-offset: 5px; }
.route-featured { background: radial-gradient(circle at 84% 20%, rgba(168,238,114,.46), transparent 28%), linear-gradient(145deg,#fcfff8,#eef8e8); }
.route-card.lime { border-color: transparent; background: var(--lime); }
.route-card.lime:hover { background: #b7f18b; }
.route-card.lime .route-label, .route-card.lime .route-chip { color: var(--forest-deep); }
.route-card.lime .route-chip { background: rgba(19,35,13,.1); }
.route-card.lime .route-label > i { background: var(--forest-deep); box-shadow: 0 0 0 5px rgba(19,35,13,.12); }
.route-card.dark { border-color: rgba(255,255,255,.12); background: radial-gradient(circle at 85% 14%,rgba(168,238,114,.24),transparent 34%),var(--forest-deep); color: #efffe8; }
.route-card.dark:hover { border-color: rgba(255,255,255,.2); background: radial-gradient(circle at 85% 14%,rgba(168,238,114,.29),transparent 36%),#183d0a; }
.route-card.tool { background: radial-gradient(circle at 86% 16%,rgba(183,238,244,.46),transparent 34%),var(--paper); }
.route-card-top { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.route-label { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 900; }
.route-label > i { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(168,238,114,.22); }
.route-chip { display: inline-flex; min-height: 28px; align-items: center; padding: 0 10px; border-radius: 999px; background: rgba(19,35,13,.06); color: var(--muted); font-size: 11px; font-weight: 900; white-space: nowrap; }
.route-card.dark .route-label { color: rgba(239,255,232,.76); }
.route-card.dark .route-chip { background: rgba(255,255,255,.09); color: rgba(239,255,232,.72); }
.route-content { position: relative; z-index: 2; display: block; max-width: calc(100% - 38px); margin-top: auto; padding-top: 128px; padding-bottom: 4px; }
.route-card h3 { margin: 0 0 10px; color: var(--forest-deep); font-size: 28px; line-height: 1.1; }
.route-card p { max-width: 520px; margin: 0; padding-right: 28px; color: var(--body); font-size: 14px; line-height: 1.5; }
.route-card.dark h3 { color: #efffe8; }
.route-card.dark p { color: rgba(239,255,232,.76); }
.route-arrow { position: absolute; z-index: 3; right: 24px; bottom: 24px; display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--forest-deep); color: var(--lime); font-size: 20px; font-weight: 900; transition: transform .22s ease, background .22s ease, color .22s ease; }
.route-card:hover .route-arrow { transform: rotate(10deg) scale(1.03); background: var(--lime); color: var(--forest-deep); }
.route-card.dark .route-arrow { background: var(--lime); color: var(--forest-deep); }
.route-visual { position: absolute; z-index: 1; pointer-events: none; }
.route-visual-doc { top: 88px; right: 28px; width: 104px; height: 130px; padding: 16px; border-radius: 20px; background: var(--white); box-shadow: 0 18px 40px rgba(16,39,11,.12); transform: rotate(5deg); }
.route-visual-doc::before { content: ""; position: absolute; top: 0; right: 0; border-top: 28px solid var(--lime-soft); border-left: 28px solid transparent; }
.route-visual-doc > i, .route-visual-receipt > i { display: block; height: 8px; margin: 10px 0; border-radius: 999px; background: #dce5d7; }
.route-visual-doc > i:first-child { width: 60%; background: var(--forest-deep); }
.route-visual-doc-compact { width: 92px; height: 116px; transform: rotate(-4deg); }
.route-visual-receipt { top: 94px; right: 30px; width: 98px; height: 128px; padding: 14px; border-radius: 18px; background: var(--white); box-shadow: 0 18px 40px rgba(16,39,11,.12); }
.route-visual-receipt::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 14px; background: radial-gradient(circle at 7px 0,transparent 7px,var(--white) 8px); background-size: 14px 14px; }
.route-visual-receipt > i:first-child { height: 28px; background: var(--forest-deep); }
.route-visual-shield { top: 96px; right: 28px; width: 92px; height: 106px; background: linear-gradient(145deg,var(--blue),var(--lime)); clip-path: polygon(50% 0,92% 18%,84% 76%,50% 100%,16% 76%,8% 18%); filter: drop-shadow(0 20px 30px rgba(35,125,130,.14)); }
.route-visual-orb { top: 78px; right: 28px; width: 106px; height: 106px; border-radius: 50%; background: radial-gradient(circle at 35% 30%,#c8f6a9 0 20%,#89e16a 38%,#1b5b11 72%,#0e3005 100%); box-shadow: inset -16px -18px 32px rgba(13,37,4,.32),0 20px 40px rgba(13,37,4,.18); }

.directory-section { padding-top: 100px; background: var(--forest-deep); color: var(--white); }
.directory-heading { display: grid; grid-template-columns: .55fr 1.45fr; align-items: end; gap: 60px; margin-bottom: 50px; }
.directory-heading .eyebrow { color: var(--lime); }
.directory-heading h2 { max-width: 900px; color: var(--white); }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.directory-column { border-top: 1px solid rgba(255,255,255,.24); }
.directory-column h3 { margin: 22px 0 16px; color: var(--lime); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.directory-column a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.12); color: #eff7f2; font-size: 14px; text-decoration: none; }
.directory-column a span:last-child { color: #8eb1a1; }
.directory-column a:hover span:first-child { text-decoration: underline; text-underline-offset: 4px; }
.directory-column .directory-more { margin-top: 12px; padding: 0 12px; border: 0; border-radius: 8px; background: rgba(159,232,112,.11); color: var(--lime); font-weight: 800; }

.journal-section { background: var(--mist); }
.journal-list { border-top: 1px solid var(--line); }
.journal-list > a { display: grid; grid-template-columns: 52px minmax(0, 1fr) 120px 30px; align-items: center; gap: 22px; min-height: 110px; border-bottom: 1px solid var(--line); text-decoration: none; }
.journal-index { color: var(--spruce); font-size: 12px; font-weight: 800; }
.journal-copy { display: grid; gap: 5px; }
.journal-copy strong { color: var(--ink); font-size: 19px; }
.journal-copy small { color: var(--muted); font-size: 13px; }
.journal-tag { justify-self: start; padding: 7px 11px; border-radius: 999px; background: var(--white); color: var(--forest); font-size: 11px; font-weight: 750; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1fr); align-items: start; gap: 110px; }
.faq-intro { position: sticky; top: 126px; }
.faq-intro > p:not(.eyebrow) { max-width: 380px; margin: 24px 0 24px; color: var(--body); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 58px 26px 0; color: var(--forest-deep); cursor: pointer; font-size: 18px; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 8px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--mist); color: var(--forest); transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; background: var(--forest); color: var(--white); }
.faq-list details p { max-width: 740px; margin: -4px 58px 26px 0; color: var(--body); }

.final-cta { padding: 48px 0; background: var(--lime); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.final-cta .eyebrow { color: var(--forest); }
.final-cta h2 { font-size: clamp(36px, 4vw, 54px); }
.final-cta p:last-child { margin: 12px 0 0; color: #2d503f; }

.site-footer { padding: 70px 0 28px; background: #031e16; color: var(--white); }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding-bottom: 54px; }
.brand-footer { color: var(--lime); }
.footer-top > div:first-child > p { max-width: 400px; margin: 20px 0 0; color: #9eb5ab; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; color: var(--lime); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a { color: #c9d9d2; font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #829b90; font-size: 11px; }
.footer-bottom span:last-child { justify-self: end; text-align: right; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); gap: 48px; }
  .eligibility-widget { min-height: 500px; padding: 28px; }
  .check-grid { gap: 60px; }
  .terms-grid, .faq-grid { gap: 70px; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; min-height: 64px; gap: 16px; }
  .nav-toggle { display: inline-flex; justify-self: end; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--forest); font-size: 13px; font-weight: 750; }
  .header-cta { min-height: 40px; padding: 0 14px; font-size: 12px; }
  .main-nav { position: fixed; inset: 64px 0 auto; display: none; align-items: stretch; padding: 18px var(--page-gutter) 26px; border-radius: 0; background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .hero { padding: 54px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; min-height: 0; }
  h1 { max-width: 780px; font-size: clamp(48px, 8.5vw, 68px); }
  .hero-lead { max-width: 700px; }
  .eligibility-widget { width: min(640px, 100%); min-height: 0; }
  .section { padding: 86px 0; }
  .heading-split { grid-template-columns: 1fr; gap: 20px; }
  .heading-split > p { max-width: 620px; }
  .scenario-row { grid-template-columns: 44px minmax(0, 1fr) 150px 24px; gap: 16px; }
  .check-section { padding: 86px 0; }
  .check-grid { grid-template-columns: 1fr; gap: 50px; }
  .check-copy { max-width: 720px; padding-top: 0; }
  .lead-form { max-width: 720px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li + li { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .terms-grid { grid-template-columns: 1fr; gap: 44px; }
  .terms-intro, .faq-intro { position: static; }
  .terms-list { max-width: 760px; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .directory-heading { grid-template-columns: 1fr; gap: 10px; }
  .directory-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-list { max-width: 820px; }
}

@media (max-width: 700px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .brand { font-size: 21px; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(42px, 11vw, 58px); }
  .hero-lead { font-size: 18px; }
  .eligibility-widget { padding: 26px 22px; border-radius: 24px; }
  .fact-row { grid-template-columns: 26px minmax(0, 1fr); padding: 12px 0; }
  .fact-row b { display: none; }
  .scenario-row { grid-template-columns: 34px minmax(0, 1fr) 24px; min-height: 0; padding: 23px 4px 23px 0; }
  .scenario-status { grid-column: 2; margin-top: -8px; }
  .arrow { grid-column: 3; grid-row: 1 / span 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-options { display: flex; }
  .contact-option { display: inline-flex; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 320px; }
  .journal-list > a { grid-template-columns: 34px minmax(0, 1fr) 24px; gap: 14px; padding: 22px 0; }
  .journal-tag { grid-column: 2; margin-top: -8px; }
  .journal-list .arrow { grid-column: 3; grid-row: 1 / span 2; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .final-cta .button { justify-self: start; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom span:last-child { justify-self: start; text-align: left; }
}

@media (max-width: 430px) {
  .home-v2 .site-header .brand { font-size: 17px; gap: 7px; }
  .home-v2 .site-header .nav-shell { gap: 8px; }
  .home-v2 .site-header .nav-toggle,
  .home-v2 .site-header .btn { min-height: 44px; padding-inline: 11px; }
}

@media (max-width: 360px) {
  .home-v2 .site-header .brand > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}

@media (max-width: 460px) {
  .hero-actions { align-items: stretch; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { text-align: center; }
  .trust-list { display: grid; }
  .eligibility-widget { padding: 22px 18px; }
  .widget-title { font-size: 24px; }
  .fact-row strong { font-size: 12px; }
  .fact-row small { font-size: 10px; }
  .widget-result { grid-template-columns: 34px 1fr; padding: 12px; }
  .section { padding: 72px 0; }
  h2 { font-size: 38px; }
  .section-heading { margin-bottom: 34px; }
  .scenario-number { align-self: start; padding-top: 4px; }
  .scenario-copy strong { font-size: 17px; }
  .scenario-copy small { font-size: 13px; }
  .check-section { padding: 72px 0; }
  .lead-form { padding: 25px 20px; border-radius: 16px; }
  .form-heading h3 { font-size: 29px; }
  .terms-list h3 { font-size: 24px; }
  .route-card { min-height: 300px; padding: 24px; border-radius: 28px; }
  .route-card h3 { font-size: 24px; }
  .route-content { padding-top: 118px; }
  .route-visual-doc, .route-visual-receipt, .route-visual-shield { top: 82px; right: 22px; transform: scale(.84) rotate(4deg); transform-origin: top right; }
  .route-visual-orb { top: 78px; right: 22px; width: 96px; height: 96px; }
  .route-arrow { right: 20px; bottom: 20px; width: 42px; height: 42px; }
  .directory-section { padding-top: 72px; }
  .journal-copy strong { font-size: 17px; }
  .faq-list summary { padding-right: 48px; font-size: 16px; }
  .faq-list details p { margin-right: 0; font-size: 14px; }
  .final-cta { padding: 42px 0; }
  .final-cta .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr; gap: 34px; }
}

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

/* Production integration: keep the approved homepage visual while satisfying shared runtime contracts. */
.home-v2 .site-header,
.home-v2 .site-header.on-hero,
.home-v2 .site-header.is-solid { position: sticky; background: rgba(251,252,247,.96) !important; color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.home-v2 .site-header .brand,
.home-v2 .site-header.on-hero .brand,
.home-v2 .site-header.is-solid .brand { color: var(--ink) !important; }
.home-v2 .main-nav.nav-links { display: flex; margin-left: 0; }
.home-v2 .site-header .nav-links a,
.home-v2 .site-header.on-light-hero .nav-links a,
.home-v2 .site-header.is-solid .nav-links a { color: var(--ink) !important; }
.home-v2 .site-header .nav-links a[aria-current="page"] { background: var(--lime-soft); }
.home-v2 .hero .hero-copy > .eyebrow { color: var(--forest-deep); }
.home-v2 .hero .hero-lead { color: var(--body); }
.home-v2 .hero .eligibility-widget .widget-title { color: var(--white); }
.home-v2 .footer-links { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 34px; }
.home-v2 .footer-links > div { min-width: 0; }
.home-v2 .footer-links a { line-height: 1.45; }
@media (max-width: 900px) {
  .home-v2 .site-header nav.main-nav.nav-links { display: none; }
  .home-v2 .site-header nav.main-nav.nav-links.is-open { display: grid; }
  .home-v2 .footer-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 460px) {
  .home-v2 .footer-links { grid-template-columns: 1fr; }
}

/* Shared site footer overrides the retired homepage directory footer. */
.home-v2 .site-footer {
  padding: 38px 0 22px;
  border-top: 1px solid var(--line);
  background: #e7ece3;
  color: var(--ink);
}
.home-v2 .site-footer .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 0;
}
.home-v2 .site-footer .footer-brand p,
.home-v2 .site-footer .footer-col a,
.home-v2 .site-footer .footer-disclaimer,
.home-v2 .site-footer .footer-bottom,
.home-v2 .site-footer .footer-legal-links a {
  color: var(--body);
}
.home-v2 .site-footer .footer-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  max-width: 980px;
}
.home-v2 .site-footer .footer-col {
  display: block;
}
.home-v2 .site-footer .footer-title {
  color: var(--ink);
}
.home-v2 .site-footer .footer-bottom {
  display: flex;
  grid-template-columns: none;
  justify-content: space-between;
  gap: 20px;
}
.home-v2 .site-footer .footer-bottom span:last-child {
  justify-self: auto;
  text-align: left;
}
@media (max-width: 720px) {
  .home-v2 .site-footer .footer-top,
  .home-v2 .site-footer .footer-grid-compact {
    grid-template-columns: 1fr;
  }
  .home-v2 .site-footer .footer-bottom {
    display: block;
  }
}
