/* NativeFlow AI — Legal pages */
:root {
  --bg: #04060f;
  --card: #0a0f24;
  --text: #f5f7ff;
  --muted: #94a0c4;
  --primary: #6c63ff;
  --cyan: #00d4ff;
  --border: rgba(255, 255, 255, 0.09);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.top-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.top-bar a.brand { font-weight: 800; color: var(--text); text-decoration: none; }
.top-bar a.home { color: var(--cyan); font-size: 0.9rem; text-decoration: none; }
h1 { font-size: 1.75rem; margin: 0 0 0.5rem; }
.meta { color: var(--muted); font-size: 0.9rem; }
nav.legal-nav { margin-top: 1rem; font-size: 0.9rem; }
nav.legal-nav a { margin-right: 1rem; color: var(--cyan); text-decoration: none; }
h2 { font-size: 1.12rem; margin: 2rem 0 0.75rem; color: var(--primary); }
p, li { color: #d0d8ef; }
a { color: var(--cyan); }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
th, td { border: 1px solid var(--border); padding: 0.5rem 0.75rem; text-align: left; }
th { background: var(--card); }
footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }
