/* TrackVis legal pages — shared styles */
:root {
  color-scheme: light dark;
  --bg: #fafaf9;
  --text: #1a1918;
  --muted: #57534e;
  --border: #e7e5e4;
  --link: #1a1918;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f0f;
    --text: #f5f5f5;
    --muted: #a3a3a3;
    --border: #2e2e2e;
    --link: #f5f5f5;
  }
}
* { box-sizing: border-box; }
body {
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  padding: 32px 20px 64px;
}
.wrap {
  max-width: 680px;
  margin: 0 auto;
}
header { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.logo { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.02em; }
.logo span { color: var(--muted); font-weight: 400; }
nav { margin-top: 12px; font-size: 0.88rem; }
nav a { color: var(--muted); margin-right: 14px; }
h1 { font-size: 1.75rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.updated { color: var(--muted); font-size: 0.88rem; margin: 0 0 28px; }
h2 { font-size: 1.05rem; font-weight: 600; margin: 28px 0 10px; }
p, li { font-size: 0.95rem; color: var(--text); }
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 1.25rem; }
li { margin-bottom: 6px; }
a { color: var(--link); }
footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.88rem; color: var(--muted); }
