/* Shared styles for app privacy policies — self-contained, no external fonts */
:root {
  --bg: #05050a;
  --fg: #f4f1ea;
  --muted: #a39e94;
  --muted-soft: #6f6a62;
  --surface: #0c0c12;
  --border: #23232e;
  --accent: #ffb454;
  --mint: #5ef0c6;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #faf9f6;
    --fg: #1c1b20;
    --muted: #57534b;
    --muted-soft: #8a857c;
    --surface: #f1efe9;
    --border: #e2dfd6;
    --accent: #9a5f00;
    --mint: #0c7a5c;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 3rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
main { max-width: 42rem; margin: 0 auto; }
.eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
h1 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.meta {
  margin: 0 0 2.25rem;
  font-size: 0.85rem;
  color: var(--muted-soft);
}
h2 {
  margin: 2.25rem 0 0.6rem;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
}
p, ul { margin: 0.6rem 0; color: var(--muted); font-size: 0.95rem; }
li { margin: 0.35rem 0; }
strong { color: var(--fg); font-weight: 600; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
.summary {
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
}
.summary p { margin: 0.4rem 0; }
address { font-style: normal; color: var(--muted); font-size: 0.95rem; }
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted-soft);
}
footer a { color: var(--muted); }
footer a:hover { color: var(--accent); }
