:root {
  --green: #99CC33;
  --caution: #fff2cc;
  --caution-ink: #684600;
  --deep: #202224;
  --pale: #eef7dc;
  --ink: #202224;
  --muted: #62666b;
  --black: #000;
  --white: #fff;
  --paper: #F2F2F2;
  --line: #dedfe0;
  --blue: #f2f2f2;
  --soft-blue: #f7f7f7;
  --blue-ink: #41454B;
  --steel: #41454B;
  --radius: 8px;
  --max: 1200px;
  --shadow-sm: 0 1px 2px rgba(10, 16, 13, 0.06), 0 12px 28px rgba(10, 16, 13, 0.07);
  --shadow-md: 0 8px 24px rgba(10, 16, 13, 0.08), 0 32px 80px rgba(10, 16, 13, 0.12);
  --home-serif: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Shared premium shell for the flagship comparison. */
.compare21-page .compare21-hero {
  padding: 52px 0 38px;
}

.compare21-page .compare21-hero .home-hero-copy {
  max-width: 1040px;
}

.compare21-page .compare21-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
}

.compare21-page .compare21-hero .lead {
  max-width: 820px;
}

.compare21-page .compare-proof-strip {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.compare21-page .compact-toolbar {
  grid-template-columns: minmax(0, 1fr);
}

.compare21-page .best-card-list {
  margin-top: 30px;
}

.compare21-page .best-card-number span {
  min-width: 72px;
  text-align: center;
}

.compare21-page .best-card-details:not([open]) {
  padding-bottom: 0;
}

.compare21-page .best-card-details summary {
  min-height: 44px;
}

@media (max-width: 680px) {
  .compare21-page .compare21-hero {
    padding: 34px 0 26px;
  }

  .compare21-page .compare21-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
    line-height: 1;
  }

  .compare21-page .compare-proof-strip {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fbfcf8;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  background: var(--green);
  color: var(--deep);
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #355B00;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(10, 16, 13, 0.04);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  text-decoration: none;
  font-weight: 920;
  white-space: nowrap;
}

.brand-mark,
.brand-mark img {
  width: 48px;
  height: 48px;
  display: block;
}

.brand-mark {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

.brand-word {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-word span:first-child {
  font-size: 16.5px;
}

.brand-word span:last-child {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a:not(.button) {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:not(.button):hover {
  color: var(--deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.dark {
  background: var(--deep);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(10, 16, 13, 0.16);
  background: var(--white);
  color: var(--deep);
}

.eyebrow {
  margin: 0 0 12px;
  color: #537822;
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(10, 16, 13, 0.08);
  background: var(--white);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.68fr);
  gap: 56px;
  align-items: center;
}

.home-hero-copy {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--home-serif);
  font-size: clamp(48px, 5.4vw, 68px);
  line-height: 1.01;
  font-weight: 700;
  letter-spacing: 0;
}

.home-hero .lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #394046;
  font-size: 19px;
  line-height: 1.62;
}

.home-check-form {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(36, 49, 58, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(36, 49, 58, 0.08);
}

.home-check-form label {
  color: var(--blue-ink);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-check-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.home-check-control input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(36, 49, 58, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--deep);
  font-size: 16px;
  padding: 0 16px;
}

.home-check-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-quick-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 16px;
}

.home-quick-checks a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(36, 49, 58, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--deep);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-primary-routes a:first-child {
  border-color: rgba(134, 184, 69, 0.46);
  background: rgba(246, 250, 237, 0.92);
}

.home-quick-checks a:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 75, 125, 0.34);
  box-shadow: 0 14px 36px rgba(36, 49, 58, 0.1);
}

.home-quick-checks strong {
  color: var(--deep);
  font-size: 14px;
  line-height: 1.2;
}

.home-quick-checks span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.home-trust-line {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  max-width: 760px;
  margin-top: 20px;
  color: var(--blue-ink);
}

.home-trust-line svg {
  width: 28px;
  height: 28px;
}

.home-trust-line p {
  margin: 0;
  color: var(--steel);
  font-size: 14px;
  font-weight: 750;
}

.product-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(36, 52, 50, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 56px rgba(16, 32, 28, 0.12);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--green);
}

.product-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.product-panel-head span {
  color: var(--blue-ink);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-panel-head strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(134, 184, 69, 0.34);
  border-radius: var(--radius);
  background: rgba(228, 240, 199, 0.7);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.product-panel h2 {
  margin-bottom: 20px;
  color: var(--deep);
  font-family: var(--home-serif);
  font-size: clamp(30px, 2.3vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-rows {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-rows div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.product-rows span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--pale);
  font-size: 12px;
  font-weight: 920;
}

.product-rows strong {
  display: block;
  color: var(--deep);
  font-size: 14px;
}

.product-rows p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.panel-note {
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.5;
}

.dossier-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 16, 13, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 56px rgba(10, 16, 13, 0.13);
}

.dossier-tab {
  display: none;
}

.dossier-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 24px 24px 16px;
  background: var(--deep);
}

.dossier-head > div {
  display: contents;
}

.dossier-head span,
.focus-card h3 {
  color: var(--blue-ink);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dossier-head span {
  color: var(--pale);
}

.dossier-head h2,
.home-section h2 {
  font-family: var(--home-serif);
  font-weight: 700;
  letter-spacing: 0;
}

.dossier-head h2 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(30px, 2.15vw, 34px);
  line-height: 1.02;
}

.dossier-head strong {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 238, 168, 0.34);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
}

