/* Legal / policy pages */

.legal-page main {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--cyan);
}

.legal-back::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.legal-doc h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.legal-effective {
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 20px;
}

.legal-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 32px;
}

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

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.legal-section p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.site-footer .footer-legal {
  margin: 0 0 12px;
}

.site-footer .footer-legal a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.site-footer .footer-legal a:hover {
  color: var(--cyan);
}

.site-header .brand[href="/"],
.site-header .brand[href="../"],
.site-header .brand[href="./"] {
  text-decoration: none;
}
