/* ============================
   PAGE HEADER (shared)
   ============================ */
.page-header {
  padding: 8rem 3rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at top right, rgba(0,245,195,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-inner {
  max-width: 700px;
  animation: fadeUp 0.8s ease both;
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0;
}

/* ============================
   LEGAL MAIN
   ============================ */
.legal-main {
  padding: 5rem 3rem 6rem;
}

.legal-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ============================
   LEGAL SECTION
   ============================ */
.legal-section h2 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.legal-section p {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--fg-muted);
  margin-bottom: 0.9rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-section ul li {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}

.legal-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.6;
  font-size: 0.75rem;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,245,195,0.3);
  transition: border-color 0.2s;
}

.legal-section a:hover {
  border-color: var(--accent);
}

.legal-date {
  font-size: 0.7rem !important;
  color: rgba(232,234,242,0.25) !important;
  letter-spacing: 0.08em;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .page-header { padding: 7rem 1.5rem 2rem; }
  .legal-main  { padding: 3rem 1.5rem 4rem; }
}
