/* Minimal, readable defaults. Replace with your real design system — these
   styles only exist so /privacy and /support are presentable on day one. */
:root {
  --bg: #0b1220;
  --panel: #121a2b;
  --fg: #e8eef9;
  --muted: #9fb0c9;
  --accent: #5b8cff;
  --max: 760px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}
.brand { font-weight: 700; font-size: 1.15rem; color: var(--fg); }
.site-header nav a { margin-left: 1rem; color: var(--muted); }

.content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.content h1 { font-size: 2rem; line-height: 1.2; margin: 0.5rem 0 1rem; }
.content h2 { margin-top: 2rem; }
.content code { background: var(--panel); padding: 0.1em 0.35em; border-radius: 4px; }
.content hr { border: none; border-top: 1px solid #25324a; margin: 2rem 0; }

.hero { text-align: center; padding: 3rem 0 1rem; }
.hero p.tagline { color: var(--muted); font-size: 1.2rem; max-width: 32rem; margin: 0.5rem auto 0; }
.note {
  background: var(--panel);
  border: 1px dashed #2c3a57;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: var(--muted);
  margin-top: 2rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  color: var(--muted);
  border-top: 1px solid #1b2740;
  font-size: 0.9rem;
}
