:root {
  color-scheme: light;
  --ink: #17233b;
  --muted: #526078;
  --surface: #ffffff;
  --soft: #edf4f8;
  --line: #d6e1e8;
  --accent: #205c78;
  --accent-strong: #15445c;
  --page: #f6f9fb;
}

* { box-sizing: border-box; }

html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, #dceef3 0, transparent 35rem),
    var(--page);
  line-height: 1.65;
}

a { color: var(--accent); text-underline-offset: 0.18em; }
a:hover { color: var(--accent-strong); }

.shell {
  width: min(100% - 2rem, 52rem);
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.hero { padding: 2.5rem 0 2rem; }
.hero.compact { padding-top: 1.5rem; }

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1, h2 { line-height: 1.2; letter-spacing: -0.025em; }
h1 { max-width: 17ch; margin: 0; font-size: clamp(2.4rem, 8vw, 4.6rem); }
h2 { margin: 0 0 0.7rem; font-size: clamp(1.35rem, 4vw, 1.7rem); }

.lead {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 3vw, 1.3rem);
}

section {
  margin: 1.1rem 0;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 0.6rem 2rem rgb(33 65 84 / 6%);
}

section p:last-child, section ul:last-child { margin-bottom: 0; }

.policy-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--soft);
}

.button {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.72rem 1rem;
  border-radius: 0.65rem;
  color: white;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.button:hover { color: white; background: var(--accent-strong); }

nav { margin-bottom: 1rem; }
footer { margin-top: 2.5rem; color: var(--muted); font-size: 0.92rem; }

@media (max-width: 42rem) {
  .shell { padding-top: 2rem; }
  .policy-card { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .button { width: 100%; text-align: center; }
}

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