:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #18212f;
  --muted: #5e6b7c;
  --accent: #3157d5;
  --border: #dfe5ee;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

main {
  width: min(820px, calc(100% - 32px));
  margin: 64px auto;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(20, 32, 55, 0.08);
}

h1, h2 { line-height: 1.25; }
h1 { margin-top: 0; font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { margin-top: 2rem; font-size: 1.3rem; }
p, li { color: var(--muted); }
a { color: var(--accent); }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.notice { padding: 18px 20px; border-left: 4px solid var(--accent); background: #f0f4ff; border-radius: 8px; }
footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); font-size: .95rem; }

@media (max-width: 600px) {
  main { margin: 20px auto; padding: 24px; }
}
