:root {
  --navy: #082b46;
  --navy-2: #0d3c60;
  --blue: #0f5784;
  --teal: #00a79d;
  --ice: #f3f8fb;
  --white: #ffffff;
  --ink: #0b2c46;
  --muted: #5d7486;
  --line: rgba(8, 43, 70, 0.13);
  --shadow: 0 28px 85px rgba(8, 43, 70, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(8, 43, 70, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
}

.brand strong,
.brand em {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 940;
}

.brand em {
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 820;
}

nav a:not(.nav-cta) {
  opacity: 0.82;
}

nav a:hover {
  color: var(--blue);
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  min-height: 720px;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 167, 157, 0.22), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(15, 87, 132, 0.34), transparent 36%),
    linear-gradient(135deg, #052238 0%, #0d3c60 54%, #082b46 100%);
}

.hero-copy,
.hero-card,
.section,
.cta,
.site-footer {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
.section-heading h2,
.cta h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3.4rem, 7.4vw, 7.4rem);
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.28rem, 2.35vw, 2.05rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 820;
}

.pill-row span:first-child {
  color: #062033;
  background: var(--teal);
  border-color: var(--teal);
}

.hero-card {
  padding: clamp(26px, 4vw, 42px);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.card-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.card-brand img {
  width: 58px;
}

.card-brand strong,
.card-brand em {
  display: block;
}

.card-brand strong {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 940;
}

.card-brand em {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.section {
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.cta h2 {
  color: var(--navy);
  font-size: clamp(2.35rem, 5.2vw, 4.85rem);
}

.cards,
.steps,
.portal-list {
  max-width: 1120px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cards article,
.steps article,
.portal-list article {
  padding: clamp(24px, 3.5vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cards h3,
.steps h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.cards p,
.steps p,
.portal-copy p,
.portal-list span,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.why {
  background: linear-gradient(180deg, var(--white), #f8fbfd);
}

.approach {
  background:
    radial-gradient(circle at 8% 8%, rgba(15, 87, 132, 0.08), transparent 30%),
    var(--ice);
}

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

.steps article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  font-weight: 950;
}

.portals {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.portal-copy {
  max-width: 760px;
  margin: 0 auto;
}

.portal-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto;
}

.portal-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.portal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portal-list article {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(15, 87, 132, 0.08), rgba(255, 255, 255, 0) 52%),
    var(--white);
}

.portal-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto clamp(60px, 8vw, 96px);
  padding: clamp(30px, 5vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 167, 157, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), #052238);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

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

.cta p {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.cta a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

  .hero,
  .two-col,
  .steps,
  .portals,
  .portal-list,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cta {
    display: grid;
    margin-inline: 20px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .pill-row span,
  .cta a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
