/* Shared styling for the public static legal pages (served at /legal/*).
   Kept standalone — these pages live OUTSIDE the React SPA so they stay
   publicly reachable even when the app is password-gated pre-launch. */
:root {
  --bg: #0a0a14;
  --text: #cbd5e1;
  --heading: #ffffff;
  --muted: #94a3b8;
  --link: #22d3ee;
  --link-hover: #67e8f9;
  --accent: #d946ef;
  --border: #1e293b;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.65;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 44px 20px 80px; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: #fff; text-decoration: none;
  font-size: 18px; margin-bottom: 28px;
}
.brand:hover { color: #fff; text-decoration: none; }
h1 {
  font-size: 2.2rem; line-height: 1.1; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 6px;
  background: linear-gradient(90deg, #6366f1, #d946ef);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h2 { color: var(--heading); font-size: 1.2rem; font-weight: 700; margin: 32px 0 10px; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); font-size: 0.9rem; }
ul { margin: 0 0 14px; padding: 0; list-style: none; }
li { position: relative; padding-left: 18px; margin-bottom: 7px; }
li::before { content: "\2022"; position: absolute; left: 0; color: var(--accent); }
strong { color: #fff; }
footer {
  margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.85rem;
}
footer a { color: var(--muted); }
