:root {
  --ink: #10233f;
  --muted: #60738d;
  --blue: #0759d5;
  --blue-deep: #03245d;
  --sky-soft: #f5faff;
  --yellow: #ffc72c;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--sky-soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  margin: 0 auto;
  max-width: 1180px;
  width: min(1180px, calc(100% - 40px));
}

.site-header {
  background: rgba(3, 36, 93, 0.94);
  color: var(--white);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  align-items: center;
  display: inline-flex;
  font-size: 22px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: -0.8px;
}

.logo-mark {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--blue-deep);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.logo-mark svg {
  height: 21px;
  width: 21px;
}

.logo > span:not(.logo-mark) {
  color: var(--yellow);
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--yellow);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  padding: 10px 18px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 42px;
  width: 42px;
}

.menu-toggle svg {
  height: 26px;
  width: 26px;
}

.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 9px;
  text-align: center;
  text-transform: uppercase;
}

.section-title {
  color: var(--blue-deep);
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -1.8px;
  line-height: 1.1;
  margin-bottom: 14px;
  text-align: center;
}

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

.legal-page {
  background: var(--sky-soft);
  padding-top: 110px;
}

.legal-page .container {
  max-width: 880px;
}

.legal-page section {
  padding: 58px 0 80px;
}

.legal-page h2 {
  color: var(--blue-deep);
  font-size: 22px;
  margin: 32px 0 10px;
}

.legal-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 700;
}

.landing-list {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 22px 24px;
}

.landing-list li {
  margin-bottom: 8px;
}

.cta-panel {
  background: var(--white);
  border: 1px solid rgba(7, 89, 213, 0.12);
  border-radius: 18px;
  margin-top: 34px;
  padding: 28px;
  text-align: center;
}

.legal-page .cta-panel h2 {
  margin-top: 0;
}

.legal-page a.landing-cta {
  background: var(--yellow);
  border-radius: 999px;
  color: var(--blue-deep);
  display: inline-block;
  font-weight: 800;
  margin-top: 8px;
  padding: 12px 20px;
}

.site-footer {
  background: #021d49;
  color: rgba(255, 255, 255, 0.72);
  padding: 55px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.35fr repeat(4, 0.72fr);
  padding-bottom: 42px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-group h3 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-group a {
  display: block;
  font-size: 13px;
  margin: 10px 0;
  transition: color 160ms ease;
}

.footer-group a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.8;
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 650px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .menu-toggle {
    align-items: center;
    display: inline-flex;
    justify-content: center;
  }

  .main-nav {
    background: var(--blue-deep);
    border-radius: 12px;
    display: none;
    left: 14px;
    padding: 18px;
    position: absolute;
    right: 14px;
    top: 68px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav a {
    display: block;
    margin: 7px 0;
    padding: 10px;
  }

  .nav-cta {
    border: 0;
    padding: 10px;
  }

  .legal-page {
    padding-top: 88px;
  }

  .legal-page section {
    padding: 48px 0 64px;
  }

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