/* ─── Reset & Tokens ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #09090F;
  color: #F9FAFB;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
  --bg:          #09090F;
  --surface:     #12121F;
  --surface-2:   #1C1C2E;
  --surface-3:   #252540;
  --text:        #F9FAFB;
  --text-2:      #9CA3AF;
  --muted:       #6B7280;

  --nightlife:   #8B5CF6;
  --day:         #0EA5E9;
  --family:      #FB923C;
  --accent:      #10B981;
  --secondary:   #EC4899;
}

/* ─── Layout helpers ────────────────────────────────────────────────────── */
section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Top-Nav ───────────────────────────────────────────────────────────── */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.topnav__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 18px;
}
.topnav__brand img { width: 32px; height: 32px; border-radius: 8px; }
.topnav__links { display: flex; align-items: center; gap: 22px; }
.topnav__links a {
  color: var(--text-2);
  font-size: 14px; font-weight: 500;
  transition: color .15s ease;
}
.topnav__links a:hover { color: var(--text); }
.topnav__links .lang {
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px; border-radius: 8px;
  font-weight: 700; font-size: 12px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(139,92,246,.18), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(14,165,233,.12), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(251,146,60,.10), transparent 60%);
  z-index: -1;
}
.hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
}
.hero__badge {
  display: inline-block;
  background: rgba(139,92,246,.18);
  color: #C4B5FD;
  border: 1px solid rgba(139,92,246,.4);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero__title-accent {
  background: linear-gradient(120deg, var(--nightlife), var(--secondary), var(--family));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__sub strong { color: var(--text); font-weight: 700; }

.hero__waitlist {
  margin-top: 36px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.hero__waitlist input {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
}
.hero__waitlist input:focus {
  outline: none;
  border-color: var(--nightlife);
  box-shadow: 0 0 0 3px rgba(139,92,246,.2);
}
.hero__waitlist button {
  padding: 14px 22px;
  background: var(--nightlife);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  transition: transform .12s ease, background .12s ease;
}
.hero__waitlist button:hover { background: #7c3aed; transform: translateY(-1px); }
.hero__waitlist button:active { transform: translateY(0); }
.hero__waitlist-result {
  width: 100%;
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent);
  min-height: 1.2em;
}
.hero__waitlist-result.is-error { color: #fb7185; }

.hero__store {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.hero__store-badge {
  padding: 8px 14px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 8px;
  color: var(--text-2);
  font-weight: 600;
  font-size: 12px;
}

/* ─── Features (drei Modi) ─────────────────────────────────────────────── */
.features__title,
.coverage__title,
.spotlight__title,
.contact h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.015em;
  text-align: center;
}
.features__sub,
.coverage__note {
  margin-top: 12px;
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
}
.features__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.mode {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  overflow: hidden;
}
.mode::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  opacity: .08;
}
.mode--nightlife::before { background: radial-gradient(circle at top right, var(--nightlife), transparent 70%); }
.mode--day::before       { background: radial-gradient(circle at top right, var(--day), transparent 70%); }
.mode--family::before    { background: radial-gradient(circle at top right, var(--family), transparent 70%); }
.mode__icon {
  display: inline-block;
  font-size: 32px;
  margin-bottom: 14px;
}
.mode h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 8px;
}
.mode--nightlife h3 { color: var(--nightlife); }
.mode--day h3       { color: var(--day); }
.mode--family h3    { color: var(--family); }
.mode p {
  color: var(--text-2);
  font-size: 14px;
}

/* ─── Coverage ──────────────────────────────────────────────────────────── */
.coverage__stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  text-align: center;
}
.coverage__stats > div {
  padding: 24px 16px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
}
.stat__num {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  background: linear-gradient(120deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .4px;
  text-transform: uppercase;
  font-weight: 600;
}
.coverage__note { margin-top: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ─── Family-Spotlight ─────────────────────────────────────────────────── */
.spotlight {
  background: linear-gradient(135deg, rgba(251,146,60,.08), rgba(236,72,153,.08));
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin: 0; max-width: none;
  padding-left: 0; padding-right: 0;
}
.spotlight__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  text-align: center;
}
.spotlight__eyebrow {
  display: inline-block;
  color: var(--family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.spotlight__title em {
  font-style: normal;
  color: var(--family);
}
.spotlight__list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.spotlight__list li {
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
}

/* ─── Werte ─────────────────────────────────────────────────────────────── */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.value {
  padding: 28px 24px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
}
.value h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.value p {
  font-size: 14px;
  color: var(--text-2);
}

/* ─── Kontakt ───────────────────────────────────────────────────────────── */
.contact {
  text-align: center;
}
.contact p {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 16px;
}
.contact a {
  color: var(--nightlife);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(139,92,246,.4);
  text-underline-offset: 3px;
}
.contact a:hover { text-decoration-color: var(--nightlife); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 24px 0;
  margin-top: 40px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer small { color: var(--muted); font-size: 13px; }
.footer nav { display: flex; gap: 18px; }
.footer nav a {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
}
.footer nav a:hover { color: var(--text); }

/* ─── Legal-Seiten (Impressum/Datenschutz/Imprint/Privacy) ─────────────── */
.legal {
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.legal h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.015em;
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text-2);
}
.legal p, .legal li {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 12px;
}
.legal ul, .legal ol { padding-left: 24px; }
.legal a {
  color: var(--nightlife);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal .placeholder {
  background: rgba(251,146,60,.12);
  border: 1px dashed rgba(251,146,60,.5);
  color: #FED7AA;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: .92em;
}

/* ─── Mobile ────────────────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .topnav__links { gap: 14px; }
  .topnav__links a:not(.lang) { display: none; }
  .hero__waitlist { flex-direction: column; }
  .hero__waitlist input,
  .hero__waitlist button { width: 100%; }
  .footer__inner { flex-direction: column; text-align: center; }
}
