/* Frindz AI — gemeinsame Styles für Rechtsseiten (Impressum, Datenschutz, AGB) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #050505;
  --glass-border: rgba(255,255,255,0.06);
  --glass-border-hover: rgba(255,255,255,0.12);
  --accent: #0D9488;
  --text: #ffffff;
  --text-secondary: rgba(255,255,255,0.66);
  --text-muted: rgba(255,255,255,0.4);
  --radius-lg: 1.5rem;
  --ease: cubic-bezier(0.32,0.72,0,1);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
::selection { background: var(--accent); color: #fff; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 40;
  display: flex; align-items: center; gap: 2rem; padding: 0.65rem 1.5rem; border-radius: 9999px;
  background: rgba(10,10,15,0.7); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border); width: max-content; max-width: calc(100vw - 2rem);
}
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--text); letter-spacing: -0.02em; white-space: nowrap; }
.nav-logo:hover { text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.8rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta { padding: 0.5rem 1.25rem; border-radius: 9999px; background: var(--accent); color: #fff; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
.nav-cta:hover { background: #0f766e; text-decoration: none; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ===== LAYOUT ===== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 9rem 1.5rem 5rem; }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal-back:hover { color: var(--text); text-decoration: none; }
.legal h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.legal .updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(1.2rem, 3vw, 1.55rem); letter-spacing: -0.01em; margin: 2.25rem 0 0.85rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); }
.legal h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.02rem; margin: 1.4rem 0 0.5rem; color: var(--text); }
.legal p, .legal li { color: var(--text-secondary); font-size: 0.97rem; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal strong { color: var(--text); font-weight: 600; }
.legal address { font-style: normal; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.legal .note { background: rgba(13,148,136,0.06); border: 1px solid rgba(13,148,136,0.18); border-radius: var(--radius-lg); padding: 1rem 1.25rem; font-size: 0.9rem; color: var(--text-secondary); margin: 1.5rem 0; }

/* ===== FOOTER ===== */
.footer { padding: 3rem 0; border-top: 1px solid var(--glass-border); }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { width: 100%; text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 600px) { .footer-inner { flex-direction: column; text-align: center; } }
