/* Standalone styling for the static legal pages (privacy.html, terms.html).
   Kept in its own file because the site CSP is style-src 'self' — inline
   <style> and style="" attributes are blocked. */
:root {
  --bg: #0b0e14;
  --bg-card: #151c2c;
  --border: #23304a;
  --text: #e6ecf6;
  --text-dim: #8b98b3;
  --accent: #4f8cff;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans', sans-serif;
  --mono: ui-monospace, 'Cascadia Code', 'SF Mono', Consolas, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); line-height: 1.65;
  max-width: 760px; margin: 0 auto; padding: 40px 24px 80px;
}
.brand {
  font-family: var(--mono); font-size: 1.3rem; font-weight: 700;
  text-decoration: none; color: var(--text);
  display: inline-flex; align-items: center; gap: 9px;
}
.brand img { display: block; }
.brand-kry { color: var(--text); }
.brand-vault { color: var(--accent); }
.back { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; }
.back:hover { color: var(--text); }
header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border);
}
h1 { font-size: 1.9rem; letter-spacing: -0.01em; margin-bottom: 6px; }
.updated { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 32px; }
h2 { font-size: 1.15rem; margin: 32px 0 12px; }
p, li { color: var(--text-dim); margin-bottom: 12px; }
ul { padding-left: 22px; }
strong { color: var(--text); }
a { color: var(--accent); }
.note {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; margin: 24px 0;
}
.note p { margin-bottom: 0; }
footer {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.85rem;
}
