/* TOFKAP legal pages — privacy.html, terms.html
   Black background (inherits from styles.css --bg), readable prose column,
   acid-green accents on headings + links. Intentionally plain. */

.legal {
  padding: 80px 0 120px;
  background: var(--bg);
  color: var(--ink);
}

.legal-container {
  width: min(720px, 92%);
  margin: 0 auto;
  font-family: var(--f-mono);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
}

.legal-back {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  margin-bottom: 32px;
}
.legal-back:hover {
  border-bottom-color: var(--acid);
}

.legal h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}

.legal-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin: 0 0 48px;
}

.legal h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin: 48px 0 16px;
  color: var(--acid);
  border-top: 1px solid rgba(180, 255, 57, 0.22);
  padding-top: 28px;
}

.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal p {
  margin: 0 0 18px;
  color: var(--ink);
}

.legal b, .legal strong {
  color: var(--acid);
  font-weight: 700;
}

.legal ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 10px;
}

.legal li::marker {
  color: var(--acid);
}

.legal a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal a:hover {
  background: var(--acid);
  color: var(--acid-ink);
  text-decoration: none;
}

/* Footer: make the privacy/terms links legible */
.footer-legal a {
  color: var(--ink);
  opacity: 0.7;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.footer-legal a:hover {
  color: var(--acid);
  opacity: 1;
  border-bottom-color: var(--acid);
}

@media (max-width: 520px) {
  .legal { padding: 56px 0 80px; }
  .legal-container { font-size: 14.5px; line-height: 1.7; }
  .legal h2 { font-size: 18px; margin-top: 40px; padding-top: 22px; }
}
