:root {
  --blue: #0b4fa2;
  --logo-blue: #0063b9;
  --charcoal: #202a33;
  --charcoal-2: #36444f;
  --gray: #f4f6f8;
  --line: #d8e1ea;
  --white: #ffffff;
  --amber: #b97916;
  --max: 1120px;
  --radius: 8px;
  --font: Inter, Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.site-footer__inner,
.section__inner,
.hero__inner,
.page-hero__inner,
.cta-band__inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 300px;
  height: 64px;
  min-width: 240px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  color: var(--charcoal-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  padding: 0.6rem 0;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a[aria-current="page"] {
  color: var(--blue);
  border-color: var(--blue);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 4rem 0 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero__logo {
  width: min(360px, 72vw);
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 5.25rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.section--blue h2,
.section--blue p {
  color: var(--white);
}

.lede {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: var(--charcoal-2);
  font-size: 1.25rem;
}

.action-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
}

.button--primary:hover,
.button--primary:focus {
  background: var(--logo-blue);
  border-color: var(--logo-blue);
}

.button--secondary {
  color: var(--blue);
  background: var(--white);
}

.button--secondary:hover,
.button--secondary:focus {
  color: var(--white);
  background: var(--blue);
}

.button--light {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
  margin-top: 1.25rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  width: min(900px, 100%);
  margin-top: 1.5rem;
}

.trust-strip span {
  padding: 0.45rem 0.65rem;
  color: var(--charcoal-2);
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(860px, 100%);
  margin-top: 3rem;
}

.stat {
  min-height: 120px;
  padding: 1.15rem;
  text-align: left;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: 1.65rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--charcoal-2);
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.section--gray {
  background: var(--gray);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--blue {
  background: var(--blue);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 3rem;
  align-items: center;
}

.split p {
  margin-top: 0;
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
}

.service-card,
.profile-card,
.role-card,
.step,
.summary-panel,
.feature-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 1.5rem;
  text-decoration: none;
}

.service-card:hover,
.service-card:focus {
  border-color: var(--blue);
}

.service-card h2,
.service-card h3,
.profile-card h2,
.role-card h3 {
  margin-top: 0.4rem;
  font-size: 1.55rem;
}

.service-card p,
.profile-card p,
.role-card p,
.step p {
  color: var(--charcoal-2);
}

.card-kicker {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

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

.step {
  min-height: 190px;
  padding: 1.25rem;
}

.step span {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-weight: 900;
}

.page-hero {
  padding: 5rem 0;
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 900px;
}

.page-body {
  width: min(850px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.prose {
  color: var(--charcoal-2);
}

.prose--intro {
  max-width: 820px;
  margin-bottom: 2rem;
}

.prose h2 {
  margin-top: 2.25rem;
  color: var(--charcoal);
  font-size: 1.65rem;
}

.prose p,
.prose li {
  font-size: 1.05rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
}

.summary-panel,
.profile-card,
.role-card {
  padding: 1.5rem;
}

.coverage-panel {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.coverage-panel p {
  margin: 1rem 0 0;
  color: var(--charcoal-2);
}

.coverage-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  padding: 0.75rem;
  color: var(--charcoal);
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.summary-panel h2 {
  font-size: 1.25rem;
}

.check-list,
.role-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--charcoal-2);
}

.check-list li,
.role-card li {
  margin-bottom: 0.55rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  min-height: 130px;
  padding: 1.25rem;
  color: var(--charcoal-2);
  font-weight: 800;
}

.profile-card {
  min-height: 335px;
  overflow: hidden;
}

.role-card {
  min-height: 330px;
}

.profile-photo {
  display: grid;
  min-height: 170px;
  margin: -1.5rem -1.5rem 1.25rem;
  place-items: center;
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.profile-photo span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
}

.cta-band {
  padding: 4rem 0;
  background: var(--charcoal);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.cta-band__inner h2,
.cta-band__inner p {
  grid-column: 1;
}

.cta-band__inner .button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 680px;
  margin: 0.75rem 0 0;
}

.site-footer {
  padding: 2rem 0;
  background: var(--gray);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer p {
  max-width: 560px;
  margin: 0.5rem 0 0;
  color: var(--charcoal-2);
}

.site-footer .copyright {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--charcoal-2);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--blue);
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header__inner,
  .site-footer__inner,
  .split,
  .content-grid,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
    justify-items: center;
    padding: 0.75rem 0 1rem;
  }

  .main-nav {
    justify-content: center;
  }

  .hero__stats,
  .card-grid--two,
  .card-grid--three,
  .step-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-footer__inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cta-band__inner {
    display: grid;
  }

  .cta-band__inner .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lede {
    font-size: 1.05rem;
  }

  .brand {
    width: 230px;
    height: 58px;
  }

  .main-nav {
    gap: 0.25rem 0.75rem;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .section,
  .page-body {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 3.5rem 0;
  }

  .button {
    width: 100%;
  }
}
