/* Shared styles for Impressum / Datenschutz / AGB pages */
:root {
  --navy:    #0A1628;
  --navy2:   #0D1F3C;
  --blue:    #1A6FE8;
  --blue2:   #2E8BFF;
  --text:    #F0F4FF;
  --muted:   rgba(240,244,255,0.55);
  --line:    rgba(26,111,232,0.15);
  --copy-fade: rgba(240,244,255,0.3);
  --nav-bg: rgba(10,22,40,0.95);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav.legal-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 0 60px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: flex; align-items: baseline; gap: 0; text-decoration: none; line-height: 1; }
.nav-logo .vega { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: 1px; }
.nav-logo .dot { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue2); }
.nav-logo .worddesign { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 300; color: var(--text); opacity: 0.85; }
.legal-back {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue2); text-decoration: none;
  border: 1px solid var(--blue); padding: 9px 22px;
  transition: all 0.3s;
}
.legal-back:hover { background: var(--blue); color: white; }

/* ── HEADER ── */
.legal-header {
  padding: 140px 60px 60px;
  max-width: 900px; margin: 0 auto; width: 100%;
}
.legal-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue2); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.legal-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--blue2);
}
.legal-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.legal-header h1 em {
  font-style: normal; color: var(--blue2);
}
.legal-date {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ── CONTENT ── */
.legal-wrap {
  max-width: 900px; margin: 0 auto; width: 100%;
  padding: 40px 60px 120px;
  flex: 1;
}
.legal-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p {
  font-size: 15px; color: var(--muted); line-height: 1.85;
  margin-bottom: 14px; white-space: pre-line;
}
.legal-wrap ul {
  list-style: none; padding: 0; margin: 0 0 14px;
}
.legal-wrap ul li {
  position: relative; padding-left: 22px;
  font-size: 15px; color: var(--muted); line-height: 1.85;
  margin-bottom: 8px;
}
.legal-wrap ul li::before {
  content: '→'; position: absolute; left: 0; top: 0;
  color: var(--blue2); font-weight: 500;
}
.legal-wrap a {
  color: var(--blue2); text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}
.legal-wrap a:hover { border-bottom-color: var(--blue2); }
.legal-wrap strong { color: var(--text); font-weight: 500; }

/* ── FOOTER ── */
.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--navy2);
  padding: 32px 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.legal-footer-links {
  display: flex; gap: 24px; list-style: none;
}
.legal-footer-links a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.legal-footer-links a:hover { color: var(--blue2); }
.legal-footer-links a.active { color: var(--blue2); }
.legal-footer-copy { font-size: 11px; color: var(--copy-fade); letter-spacing: 1px; }

@media (max-width: 768px) {
  nav.legal-nav { padding: 0 24px; }
  .legal-header { padding: 100px 24px 40px; }
  .legal-wrap { padding: 24px 24px 80px; }
  .legal-footer { padding: 24px; flex-direction: column; text-align: center; }
}
