.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 60px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.03em;
}

.legal-body {
  max-width: 800px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-section h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--text);
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.legal-section a {
  color: var(--primary);
  transition: color 0.3s;
}

.legal-section a:hover {
  color: var(--accent-cyan);
}

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