@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #061E3A;
  --coral: #FF4F3E;
  --soft: #F7F9FC;
  --line: #E7ECF2;
  --text: #0E2745;
  --muted: #65758A;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header { border-bottom: 1px solid var(--line); }
.nav { padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand img { width: 168px; height: auto; }
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 20px; border-radius: 999px;
  background: var(--navy); color: #fff; font-weight: 750;
  font-size: 14px; text-decoration: none; white-space: nowrap;
}
.cta:hover { background: var(--coral); }

main { max-width: 760px; margin: 0 auto; padding: 72px 28px 96px; }
h1 { margin: 0 0 24px; color: var(--navy); font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.045em; font-weight: 850; }
h2 { margin: 42px 0 12px; color: var(--navy); font-size: 21px; letter-spacing: -.02em; }
p { margin: 0 0 18px; }
ul { margin: 0 0 18px; padding-left: 22px; }
li { margin-bottom: 6px; }
.lead { font-size: 20px; color: #223B57; }
.kicker { color: var(--coral); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.back { display: inline-flex; align-items: center; min-height: 52px; padding: 0 26px; border-radius: 999px; background: var(--coral); color: #fff; font-weight: 800; text-decoration: none; margin-top: 12px; }
.back:hover { background: var(--navy); }
.small { font-size: 14px; color: var(--muted); }

footer { padding: 44px 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-inner strong { color: var(--navy); }

@media (max-width: 620px) {
  .brand img { width: 132px; }
  .nav { padding: 14px 18px; }
  main { padding: 48px 20px 72px; }
}
