:root {
  --navy-950: #071527;
  --navy-900: #0a1f38;
  --navy-800: #10345d;
  --navy-700: #164775;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --white: #ffffff;
  --ink: #152033;
  --muted: #5f6f85;
  --border: #d7e2ef;
  --shadow: 0 20px 45px rgba(7, 21, 39, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-100);
  outline-offset: 4px;
}

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

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  display: inline-block;
  padding: 0.35rem 0;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--navy-800);
}

.hero {
  display: grid;
  min-height: 78vh;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 21, 39, 0.78), rgba(7, 21, 39, 0.86)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Crect width='1400' height='900' fill='%230a1f38'/%3E%3Cpath d='M0 620C210 545 343 712 560 642C762 577 801 362 1014 302C1175 257 1297 304 1400 352V900H0Z' fill='%2310345d'/%3E%3Cpath d='M0 470C185 390 325 452 492 420C716 377 798 174 1010 132C1178 98 1300 154 1400 205V0H0Z' fill='%23164775' opacity='.62'/%3E%3Ccircle cx='1040' cy='420' r='210' fill='none' stroke='%23dbeafe' stroke-width='2' opacity='.16'/%3E%3Ccircle cx='1040' cy='420' r='132' fill='none' stroke='%23dbeafe' stroke-width='2' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 5rem 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--blue-100);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.6rem;
  color: var(--navy-900);
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-subtitle {
  max-width: 40rem;
  margin-top: 1.25rem;
  color: #e8f1ff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-weight: 700;
  text-decoration: none;
}

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 5.5rem 0;
}

.section-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section-light {
  background: var(--white);
}

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

.section-navy {
  color: var(--white);
  background: var(--navy-900);
}

.section-navy h2,
.section-navy .section-kicker {
  color: var(--white);
}

.section-navy .section-heading p {
  color: #d5e5f8;
}

.section-navy .feature-card h3 {
  color: var(--navy-900);
}

.section-navy .feature-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.prose {
  display: grid;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.section-heading p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.feature-card,
.resource-card,
.info-list article {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.feature-card p,
.resource-card p,
.info-list p {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 1rem;
}

.info-list article {
  display: grid;
  grid-template-columns: minmax(11rem, 0.28fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  box-shadow: none;
}

.section-contact {
  color: var(--white);
  background: var(--navy-950);
}

.section-contact h2,
.section-contact .section-kicker {
  color: var(--white);
}

.section-contact p {
  max-width: 42rem;
  margin-top: 1rem;
  color: #d5e5f8;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

address {
  font-style: normal;
}

.contact-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 0.35rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 1.5rem 1rem;
  color: #d5e5f8;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.site-footer p {
  margin: 0 auto;
  max-width: var(--max-width);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 4rem 0;
  }

  .split,
  .contact-panel,
  .info-list article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav-links a {
    padding: 0.45rem 0;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero-actions,
  .button,
  .contact-link {
    width: 100%;
  }

  .feature-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }
}
