/* Privacy policy page styling (privacy.html).
 * Kept as its own file rather than an inline <style> block: the site's CSP
 * sets style-src with no 'unsafe-inline', so an inline block would be
 * silently dropped by the browser.
 *
 * Matches the signed-in app's own palette so this reads as the same
 * product, NOT login.html's separate photo-backdrop theme (that one's kept
 * exclusive to the login screen). Palette values are copied here rather
 * than linked, since this page has to render for signed-out visitors and
 * store reviewers. */
:root {
  color-scheme: dark;
  --bg: #1a1b1e;
  --card: #26282d;
  --text: #e8eaed;
  --muted: #9aa0a6;
  --border: #34373d;
  --border-subtle: #2a2d33;
  --link: #85b5ff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
main {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-6) var(--s-5) 80px;
}
h1 { font-size: 1.4rem; font-weight: 650; margin: 0 0 4px; }
.updated { color: var(--muted); font-size: .9rem; margin: 0 0 var(--s-6); }
h2 {
  font-size: 1.05rem;
  font-weight: 650;
  margin: var(--s-6) 0 var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-subtle);
}
h2:first-of-type { border-top: none; padding-top: 0; }
p, li { color: var(--text); }
ul { padding-left: 22px; }
li { margin-bottom: var(--s-2); }
.muted { color: var(--muted); }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1px 5px;
  font-size: .9em;
}
.card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  margin: var(--s-4) 0;
  box-shadow: var(--shadow-1);
}
