:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5d677a;
  --line: #dfe5ee;
  --panel: #ffffff;
  --bg: #f6f8fb;
  --accent: #0b63ce;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 82px);
  line-height: .95;
}

.lead {
  max-width: 760px;
  margin: 24px 0 36px;
  color: var(--muted);
  font-size: 22px;
}

section {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

section p {
  margin: 0;
  color: var(--muted);
}
