.legal-page {
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 1;
  min-height: 80vh;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.legal-page h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.legal-page p {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 750px;
}

.legal-page ul {
  list-style: none;
  margin-bottom: 1rem;
  max-width: 750px;
}

.legal-page li {
  color: var(--text-dim);
  line-height: 1.8;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.legal-page li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 4px;
  height: 4px;
  background: var(--accent);
}

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

.legal-page a:hover { opacity: 0.8; }

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