:root {
  --blue: #1d7ff2;
  --blue-dark: #0f5fc4;
  --teal: #11c5a3;
  --teal-dark: #07836f;
  --orange: #f7a928;
  --pine: #082a62;
  --pine-dark: #061b3f;
  --ink: #102033;
  --muted: #667085;
  --soft: #f5f9fd;
  --surface: #ffffff;
  --border: #e5edf5;
  --shadow: 0 20px 55px rgba(8, 42, 98, 0.12);
}

* {
  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(--ink);
  background: var(--soft);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 237, 245, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 162px;
}

.brand img {
  width: min(220px, 42vw);
  height: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--pine);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 84px) 74px;
  color: white;
  background: linear-gradient(90deg, rgba(6, 27, 63, 0.96) 0%, rgba(8, 42, 98, 0.88) 44%, rgba(8, 42, 98, 0.72) 100%);
  background-color: var(--pine);
}

.hero-content {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #96fff0;
}

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

h1 {
  margin-bottom: 18px;
  color: white;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--pine);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--pine);
  font-size: 22px;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
}

.lede {
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.3;
  color: white !important;
}

.hero-actions,
.status-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-link {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 28px rgba(29, 127, 242, 0.24);
}

.secondary-link {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.section,
.feature-grid,
.status-band,
footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 44px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 68px;
}

article,
.proof-list div {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(8, 42, 98, 0.07);
}

article span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

article p,
.proof-list span {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: start;
  padding-top: 68px;
  padding-bottom: 68px;
  border-top: 1px solid var(--border);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list strong,
footer strong {
  display: block;
  color: var(--pine);
  font-size: 18px;
}

.proof-list span,
footer span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5;
}

.status-band {
  justify-content: space-between;
  margin-bottom: 54px;
  padding-top: 34px;
  padding-bottom: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.status-band > div {
  max-width: 760px;
}

.status-band h2 {
  font-size: clamp(28px, 4vw, 42px);
}

footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 42px;
  border-top: 1px solid var(--border);
}

footer img {
  width: 58px;
  height: 38px;
  object-fit: contain;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 72vh;
    padding-top: 68px;
    background-size: auto 240px;
    background-position: right -70px top 54px;
  }

  .intro,
  .proof {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

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

  .primary-link,
  .secondary-link,
  .status-band .primary-link {
    width: 100%;
  }
}
