:root {
  color-scheme: dark;
  --bg: #030305;
  --line: #242638;
  --text: #f4f4f8;
  --secondary: #b8bacb;
  --muted: #8b8ea3;
  --accent: #a78bfa;
  --cyan: #22d3ee;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(ellipse at 15% -10%, rgba(124, 58, 237, 0.2), transparent 34rem),
    radial-gradient(ellipse at 90% 5%, rgba(34, 211, 238, 0.08), transparent 28rem),
    var(--bg);
  font: 15px/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent); text-underline-offset: 3px; }
a:hover, a:focus-visible { color: #c4b5fd; }
a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 3px; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(3, 3, 5, 0.82); }
.site-header-inner, .legal-shell, .site-footer {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { color: var(--text); font-weight: 800; letter-spacing: -0.025em; text-decoration: none; }
.brand span { color: var(--accent); }
.site-nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.legal-shell { padding-block: clamp(48px, 8vw, 88px); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 { max-width: 14ch; margin: 0; font-size: clamp(38px, 8vw, 68px); line-height: 1.02; letter-spacing: -0.055em; }
.lede { max-width: 66ch; margin: 24px 0 0; color: var(--secondary); font-size: clamp(17px, 2.5vw, 20px); }
.updated { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.legal-card {
  margin-top: 44px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(20, 21, 30, 0.94), rgba(8, 8, 12, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 24px 70px rgba(0,0,0,0.28);
}
.legal-card section + section { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }
h2 { margin: 0 0 12px; font-size: 21px; letter-spacing: -0.025em; }
p, ul { margin: 0 0 14px; color: var(--secondary); }
ul { padding-left: 22px; }
li + li { margin-top: 7px; }
strong { color: var(--text); }
.callout {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 12px;
  color: var(--secondary);
  background: rgba(34, 211, 238, 0.06);
}
.callback-card { max-width: 650px; text-align: center; }
.callback-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 18px;
  color: var(--accent);
  background: rgba(124, 58, 237, 0.12);
  font-size: 28px;
  font-weight: 800;
}
.callback-card h1 { max-width: none; font-size: clamp(32px, 6vw, 50px); }
.callback-card .lede { margin-inline: auto; }
.callback-card .site-nav { justify-content: center; margin-top: 28px; }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-block: 26px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 560px) {
  .site-header-inner { align-items: flex-start; flex-direction: column; padding-block: 17px; }
  .legal-shell { width: min(100% - 28px, 820px); }
  .legal-card { border-radius: 16px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
