/* Styling for the CI-rendered privacy policy page (docs/privacy-policy.md ->
   privacy.html via pandoc). Palette mirrors web/delete-account/index.html so the
   two public pages feel like one site. Light/dark by system preference. */
:root {
  color-scheme: light dark;
  --bg: #faf9f7;
  --surface: #ffffff;
  --text: #1c1b1a;
  --muted: #6b6862;
  --border: #e2dfda;
  --accent: #3d5a3d;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161514;
    --surface: #201f1d;
    --text: #ece9e4;
    --muted: #a5a09a;
    --border: #37342f;
    --accent: #9dbd9d;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
h1 { font-size: 1.7rem; line-height: 1.25; margin: 0 0 1rem; }
h2 { font-size: 1.15rem; margin: 2.2rem 0 .6rem; }
h3 { font-size: 1rem; margin: 1.6rem 0 .5rem; color: var(--muted); }
p, li { color: var(--text); }
a { color: var(--accent); }
strong { font-weight: 600; }
ul { padding-left: 1.2rem; }
li { margin: .25rem 0; }
hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
/* The effective-date line pandoc emits as the first bold paragraph. */
.date { color: var(--muted); }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  display: block;
  overflow-x: auto;
}
th, td {
  border: 1px solid var(--border);
  padding: .5rem .6rem;
  text-align: left;
  vertical-align: top;
}
th { background: var(--surface); }
code {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .05rem .3rem;
  font-size: .9em;
}
