/* Shared legal page styles */
:root {
  --orange: #ff6b35;
  --orange-light: #ff8c61;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --text: #f0ede8;
  --text-muted: #888;
  --text-dim: #555;
  --border: rgba(255,255,255,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.nav-back {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.legal-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

p, li {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

li { margin-bottom: 6px; }

a {
  color: var(--orange);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

strong { color: var(--text); font-weight: 600; }

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .legal-container { padding: 40px 20px 80px; }
}
