/* Options Drill — Privacy Policy page. External stylesheet (no inline styles; strict CSP). */
/* mezcal-night design tokens (copied from static/index.html :root) */
:root {
  --bg: #0B0F14;
  --fg: #E9E3D7;
  --accent: #5FA8D3;
  --accent2: #D07A4B;
  --muted: #0F1620;
  --muted-text: #A79F92;
  --border: rgba(233, 227, 215, 0.16);
  --success: #276124;
  --danger: #B0302F;
  --highlight: #EB8F2C;
  --brand-pop: #B0367F;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #8CC7E8; text-decoration: underline; }

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 72px;
  width: 100%;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.back-link:hover { color: #8CC7E8; text-decoration: underline; }

.legal h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}

.updated {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  margin: 36px 0 12px;
}

.legal p {
  color: var(--muted-text);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--fg);
}

.disclaimer {
  background: var(--muted);
  border-left: 3px solid var(--muted-text);
  padding: 0.9rem 1.15rem;
  margin: 40px 0 0;
  border-radius: 0 0.4rem 0.4rem 0;
  font-size: 0.82rem;
  color: var(--muted-text);
  line-height: 1.55;
}
.disclaimer strong { color: var(--fg); }

@media (max-width: 600px) {
  .legal { padding: 40px 16px 48px; }
}
