:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #596579;
  --blue: #1769e0;
  --green: #16a36f;
  --yellow: #f6b21a;
  --line: #dce6f2;
  --paper: #f7fbff;
  --surface: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

header,
footer {
  background: var(--surface);
  border-color: var(--line);
}

header {
  border-bottom: 1px solid var(--line);
}

footer {
  border-top: 1px solid var(--line);
}

nav,
.wrap,
.footer-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding-inline: 24px;
}

nav,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

nav {
  min-height: 72px;
}

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

a.link {
  color: var(--blue);
  font-weight: 900;
}

.brand {
  font-size: 18px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.hero,
section,
.page {
  padding-block: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  font-size: clamp(31px, 5vw, 46px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 18px;
  font-weight: 900;
}

.intro {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.65;
}

.facts,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill,
.button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 900;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.section-eyebrow {
  color: var(--blue);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.06);
}

.card p,
.card li {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.card ul {
  padding-left: 20px;
}

.notice {
  border-left: 5px solid var(--yellow);
}

.footer-inner {
  min-height: 88px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 720px) {
  nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .hero,
  section,
  .page {
    padding-block: 52px;
  }

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