/* Shared styling for the privacy policy and terms pages. Mirrors the palette and
   type scale of index.html so the legal pages don't feel bolted on. */
:root {
  --brand: #22c55e;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --glow: rgba(34, 197, 94, 0.35);
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f8fafc;
    --muted: #94a3b8;
    --bg: #020617;
    --card: #0f172a;
    --border: #1e293b;
    --glow: rgba(34, 197, 94, 0.25);
  }
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
.aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(600px 400px at 15% -10%, var(--glow), transparent 60%);
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
header { padding: 28px 0; display: flex; align-items: center; gap: 12px; }
header a { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #4ade80, #16a34a);
  color: #fff; font-weight: 800; font-size: 24px; display: grid; place-items: center;
  box-shadow: 0 6px 18px var(--glow);
}
.brand { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.brand em { font-style: normal; color: var(--brand); }
h1 { font-size: clamp(30px, 5vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin: 24px 0 8px; }
h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin: 36px 0 10px; }
h3 { font-size: 17px; font-weight: 700; margin: 22px 0 6px; }
p, li { color: var(--ink); font-size: 16px; }
p { margin: 12px 0; }
ul { margin: 12px 0 12px 22px; }
li { margin: 6px 0; }
a { color: var(--brand); }
.updated { color: var(--muted); font-size: 15px; }
.lede { color: var(--muted); font-size: 18px; margin-top: 8px; }
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { font-weight: 700; white-space: nowrap; }
.callout {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 18px; margin: 20px 0;
}
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
footer {
  text-align: center; color: var(--muted); font-size: 14px;
  padding: 40px 0 56px; margin-top: 48px; border-top: 1px solid var(--border);
}
footer a { color: var(--muted); margin: 0 8px; }
