:root {
  --bg: #10141c;
  --card: #171d28;
  --line: #232b3a;
  --text: #e6eaf2;
  --muted: #9aa5b8;
  --accent: #5aa0ff;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f8fa; --card: #fff; --line: #e3e7ee;
    --text: #161a22; --muted: #5c6678; --accent: #1f6fe0;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  padding: 0 20px;
}
main { max-width: 44rem; margin: 0 auto; padding: 64px 0 96px; }
header { border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 36px; }
.eyebrow {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin: 0 0 6px;
}
h1 { font-size: 30px; line-height: 1.2; margin: 0 0 8px; letter-spacing: -.02em; }
h2 {
  font-size: 19px; margin: 40px 0 10px; letter-spacing: -.01em;
  padding-top: 20px; border-top: 1px solid var(--line);
}
h2:first-of-type { border-top: 0; padding-top: 0; }
p, li { color: var(--text); }
.lede { font-size: 19px; color: var(--muted); margin: 0; }
.muted { color: var(--muted); }
strong { font-weight: 600; }
a { color: var(--accent); }
ul { padding-left: 1.1rem; }
li { margin: 6px 0; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 20px; margin: 22px 0;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
footer {
  margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14px;
}
footer a { color: var(--muted); }
