:root {
  --navy: #062c5f;
  --blue: #005eb8;
  --cyan: #009bc7;
  --orange: #f26a21;
  --ink: #101828;
  --muted: #5d6678;
  --line: #d9e2ef;
  --paper: #f8fbff;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(6, 44, 95, 0.16);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header,
.hero,
.paths,
.readiness,
.proof,
.request,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: clamp(88px, 12vw, 132px); height: auto; display: block; }
nav { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  color: var(--navy);
  border: 1px solid transparent;
  padding: .65rem .8rem;
}
nav a:hover, nav a:focus { border-color: var(--line); background: var(--white); }

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(2rem, 6vw, 5rem) 0;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .78rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 940px;
  color: var(--navy);
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: 0;
}
h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: 0; }
h3 { margin: 0; color: var(--navy); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.08; letter-spacing: 0; }
p { line-height: 1.65; }
.hero-lead { max-width: 760px; color: #29364a; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 2rem 0 1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.15rem;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  border-radius: 0;
  font: inherit;
}
.button.primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.button.secondary { background: var(--white); color: var(--navy); }
.notice { max-width: 760px; color: var(--muted); font-size: .95rem; }
.hero-card {
  display: grid;
  gap: .85rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card span {
  display: block;
  padding: 1rem 1.1rem;
  color: var(--navy);
  border-left: 5px solid var(--cyan);
  background: #f4f9fd;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-card span:nth-child(2) { border-color: var(--blue); }
.hero-card span:nth-child(3) { border-color: var(--orange); }
.hero-card span:nth-child(4) { border-color: var(--cyan); }
.hero-card span:nth-child(5) { border-color: var(--navy); }

.ticker {
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  border-block: 4px solid var(--orange);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  animation: ticker 32s linear infinite;
}
.ticker-track span { white-space: nowrap; font-weight: 900; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; flex-wrap: wrap; width: auto; padding-inline: 1rem; } }

.paths, .readiness, .proof, .request { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-heading { max-width: 820px; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.path-grid, .readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}
.path-card {
  appearance: none;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: grid;
  gap: .9rem;
  cursor: pointer;
  color: inherit;
}
.path-card:last-child { border-right: 0; }
.path-card.active { background: #eaf7fb; box-shadow: inset 0 5px 0 var(--cyan); }
.path-card span, .readiness-grid span { color: var(--orange); font-size: .75rem; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.path-card strong { color: var(--navy); font-size: 1.2rem; line-height: 1.15; }
.path-card small { color: var(--muted); line-height: 1.5; }

.readiness-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.readiness-grid article {
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.readiness-grid article:nth-child(3n) { border-right: 0; }
.readiness-grid article:nth-last-child(-n + 3) { border-bottom: 0; }
.readiness-grid p { color: var(--muted); margin-bottom: 0; }

.proof {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 2rem;
  align-items: start;
  border-block: 1px solid var(--line);
}
.proof ul {
  margin: 0;
  padding: 1.5rem;
  list-style: none;
  background: var(--navy);
  color: var(--white);
}
.proof li { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.18); line-height: 1.5; }
.proof li:last-child { border-bottom: 0; }

.request { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; align-items: start; }
.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: grid; gap: .5rem; font-weight: 900; color: var(--navy); }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b8c7d9;
  padding: .8rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border-radius: 0;
}
textarea { resize: vertical; }
.consent { grid-template-columns: auto 1fr; align-items: start; color: #29364a; font-weight: 700; line-height: 1.5; }
.consent input { width: 18px; min-height: 18px; margin-top: .25rem; }
.form-status { margin: 0; color: var(--blue); font-weight: 900; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 900;
}
.site-footer a { color: var(--blue); }

@media (max-width: 900px) {
  .hero, .proof, .request { grid-template-columns: 1fr; min-height: auto; }
  .path-grid, .readiness-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path-card:nth-child(2n), .readiness-grid article:nth-child(2n) { border-right: 0; }
  .readiness-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .readiness-grid article:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .readiness-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
}

@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  nav { justify-content: flex-start; }
  nav a { padding: .55rem .65rem; }
  .hero { padding-top: 2rem; }
  h1 { font-size: clamp(2.35rem, 14vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
  .hero-actions, .button { width: 100%; }
  .path-grid, .readiness-grid, .form-row { grid-template-columns: 1fr; }
  .path-card, .path-card:last-child, .readiness-grid article, .readiness-grid article:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .readiness-grid article:last-child { border-bottom: 0; }
  .ticker-track { animation-duration: 42s; }
}