/* Shared dark legal pages stylesheet — coherent with landing */
:root {
  --bg: #08090a;
  --bg-alt: #0f1421;
  --text: #e6e6e6;
  --text-muted: rgba(230, 230, 230, 0.65);
  --border: rgba(230, 230, 230, 0.12);
  --accent: #e6e6e6;
  --primary: #3B82F6;
  --primary-light: #60A5FA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--bg); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.legal-nav {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.legal-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}
.legal-nav__brand img { width: 32px; height: 32px; }
.legal-nav__brand span { letter-spacing: -0.02em; }
.legal-nav__brand .highlight { color: var(--primary-light); }

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--text); }

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.85rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
h2:first-of-type { border-top: none; padding-top: 0; }
h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
  font-weight: 600;
}
p, li {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text);
}
ul, ol { padding-left: 1.5rem; }
ul li, ol li { color: var(--text-muted); }
ul li strong, ol li strong { color: var(--text); }
.date {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  display: inline-block;
}
a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--text); text-decoration: underline; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
  background: var(--bg-alt);
}
th, td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
}
th { background: rgba(255,255,255,0.04); font-weight: 600; color: var(--text); }
td { color: var(--text-muted); }

.legal-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.legal-footer a { margin: 0 0.5rem; }
