/* ============================================================================
   Tovak — legal pages (privacy / terms). Brand typography, light, readable.
   Pairs with components.css for the shared nav + footer.
   ========================================================================== */
@font-face { font-family: "Grifter"; src: url("/fonts/Grifter-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-Variable.ttf") format("truetype"); font-weight: 300 900; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-VariableItalic.ttf") format("truetype"); font-weight: 300 900; font-style: italic; font-display: swap; }

:root {
  --brand: #000092;
  --brand-2: #2a2ce0;
  --brand-tint: #eef0ff;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --ink: #0a0c1b;
  --body: #3b4054;
  --muted: #6b7186;
  --line: #e7e9f2;
  --line-2: #d7dae8;
  --gutter: clamp(20px, 5vw, 48px);
  --btn-radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(10, 12, 27, 0.04), 0 12px 32px -16px rgba(10, 12, 27, 0.12);

  /* shared component theme (nav2 + bf) — light */
  --nav-chip-bg: #0a0a1e; --nav-chip-border: transparent; --nav-chip-logo: #fff;
  --nav-pill-bg: #fff; --nav-pill-border: var(--line); --nav-pill-text: var(--ink);
  --nav-pill-hover: var(--brand); --nav-pill-shadow: var(--shadow);
  --nav-cta-bg: var(--brand); --nav-cta-text: #fff; --nav-cta-shadow: 0 8px 20px -8px rgba(0, 0, 146, 0.5);
  --bf-bg: #0a0a1e; --bf-head: #888dca; --bf-text: #c9cce6; --bf-dim: #565b86;
  --bf-line: rgba(255, 255, 255, 0.10); --bf-blue: #2733e0; --bf-link: #e6e8f5; --bf-link-hover: #fff;
  --bf-wordmark: #4a4fc4; --bf-btn-bg: #fff; --bf-btn-text: #0a0a1e;
  --bf-solico-bg: rgba(39, 51, 224, 0.20); --bf-solico-fill: #aeb4ff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--body);
  font-family: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

/* ---- content ---- */
.wrap {
  max-width: 760px; margin: 0 auto;
  padding: clamp(120px, 15vh, 168px) var(--gutter) clamp(64px, 9vh, 110px);
}
.wrap h1 {
  font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.01em; margin-bottom: 14px;
}
.wrap h2 {
  font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.1; margin: 44px 0 14px;
}
.wrap h3 { font-weight: 700; color: var(--ink); font-size: 1.05rem; margin: 26px 0 8px; }
.wrap p { margin-bottom: 16px; color: var(--body); }
.wrap ul { margin: 0 0 18px 0; padding-left: 22px; }
.wrap li { margin-bottom: 9px; color: var(--body); }
.wrap strong { color: var(--ink); font-weight: 700; }
.wrap .meta, .wrap .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.note {
  background: var(--brand-tint); border: 1px solid #dfe2ff; border-radius: 14px;
  padding: 20px 22px; margin: 28px 0; color: var(--body);
}
.note p:last-child { margin-bottom: 0; }
.backlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-top: 28px; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* old in-content brand logo replaced by nav2 */
.brand { display: none; }
