:root {
  --bg: #d9eef7;
  --bg-soft: #eef8fc;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-solid: #f8fcfe;
  --ink: #f7fbff;
  --text: #375365;
  --muted: #6d8390;
  --navy: #06233d;
  --navy-2: #0a3454;
  --blue: #2e7fa3;
  --aqua: #88d7e6;
  --steel: #9fb7c3;
  --gold: #d7a24a;
  --line: rgba(6, 35, 61, 0.16);
  --shadow: 0 24px 70px rgba(6, 35, 61, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(136, 215, 230, 0.58), transparent 32rem),
    linear-gradient(180deg, var(--bg), #f5fbfe 48%, #dceff7);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(217, 238, 247, 0.82);
  border-bottom: 1px solid rgba(6, 35, 61, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 8px 20px rgba(6, 35, 61, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-size: 1.02rem;
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(6, 35, 61, 0.08);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: white;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 22px rgba(6, 35, 61, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 104px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  inset: 70px auto auto -120px;
  width: 340px;
  height: 340px;
  background: rgba(6, 35, 61, 0.08);
}

.hero::after {
  right: -140px;
  top: 140px;
  width: 380px;
  height: 380px;
  background: rgba(46, 127, 163, 0.18);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 54px;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.hero-lede,
.section-heading p,
.feature-copy p,
.cta-panel p {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 34px rgba(6, 35, 61, 0.22);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(6, 35, 61, 0.18);
}

.button.full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  color: var(--navy-2);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(6, 35, 61, 0.13);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,255,255,0.38));
  border: 1px solid rgba(255, 255, 255, 0.76);
  outline: 2px solid rgba(6, 35, 61, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  border: 3px solid var(--navy);
}

.hero-card-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: white;
  background: rgba(6, 35, 61, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(136, 215, 230, 0.2);
}

.logo-strip {
  padding: 26px 0;
  background: var(--navy);
  color: white;
  border-block: 5px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.strip-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}

.strip-grid img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
}

.strip-grid p {
  margin: 0;
  color: #eaf7fb;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.contact-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  outline: 1px solid rgba(6, 35, 61, 0.11);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(6, 35, 61, 0.1);
}

.info-card {
  padding: 28px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 35, 61, 0.16);
}

.info-card p,
.timeline-item p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-band {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(6, 35, 61, 0.98), rgba(10, 52, 84, 0.96)),
    var(--navy);
  color: white;
  border-block: 1px solid rgba(255,255,255,0.16);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}

.feature-image {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
}

.feature-image img {
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.68);
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: center;
}

.feature-copy h2,
.feature-copy h3,
.cta-panel h2 {
  color: white;
}

.feature-copy p {
  color: #cce5ef;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #effaff;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: inset 0 0 0 5px var(--navy);
  border: 1px solid rgba(255,255,255,0.6);
}

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

.timeline-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(255,255,255,0.78);
  outline: 1px solid rgba(6, 35, 61, 0.1);
  border-radius: var(--radius-md);
}

.timeline-item span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.cta-panel {
  padding: 80px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(215, 162, 74, 0.18), transparent 22rem),
    linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.cta-panel .eyebrow {
  color: var(--aqua);
}

.cta-panel p {
  color: #dceff7;
  max-width: 680px;
}

.contact-card {
  padding: 28px;
  background: rgba(255,255,255,0.95);
}

.contact-card h3 {
  color: var(--navy);
}

.contact-card p {
  margin-bottom: 10px;
}

.site-footer {
  padding: 34px 0;
  background: #03192d;
  color: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  color: #b8d3df;
  margin: 6px 0 0;
}

.site-footer a {
  color: #eaf7fb;
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero-grid,
  .feature-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .cta-grid {
    gap: 28px;
  }

  .contact-card {
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, 1120px);
  }

  .nav-shell {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .section-pad,
  .feature-band,
  .cta-panel {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero-card-caption {
    position: static;
    margin-top: 12px;
    border-radius: 16px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
