/* Shared styling for ScaledStream legal pages (/privacy, /terms, /data-deletion).
   Matches the marketing site's dark theme. */
:root {
  --bg: #0B0C10;
  --surface: #14161D;
  --text: #F5F6F8;
  --muted: #9CA3AF;
  --border: #262A34;
  --accent: #7C5CFF;
  --live: #FF4D4D;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--text);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 70px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,12,16,0.7); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; color: var(--text); }
.logo:hover { text-decoration: none; }
.mark { position: relative; width: 26px; height: 26px; flex: none; }
.mark::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2.6px solid var(--accent); }
.mark::after { content: ""; position: absolute; inset: 8.6px; border-radius: 50%; background: var(--live); box-shadow: 0 0 10px var(--live); }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; margin-left: 28px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

main { max-width: 780px; margin: 0 auto; padding: 150px 24px 80px; }
main h1 { font-size: clamp(32px, 5vw, 44px); margin-bottom: 10px; }
.meta { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
main h2 { font-size: 24px; margin: 44px 0 14px; }
main h3 { font-size: 18px; margin: 28px 0 10px; }
main p, main li { color: #C7CBD3; font-size: 16px; line-height: 1.7; }
main p { margin-bottom: 14px; }
main ul, main ol { margin: 0 0 14px 24px; }
main li { margin-bottom: 8px; }
main strong { color: var(--text); }
.callout {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 22px; margin: 18px 0;
}
.callout p:last-child { margin-bottom: 0; }
table { width: 100%; border-collapse: collapse; margin: 0 0 14px; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border: 1px solid var(--border); color: #C7CBD3; line-height: 1.5; vertical-align: top; }
th { color: var(--text); background: var(--surface); font-family: 'Space Grotesk'; font-size: 14px; }

footer { padding: 50px 40px; text-align: center; color: var(--muted); font-size: 13px; border-top: 1px solid var(--border); }
footer a { color: var(--muted); }
@media (max-width: 700px) { nav { padding: 0 20px; } .nav-links a { margin-left: 16px; } }
