:root {
  --navy: #102a43;
  --navy-mid: #173c50;
  --ink: #18323f;
  --teal: #25a6a1;
  --teal-deep: #1d7d7a;
  --teal-soft: #eaf4f4;
  --orange: #e68a45;
  --orange-soft: #fff3ea;
  --sand: #f3f6f5;
  --paper: #ffffff;
  --line: #d9e1e3;
  --muted: #53636b;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
  --max: 1180px;
  --radius: 5px;
  --header-offset: 4.25rem;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

/* Native CSS scroll-snap pages */
html.snap-scroll,
html:has(body.page-home) {
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--header-offset);
}

.page-home main {
  padding-top: var(--header-offset);
}

.snap-page {
  height: calc(100dvh - var(--header-offset));
  max-height: calc(100dvh - var(--header-offset));
  overflow: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.page-home .hero.snap-page {
  display: grid;
  overflow: hidden;
}

.page-home .section.snap-page {
  padding: 2.5rem 0;
}

.page-home .outcomes {
  gap: 1.25rem;
}

.page-home .outcome {
  padding-top: 0.75rem;
}

.page-home .check-list li {
  padding: 0.45rem 0 0.45rem 1.8rem;
}

.page-home .cta-band {
  padding: 1.4rem 1.6rem;
}

.page-home .cta-band h2 {
  font-size: 1.35rem;
}

.page-home .site-footer {
  scroll-snap-align: end;
}

@media (prefers-reduced-motion: reduce) {
  html.snap-scroll,
  html:has(body.page-home) {
    scroll-snap-type: none;
  }
}

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

a {
  color: var(--teal-deep);
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.logo-word {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.13rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.17rem;
  color: var(--muted);
  max-width: 42rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 22;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

body:not(.page-home) {
  padding-top: var(--header-offset);
}

.section-nav a.is-active {
  color: var(--teal-deep);
  box-shadow: inset 0 -2px 0 var(--teal);
}

.section-marks {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 18;
  display: none;
  flex-direction: column;
  gap: 0.7rem;
}

.section-marks a {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  text-decoration: none;
}

.section-marks span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.section-marks a:hover span,
.section-marks a.is-active span {
  background: var(--teal);
}

.section-marks a.is-active span {
  transform: scale(1.35);
}

@media (min-width: 1100px) {
  .section-marks {
    display: flex;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
}

.mark {
  width: 30px;
  height: 30px;
  flex: none;
}

.logo-word {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-nav {
  gap: 0.35rem;
}

.section-nav a:not(.btn) {
  padding: 0.45rem 0.55rem;
  font-size: 0.84rem;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--teal-deep);
}

.nav .btn,
.nav .btn:hover,
.nav a.btn[aria-current="page"] {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.62rem 1rem;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.btn:hover {
  background: #0c2033;
}

.btn-teal {
  background: var(--white);
  color: var(--navy);
}

.btn-teal:hover {
  background: #eef5f5;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.btn-ghost:hover {
  background: var(--teal-soft);
}

.hero-secondary,
.hero-secondary:hover {
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.hero {
  position: relative;
  min-height: min(78vh, 690px);
  display: grid;
  align-items: center;
  color: var(--white);
  background-color: var(--navy);
  background-position: right center;
  background-size: 54% 100%;
  background-repeat: no-repeat;
}

.hero-bleed {
  background-size: cover;
  background-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0 46% 0 0;
  background: var(--navy);
}

.hero-bleed .hero-scrim {
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(16, 42, 67, 0.94) 0%,
    rgba(16, 42, 67, 0.82) 48%,
    rgba(16, 42, 67, 0.45) 100%
  );
}

.hero .wrap {
  position: relative;
  padding: 5rem 0;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #8bd6d2;
}

.hero h1 { max-width: 16ch; }
.hero-bleed h1 { max-width: 18ch; }
.hero .lede { color: #dce8ed; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.narrow {
  max-width: 42rem;
}

.note-card {
  padding: 1.5rem 1.6rem;
  border-top: 2px solid var(--teal);
  background: var(--sand);
  align-self: start;
}

.note-card p:last-child {
  margin-bottom: 0;
}

.section { padding: 6rem 0; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .kicker { color: #8bd6d2; }
.section-navy .lede,
.section-navy p { color: #b9ced8; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.grid-4,
.grid-3,
.grid-2,
.types,
.outcomes {
  display: grid;
  gap: 2rem;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.types { grid-template-columns: repeat(5, 1fr); }
.outcomes { grid-template-columns: repeat(3, 1fr); }

.card,
.stat,
.type-card,
.outcome,
.step {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.section-navy .card,
.section-navy .stat {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.section-sand .card {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.form + div .card {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.stat strong,
.type-card strong,
.outcome strong {
  display: block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--navy);
}

.section-navy .stat strong { color: var(--white); }

.stat span,
.type-card p,
.outcome p,
.card p,
.step p {
  color: var(--muted);
}

.type-card,
.outcome {
  min-height: 100%;
  padding-top: 1.1rem;
  border-top: 2px solid var(--teal);
}

.outcome p {
  margin-bottom: 0;
}

.type-card em {
  display: block;
  margin-bottom: 0.55rem;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-deep);
}

.step {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.step-num,
.type-card em {
  color: var(--teal-deep);
}

.step-num {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 0.8rem;
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.8rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--teal);
}

.metrics .stat {
  min-height: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.3rem 2.5rem;
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
}

.cta-band p { color: #b9ced8; margin: 0.4rem 0 0; }
.cta-band h2 { margin: 0; color: var(--white); }

.page-hero {
  padding: 5.5rem 0;
  background: var(--navy);
  color: var(--white);
}

.page-hero .kicker { color: #8bd6d2; }
.page-hero .lede { color: #c9d9e0; }
.page-hero h1 { max-width: 16ch; }
.page-hero + .section { padding-top: 5rem !important; }

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
  padding: 2rem;
  border: 1px solid var(--line);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  font: inherit;
}

.form textarea { min-height: 140px; resize: vertical; }

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.notice {
  padding: 0.9rem 1rem;
  border-radius: 3px;
  background: var(--teal-soft);
  color: var(--navy);
}

.notice-error { background: #fff3ea; }

.site-footer {
  padding: 2rem 0;
  background: var(--navy);
  color: #b9ced8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer a { color: #dce8ed; text-decoration: none; }
.site-footer .brand { color: var(--white); }

.fine {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .types,
  .outcomes,
  .grid-4,
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split img { height: 300px; }
  .hero {
    background-size: cover;
    background-position: center;
  }
  .hero-scrim {
    inset: 0;
    background: rgba(16, 42, 67, 0.86);
  }
  .hero-bleed .hero-scrim {
    background: rgba(16, 42, 67, 0.88);
  }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    padding: 1rem 1.2rem 1.2rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .grid-4,
  .grid-3,
  .grid-2,
  .types,
  .outcomes { grid-template-columns: 1fr; }
  .cta-band,
  .footer-inner { flex-direction: column; }
  .page-home .hero { min-height: 0; }
  .section { padding: 4.5rem 0; }
  .page-home .section { padding: 1.5rem 0; }
  .form { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
