/* Aurorecall legal pages - shared styles */
:root {
  --bg: #0b0814;
  --bg-elevated: #16111f;
  --accent: #9b7bd4;
  --accent-bright: #b495e8;
  --text: #ece8f0;
  --text-muted: #8d869a;
  --text-dim: #5a566a;
  --border: #2a2240;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

body {
  padding: 40px 24px 80px;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.back-link:hover { color: var(--text); }

.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 60px;
  text-align: center;
}

h1.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.effective-date {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h2:first-of-type { margin-top: 0; }

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

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

p strong, li strong {
  color: var(--text);
  font-weight: 500;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li { margin-bottom: 8px; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--accent-bright); }

.summary {
  background: var(--bg-elevated);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.summary strong { color: var(--text); }

.footer-legal {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
}

.footer-legal a {
  color: var(--text-dim);
}

.footer-legal a:hover { color: var(--text-muted); }

.footer-legal-price { color: var(--text-dim); }

@media (max-width: 600px) {
  body { padding: 32px 20px 60px; }
  h1.page-title { font-size: 30px; }
  h2 { font-size: 22px; }
  p, li { font-size: 14px; }
}