.dossier-list {
  display: grid;
  padding: 8px 24px 20px;
}

.dossier-mobile-summary {
  display: none;
}

.dossier-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.dossier-row:first-child {
  border-top: 0;
}

.dossier-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 75, 125, 0.22);
  border-radius: var(--radius);
  color: var(--blue-ink);
  background: var(--soft-blue);
}

.dossier-icon svg {
  width: 21px;
  height: 21px;
}

.dossier-row strong {
  display: block;
  color: var(--black);
  font-size: 14px;
}

.dossier-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.dossier-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.link-arrow svg {
  width: 18px;
  height: 18px;
}

.dossier-link {
  margin: 0 24px 24px;
}

.home-section {
  padding: 56px 0;
  border-top: 1px solid rgba(226, 231, 221, 0.85);
  background: var(--white);
}

.compact-section {
  padding-top: 44px;
}

.operating-section,
.quiet-section {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.home-section h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1.04;
}

.decision-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.decision-path div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.decision-path span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--green);
  font-size: 12px;
  font-weight: 920;
}

.decision-path strong {
  display: block;
  color: var(--deep);
  font-size: 14px;
}

.operating-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 14px;
}

.operating-column {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(36, 52, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.operating-column h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 18px;
}

.operating-column p,
.operating-column li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.operating-column ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.rule-column {
  background: var(--deep);
  color: var(--white);
}

.rule-column h3,
.rule-column p {
  color: var(--white);
}

.example-brief {
  overflow: hidden;
  border: 1px solid rgba(36, 52, 50, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(36, 49, 58, 0.07);
}

.example-body {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 40px;
  padding: 28px;
  align-items: start;
}

.example-body .lead {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.utility-grid a {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(36, 52, 50, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  text-decoration: none;
}

.utility-grid strong {
  font-size: 15px;
}

.utility-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.decision-path p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.focus-card {
  padding: 32px;
  border: 1px solid rgba(36, 49, 58, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(36, 49, 58, 0.07);
}

.focus-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.focus-head h2 {
  margin-bottom: 12px;
  text-align: left;
}

.focus-head p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.focus-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 32px;
}

.evidence-table {
  display: grid;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.evidence-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-table span {
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
}

.evidence-table strong,
.evidence-table a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.source-note {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  background: var(--deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 40px 0;
}

.footer-grid p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .home-hero-grid,
  .section-head,
  .operating-grid,
  .example-body {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 24px;
  }

  .focus-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-panel {
    max-width: 760px;
  }

  .utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    inset: 70px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .button {
    justify-content: flex-start;
    width: 100%;
    padding: 12px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    gap: 8px;
  }

  .brand-mark,
  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-mark {
    border-radius: 10px;
  }

  .brand-word span:first-child {
    font-size: 12px;
  }

  .brand-word span:last-child {
    display: none;
  }

  .home-hero {
    padding: 40px 0 24px;
    background-size: auto, auto, 88px 88px, 88px 88px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .home-hero .lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .home-check-form {
    padding: 12px;
  }

  .home-check-control {
    grid-template-columns: 1fr;
  }

  .home-check-control .button {
    width: 100%;
  }

  .home-quick-checks,
  .decision-path,
  .focus-columns,
  .utility-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-quick-checks {
    gap: 8px;
  }

  .home-trust-line {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .home-trust-line svg {
    width: 24px;
    height: 24px;
  }

  .dossier-card {
    box-shadow: var(--shadow-sm);
  }

  .dossier-head {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .dossier-head h2 {
    grid-column: 1;
    font-size: 30px;
  }

  .dossier-head strong {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .dossier-list {
    display: none;
  }

  .dossier-mobile-summary {
    display: block;
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .dossier-link {
    margin: 0 16px 16px;
  }

  .home-section {
    padding: 40px 0;
  }

  .home-section h2 {
    font-size: 32px;
    text-align: left;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .focus-card {
    padding: 20px;
  }

  .product-panel,
  .example-body,
  .operating-column {
    padding: 18px;
  }

  .product-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .focus-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .evidence-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

.footer-links {
    gap: 12px 16px;
  }
}

/* Air Bank-inspired homepage direction: direct, bright, rounded, and evidence-first. */
.home-page {
  background: var(--white);
  color: var(--ink);
}

.home-page .site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(32, 34, 36, 0.08);
}

.home-page .nav {
  min-height: 76px;
}

.home-page .nav-links {
  gap: 6px;
}

.home-page .nav-links a:not(.button) {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 760;
}

.home-page .nav-links a:not(.button):hover {
  background: var(--paper);
}

.home-page .button {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 8px;
  background: var(--green);
  color: var(--deep);
  font-weight: 850;
}

.home-page .button.dark {
  background: var(--deep);
  color: var(--white);
}

.home-page .button.secondary {
  border-color: var(--deep);
  background: var(--white);
}

.home-page .eyebrow {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.home-hero {
  overflow: visible;
  padding: 28px 0 82px;
  border-bottom: 0;
  background: var(--white);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(30px, 4vw, 48px);
  border-top: 6px solid var(--green);
  border-radius: 8px;
  background: var(--paper);
}

.home-hero-copy {
  align-self: center;
}

.home-hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-family: var(--home-serif);
  font-size: 60px;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero .lead {
  max-width: 720px;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.55;
}

.home-check-form {
  max-width: 720px;
  margin-top: 20px;
  padding: 14px;
  border: 0;
  border-top: 1px solid #c9cbcd;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-check-form label {
  color: var(--deep);
  font-size: 12px;
  letter-spacing: 0;
}

.home-check-control {
  gap: 10px;
}

.home-check-control input {
  min-height: 50px;
  padding-inline: 20px;
  border: 1px solid #c9cbcd;
  border-radius: 8px;
  background: var(--white);
}

.home-check-control .button {
  min-height: 50px;
  padding-inline: 26px;
}

.home-check-form p {
  color: var(--muted);
}

.home-trust-line {
  margin-top: 16px;
  color: var(--deep);
}

.home-trust-line p {
  color: var(--deep);
  font-weight: 720;
}

.product-panel {
  align-self: stretch;
  padding: 24px;
  border: 1px solid #d4d7d1;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.product-panel::before {
  display: none;
}

.product-panel-head {
  align-items: flex-start;
}

.product-panel-head span {
  color: var(--deep);
  letter-spacing: 0;
}

.product-panel-head strong {
  border: 0;
  border-radius: 999px;
  background: var(--pale);
}

.product-panel h2 {
  margin-bottom: 14px;
  font-family: var(--home-serif);
  font-size: 32px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-rows span,
.decision-path span {
  background: var(--green);
  color: var(--deep);
}

.product-rows div {
  padding: 10px 0;
}

.product-rows p {
  font-size: 13px;
  line-height: 1.42;
}

.panel-note {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--paper);
}

.home-quick-checks {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin-top: -30px;
  overflow: hidden;
  border: 1px solid #d4d7d1;
  border-radius: 8px;
  background: var(--white);
}

.home-quick-checks a,
.home-primary-routes a:first-child {
  min-height: 116px;
  align-content: center;
  padding: 20px;
  border: 0;
  border-right: 1px solid #d4d7d1;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.home-quick-checks a::after {
  content: none;
}

.home-quick-checks a:last-child {
  border-right: 0;
}

.home-quick-checks a:hover {
  border-color: transparent;
  background: var(--pale);
  box-shadow: none;
}

.home-quick-checks a:focus-visible,
.utility-grid a:focus-visible {
  outline-offset: -5px;
  box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 6px #355B00;
}

.home-quick-checks strong {
  font-size: 16px;
}

.home-quick-checks span {
  font-size: 13px;
}

.home-section {
  padding: 84px 0;
  border-top: 0;
}

.compact-section {
  padding-top: 72px;
}

.quiet-section,
.operating-section {
  background: var(--paper);
}

.home-page .section-head {
  gap: clamp(30px, 6vw, 80px);
  margin-bottom: 44px;
}

.home-section h2,
.dossier-head h2 {
  font-family: var(--home-serif);
  font-weight: 760;
  letter-spacing: 0;
}

.home-section h2 {
  font-size: 50px;
  line-height: 1.06;
}

.decision-path {
  gap: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  border: 1px solid #d4d7d1;
  border-radius: 8px;
  background: var(--white);
}

.decision-path div {
  padding: 26px;
  border: 0;
  border-right: 1px solid #d4d7d1;
  border-radius: 0;
  background: var(--white);
}

.decision-path div:last-child {
  border-right: 0;
}

.decision-path strong {
  font-size: 18px;
}

.decision-path p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.decision-path a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep);
  font-weight: 850;
}

.example-brief {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.dossier-head {
  padding: 30px 32px 24px;
  background: var(--deep);
}

.dossier-head strong {
  border: 0;
  border-radius: 999px;
}

.dossier-head strong.status-caution {
  background: var(--caution);
  color: var(--caution-ink);
}

.example-body {
  gap: 56px;
  padding: 36px 32px 40px;
}

.provider-independence-copy .button {
  margin-top: 20px;
}

#provider-products .section-head {
  margin-bottom: 0;
}

.utility-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid #d4d7d1;
  border-radius: 8px;
  background: var(--white);
}

.utility-grid a {
  min-height: 160px;
  align-content: start;
  padding: 26px;
  border: 0;
  border-right: 1px solid #d4d7d1;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.utility-grid a:last-child {
  border-right: 0;
}

.utility-grid strong {
  font-size: 18px;
}

.utility-grid span {
  font-size: 14px;
  line-height: 1.5;
}

.home-page .site-footer {
  background: var(--deep);
}

.home-page .footer-grid {
  padding: 52px 0;
}

@media (max-width: 1080px) {
  .home-hero h1 {
    font-size: 48px;
  }

  .home-section h2 {
    font-size: 42px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    padding: 46px;
  }

  .product-panel {
    max-width: none;
  }

  .home-quick-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 16px 0 58px;
  }

  .home-hero-grid {
    gap: 28px;
    padding: 28px 20px;
    border-radius: 8px;
  }

  .home-hero h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .home-check-form {
    padding: 14px;
  }

  .home-quick-checks {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }

  .home-quick-checks a,
  .home-primary-routes a:first-child {
    min-height: 0;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid #d4d7d1;
  }

  .home-quick-checks a:last-child {
    border-bottom: 0;
  }

  .home-section {
    padding: 60px 0;
  }

  .home-section h2 {
    font-size: 34px;
  }

  .dossier-head {
    padding: 24px 20px 20px;
  }

  .dossier-head h2 {
    min-width: 0;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .decision-path div,
  .utility-grid a {
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid #d4d7d1;
  }

  .decision-path div:last-child,
  .utility-grid a:last-child {
    border-bottom: 0;
  }

  .example-body {
    padding: 24px 20px 28px;
  }
}

@media (max-width: 360px) {
  .dossier-head h2 {
    font-size: 28px;
  }
}
