/* ── LEGAL PAGES ─────────────────────────── */

.legal {
  padding: 140px 0 120px;
}

.legal .container {
  max-width: 720px;
}

.legal-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cardBorder);
}

.legal-header .marker {
  margin-bottom: 16px;
}

.legal-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--dimSilver);
  text-transform: uppercase;
}

/* ── BODY ── */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--cardBorder);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.legal-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  margin: 24px 0 10px;
  letter-spacing: 0.2px;
}

.legal-section p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-section strong {
  color: #fff;
  font-weight: 600;
}

.legal-section a {
  color: var(--neonLime);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 255, 0, 0.3);
  transition: border-color 0.2s;
}

.legal-section a:hover {
  border-color: var(--neonLime);
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--neonLime);
  font-family: var(--font-mono);
  font-size: 12px;
  top: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .legal {
    padding: 100px 0 80px;
  }

  .legal-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }

  .legal-section {
    padding: 28px 0;
  }
}
