:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #0a2355;
  background: #f3f8ff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f3f8ff;
}

a {
  color: #0877e8;
}
a:hover {
  color: #005fc1;
}
a:focus-visible {
  outline: 3px solid #00c8f8;
  outline-offset: 4px;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 6vw, 88px);
  background: #06163b;
  color: #fff;
}

.site-header a,
footer a {
  color: #fff;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: #f8fbff;
}

.brand img {
  display: block;
  width: clamp(146px, 17vw, 196px);
  height: auto;
}

main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0877e8;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: #06163b;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 780px;
  margin: 28px 0 0;
  color: #385176;
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.55;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid #cbd9ed;
  border-bottom: 1px solid #cbd9ed;
}

.facts > div {
  padding: 30px 30px 30px 0;
}
.facts > div + div {
  padding-left: 30px;
  border-left: 1px solid #cbd9ed;
}

h2 {
  margin: 0 0 12px;
  color: #0a2355;
  font-size: 20px;
}

p {
  color: #385176;
  line-height: 1.7;
}
code {
  font: inherit;
  font-weight: 700;
  color: #0a2355;
}

.detail {
  max-width: 780px;
  margin-top: 64px;
}
.primary-link {
  font-weight: 700;
}

.policy {
  max-width: 820px;
}
.policy h1 {
  font-size: clamp(38px, 6vw, 60px);
}
.policy h2 {
  margin-top: 44px;
}
.back-link {
  margin-top: 56px;
}

footer {
  font-size: 14px;
}

@media (max-width: 760px) {
  main {
    padding: 56px 0;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .facts > div {
    padding: 24px 0;
  }
  .facts > div + div {
    padding-left: 0;
    border-top: 1px solid #cbd9ed;
    border-left: 0;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
