:root {
  --ink: #172033;
  --muted: #5f6b7d;
  --paper: #f7f8fb;
  --white: #ffffff;
  --blue: #3977f6;
  --blue-soft: #eaf1ff;
  --line: #dfe4ec;
  --lime: #c9f36b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 82% 8%,
      rgba(201, 243, 107, 0.24),
      transparent 24rem
    ),
    linear-gradient(135deg, #163779 0%, #265ed1 54%, #3977f6 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 19px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

.hero-body {
  padding: 110px 0 116px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.lede {
  max-width: 690px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.55;
}

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

.principles span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 650;
}

.overview {
  padding: 104px 0;
}

.overview > div:first-child,
.support > div:first-child {
  max-width: 760px;
}

h2 {
  margin-bottom: 48px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

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

.feature-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.number {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.feature-grid h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.feature-grid p,
.policy-body p,
.policy-body li,
.support-card p,
.support-card li {
  color: var(--muted);
}

.policy {
  padding: 104px 0;
  background: var(--white);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.4fr);
  gap: 96px;
  align-items: start;
}

.policy aside {
  position: sticky;
  top: 32px;
}

.policy aside h2 {
  margin-bottom: 18px;
}

.effective {
  color: var(--muted);
  font-size: 14px;
}

.policy-body {
  border-top: 1px solid var(--line);
}

.policy-body section {
  padding: 34px 0 28px;
  border-bottom: 1px solid var(--line);
}

.policy-body h3,
.support-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.policy-body p:last-child,
.policy-body ul:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.policy-body ul,
.support-card ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.policy-body li + li,
.support-card li + li {
  margin-top: 12px;
}

.policy-body strong,
.support-card strong {
  color: var(--ink);
}

.support {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  padding: 104px 0;
}

.support h2 {
  margin-bottom: 0;
}

.support-card {
  padding: 36px;
  border-radius: 24px;
  background: var(--blue-soft);
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: 13px;
}

@media (max-width: 820px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .number {
    margin-bottom: 24px;
  }

  .policy-layout,
  .support {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .policy aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-body {
    padding: 80px 0 84px;
  }

  .lede {
    font-size: 18px;
  }

  .overview,
  .policy,
  .support {
    padding: 72px 0;
  }

  .footer .shell {
    flex-direction: column;
    gap: 2px;
  }
}
