/* Shared styles for privacy / terms pages — mirrors index tokens. */
:root {
  --bg: #eceff4;
  --glass: rgba(255, 255, 255, 0.72);
  --hairline: rgba(12, 22, 44, 0.10);
  --text-1: #0b1120;
  --text-2: #43506a;
  --text-3: #7a869e;
  --azure: #2f63ea;
  --font-display: -apple-system, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --maxw: 720px;
  --pad: clamp(20px, 5vw, 48px);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #06070B;
    --glass: rgba(18, 22, 32, 0.72);
    --hairline: rgba(255, 255, 255, 0.10);
    --text-1: #f2f5fb;
    --text-2: #a8b3c7;
    --text-3: #6b758a;
    --azure: #4C8DFF;
  }
}
html[data-theme="dark"] {
  --bg: #06070B;
  --glass: rgba(18, 22, 32, 0.72);
  --hairline: rgba(255, 255, 255, 0.10);
  --text-1: #f2f5fb;
  --text-2: #a8b3c7;
  --text-3: #6b758a;
  --azure: #4C8DFF;
}
html[data-theme="light"] {
  --bg: #eceff4;
  --glass: rgba(255, 255, 255, 0.72);
  --hairline: rgba(12, 22, 44, 0.10);
  --text-1: #0b1120;
  --text-2: #43506a;
  --text-3: #7a869e;
  --azure: #2f63ea;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--azure); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: calc(var(--maxw) + 2 * var(--pad)); margin: 0 auto; padding: 1.5rem var(--pad) 4rem; }
.top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 0 2rem; border-bottom: 1px solid var(--hairline); margin-bottom: 2rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; color: var(--text-1);
  text-decoration: none;
}
.brand svg { width: 28px; height: 28px; }
.brand:hover { text-decoration: none; }
.nav a { color: var(--text-2); margin-left: 1.1rem; font-size: 0.92rem; }
h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem); letter-spacing: -0.02em; margin: 0 0 0.35rem; }
.meta { color: var(--text-3); font-size: 0.9rem; margin: 0 0 2rem; }
h2 { font-size: 1.15rem; margin: 2rem 0 0.6rem; }
p, li { color: var(--text-2); }
ul { padding-left: 1.2rem; }
.foot-note { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline); color: var(--text-3); font-size: 0.85rem; }
