/* ============================================================
   PRIVACY POLICY — simple legal page
   Background/type come from /_shared/shared.css (#121212 body).
   ============================================================ */

.legal-hero {
  padding: 160px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-hero__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kc-cyan-500);
  margin-bottom: 14px;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #fff;
}
.legal-hero__updated {
  font-size: 13px;
  opacity: 0.5;
  margin: 0;
}

.legal {
  padding: 64px 0 120px;
}
.legal__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

.legal__toc {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.legal__toc-title {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.legal__toc a {
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
  transition: color .15s;
}
.legal__toc a:hover { color: var(--kc-cyan-500); }

.legal__content { max-width: 760px; }
.legal__content section { margin-bottom: 48px; scroll-margin-top: 100px; }
.legal__content section:last-child { margin-bottom: 0; }

.legal__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
}
.legal__content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin: 0 0 16px;
}
.legal__content p:last-child { margin-bottom: 0; }
.legal__content ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__content li {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  list-style: disc;
}
.legal__content strong { color: #fff; font-weight: 700; }
.legal__content a {
  color: var(--kc-cyan-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__content a:hover { color: var(--kc-cyan-200); }

@media (max-width: 860px) {
  .legal__inner { grid-template-columns: 1fr; gap: 32px; }
  .legal__toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 20px;
    gap: 8px 16px;
  }
  .legal__toc-title { width: 100%; }
}
