/* Shared legal page styles */
:root {
  --bg: #0c0b10;
  --hairline: #25232e;
  --text: #f6f4f8;
  --muted: #a8a3b8;
  --accent: #ff7a59;
  --max: 680px;
}

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

html {
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
}

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

a:hover {
  text-decoration: underline;
}

.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.legal__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline);
}

.legal__back {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal__back:hover {
  color: var(--text);
  text-decoration: none;
}

.legal h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.legal__updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.legal h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 1.5rem 0 0.65rem;
}

.legal p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal ul {
  list-style: none;
  margin-bottom: 0.75rem;
}

.legal li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.legal li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.legal__footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
