/* Ask Arkie — privacy policy page (standalone; CSP default-src 'none' blocks inline <style>) */
:root {
  --bg: #080b10;
  --card: #141c28;
  --border: #1e2d3f;
  --text: #dde1e7;
  --text-muted: #8d96a3;
  --heading: #f3f5f9;
  --teal: #4eecc8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
.nav { padding: 1.25rem; max-width: 980px; margin: 0 auto; }
.nav a { color: var(--text-muted); font-size: .85rem; font-weight: 500; }
.nav a:hover { color: var(--text); text-decoration: none; }
.wrap { max-width: 820px; margin: 2rem auto 5rem; padding: 0 1.25rem; }
.brand { font-size: .82rem; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
h1 { font-size: 2.25rem; line-height: 1.2; color: var(--heading); margin: 0 0 .5rem; font-weight: 600; letter-spacing: -.01em; }
h2 { font-size: 1.35rem; color: var(--heading); margin: 2.5rem 0 .75rem; font-weight: 600; }
h3 { font-size: 1.05rem; color: var(--heading); margin: 1.5rem 0 .5rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text); margin: 0 0 1rem; }
ul, ol { padding-left: 1.4rem; margin: 0 0 1rem; }
li { margin-bottom: .4rem; }
.last-updated { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.callout { background: rgba(78,236,200,.06); border: 1px solid var(--teal); border-radius: 12px; padding: 1.1rem 1.4rem; margin: 1.5rem 0 2rem; }
.callout p { margin: 0; }
.toc { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; margin: 2rem 0 3rem; }
.toc h2 { margin: 0 0 .75rem; font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.toc ol { margin: 0; columns: 2; column-gap: 1.5rem; padding-left: 1.2rem; }
.toc li { font-size: .92rem; }
.table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border: 1px solid var(--border); border-radius: 10px; }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .93rem; }
th, td { padding: .75rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
th { background: var(--card); color: var(--heading); font-weight: 600; }
tr:last-child td { border-bottom: none; }
.footer-link { display: inline-block; margin-top: 2rem; color: var(--text-muted); font-size: .9rem; }
@media (max-width: 640px) {
  .toc ol { columns: 1; }
  h1 { font-size: 1.75rem; }
}
