/* ══════════════════════════════════════
   Legal pages (Privacy, Terms)
   Shared styling for long-form legal content.
   Inherits tokens from styles.css.
   ══════════════════════════════════════ */

.legal-hero {
  padding: 140px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,67,147,.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(249,115,22,.06) 0%, transparent 60%);
  pointer-events: none;
}
.legal-hero .container { position: relative; }
.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  line-height: 1.15; color: var(--n-white);
  letter-spacing: -.02em; margin-bottom: 14px;
}
.legal-hero h1 .accent {
  background: linear-gradient(135deg, #E84393, #FF6B9D);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-effective {
  display: inline-block;
  padding: 6px 16px; border-radius: 50px;
  background: var(--n-pink-bg); border: 1px solid rgba(232,67,147,.2);
  color: var(--n-pink-lt);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}

.legal-body {
  padding: 40px 24px 90px;
}
.legal-body .container { max-width: 860px; }

.legal-card {
  background: var(--n-card);
  border: 1px solid var(--n-border-lt);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.legal-section + .legal-section { margin-top: 36px; }

.legal-section h2 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--n-white);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.legal-section h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--n-white);
  margin: 22px 0 10px;
}
.legal-section h4 {
  font-size: .92rem; font-weight: 600;
  color: var(--n-pink-lt);
  margin: 18px 0 8px;
  text-transform: uppercase; letter-spacing: .04em;
}
.legal-section p {
  color: var(--n-text-dim);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
}
.legal-section li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--n-text-dim);
  font-size: .95rem;
  line-height: 1.7;
}
.legal-section li::before {
  content: ''; position: absolute;
  left: 4px; top: 16px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--n-pink);
  box-shadow: 0 0 8px rgba(232,67,147,.5);
}
.legal-section a {
  color: var(--n-pink-lt);
  border-bottom: 1px solid rgba(232,67,147,.3);
  transition: color .2s, border-color .2s;
}
.legal-section a:hover {
  color: #FF85B1;
  border-bottom-color: var(--n-pink);
}

@media (max-width: 600px) {
  .legal-hero { padding: 120px 24px 40px; }
  .legal-section h2 { font-size: 1.1rem; }
}
