:root {
  --blue-900: #213a73;
  --blue-700: #4689b6;
  --blue-200: #a4b5c6;
  --blue-100: #e4eff6;
  --blue-050: #ebeef4;
  --ink: #14213f;
  --muted: #4d6192;
  --white: #ffffff;
  --red: #e5133c;
  --shadow: 0 22px 50px rgba(20, 33, 63, .16);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--blue-900);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--blue-900);
  background: var(--white);
  font-weight: 800;
}

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

.page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  color: var(--white);
  background: rgba(33, 58, 115, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: min(230px, 54vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .9);
  font-size: .94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 10px 22px rgba(20, 33, 63, .18);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  background: #6ba1c5;
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(33, 58, 115, .96) 0%, rgba(33, 58, 115, .84) 48%, rgba(33, 58, 115, .28) 100%),
    var(--hero-image) center / cover no-repeat,
    var(--blue-900);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -78px;
  width: 56vw;
  height: 230px;
  content: "";
  background:
    linear-gradient(135deg,
      var(--blue-200) 0 28%,
      var(--blue-700) 28% 58%,
      var(--blue-900) 58% 100%);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  opacity: .94;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  gap: clamp(26px, 5vw, 70px);
  width: min(1180px, calc(100% - 36px));
  min-height: min(660px, calc(100svh - 78px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 104px) 0 clamp(42px, 7vw, 70px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-100);
  font-size: .95rem;
  font-weight: 800;
}

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

h1 {
  max-width: 12.5ch;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius);
  color: var(--blue-900);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: 1.32rem;
}

.hero-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--muted);
}

.hero-card li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-700);
  content: attr(data-index);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.answer-strip {
  background: var(--blue-050);
  border-bottom: 1px solid rgba(33, 58, 115, .12);
}

.answer-strip .section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(24px, 5vw, 64px);
  padding-top: 34px;
  padding-bottom: 34px;
}

.answer-label {
  margin: 0;
  color: var(--blue-900);
  font-weight: 850;
}

.answer-text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(33, 58, 115, .12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(20, 33, 63, .06);
}

.card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-700);
  font-weight: 850;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-900);
}

.feature-band .section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.feature-band h2,
.feature-band h3 {
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, .84);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-stack img {
  width: 100%;
  height: 250px;
  border-radius: var(--radius);
  object-fit: cover;
}

.photo-stack img:first-child {
  grid-column: 1 / -1;
  height: 340px;
}

.link-list,
.faq-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.link-list a span {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
}

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

.info {
  padding: 20px;
  border: 1px solid rgba(33, 58, 115, .12);
  border-radius: var(--radius);
  background: var(--blue-050);
}

.info dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.info dd {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.04rem;
  font-weight: 800;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(135deg,
      var(--blue-200) 0 18%,
      var(--blue-700) 18% 44%,
      var(--blue-900) 44% 100%);
}

.cta-band .section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.cta-band h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.cta-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.faq-item {
  border: 1px solid rgba(33, 58, 115, .12);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-900);
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.footer {
  color: rgba(255, 255, 255, .8);
  background: var(--blue-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer img {
  width: 150px;
  height: auto;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.footer a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .answer-strip .section,
  .feature-band .section,
  .cta-band .section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(33, 58, 115, .82) 0%, rgba(33, 58, 115, .98) 62%),
      var(--hero-image) center top / cover no-repeat,
      var(--blue-900);
  }

  .grid,
  .info-grid,
  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img,
  .photo-stack img:first-child {
    height: 240px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 70px;
    gap: 10px;
  }

  .brand img {
    width: min(186px, 48vw);
  }

  .header-inner .button {
    min-height: 40px;
    padding: 0 10px;
    font-size: .84rem;
  }

  .hero-inner,
  .section {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }
}
