/* GEHALTSATLAS — Legal-Page Styles (Impressum, Datenschutz, 404) */

.legal-page {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  background: #fff;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.legal-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

.legal-section {
  margin-bottom: 32px;
}
.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-section p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--polar-blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-section a:hover { color: var(--polar-blue-dark); }
.legal-section ul {
  margin: 8px 0 16px 24px;
  list-style: disc;
}
.legal-section ul li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.legal-section strong { color: var(--ink-900); }

/* ============ 404 PAGE ============ */
.error-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A0F1A 0%, #0F1828 50%, #1A2438 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(74, 158, 255, .12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(28, 90, 168, .15), transparent 55%);
  pointer-events: none;
}
.error-content {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.error-star {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 24px rgba(74, 158, 255, .35));
}
.error-code {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 600;
  color: var(--polar-accent);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.error-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.error-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  margin-bottom: 32px;
}
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
