/* base.css — reset, tokens, typography */
:root {
  --red: #d6233b;
  --red-deep: #a3122a;
  --white: #ffffff;
  --ink: #0c1024;
  --ink-soft: #2a2f47;
  --blue: #1a36b8;
  --blue-bright: #2f54eb;
  --blue-deep: #0d1b6e;
  --paper: #f6f7fb;
  --muted: #5b6178;
  --line: #e3e6f0;
  --shadow: 0 18px 50px -22px rgba(13, 27, 110, .45);
  --shadow-sm: 0 8px 24px -14px rgba(13, 27, 110, .4);
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;
  --maxw: 1200px;
  --ff-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }

p { color: var(--ink-soft); }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }

ul, ol { padding-left: 1.2em; }
li { margin-bottom: .4em; color: var(--ink-soft); }

::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.eyebrow {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--red); display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
