/* ==============================================
   MACH UMSATZ — Webinar Landing Page
   Schwarz/Gold · Real Talk · Mobile-first
   ============================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f0;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Design Tokens ---------- */
:root {
  --black:        #0a0a0a;
  --black-soft:   #141414;
  --card:         #181818;
  --card-hover:   #1f1f1f;
  --card-grad:    linear-gradient(180deg, #1c1c1c 0%, #131313 100%);
  --card-grad-hover: linear-gradient(180deg, #232323 0%, #161616 100%);
  --border:       #2a2a2a;
  --border-soft:  rgba(255,255,255,0.06);
  --gold:         #FBA335;
  --gold-bright:  #FFB85A;
  --gold-soft:    rgba(251,163,53,0.12);
  --gold-ring:    rgba(251,163,53,0.18);
  --white:        #f5f5f0;
  --muted:        #999996;
  --muted-strong: #c0c0bc;
  --red:          #ff4444;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --max-w: 1180px;
  --shadow-gold:    0 0 0 1px rgba(251,163,53,0.25);
  --shadow-lift:    0 20px 40px -10px rgba(0,0,0,0.6);
  --shadow-card:    0 12px 32px -12px rgba(0,0,0,0.6);
  --shadow-card-hv: 0 22px 44px -14px rgba(0,0,0,0.7), 0 0 0 1px rgba(251,163,53,0.18);
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography Defaults ---------- */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--muted-strong); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  margin-bottom: 48px;
}
.section-header--center {
  text-align: center;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--muted-strong);
  max-width: 720px;
  margin-top: 16px;
}
.section-header--center .section-lead { margin-left: auto; margin-right: auto; }

/* Section-Divider als feine Gold-Linie */
.divider {
  position: relative;
  height: 1px;
  border: none;
  margin: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(251,163,53,0.05) 20%,
    rgba(251,163,53,0.45) 50%,
    rgba(251,163,53,0.05) 80%,
    transparent 100%);
}
.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(251,163,53,0.7);
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.strike {
  position: relative;
  display: inline-block;
  color: var(--muted);
}
.strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 3px;
  background: var(--gold);
  transform: rotate(-3deg);
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, #c97a1a 0%, var(--gold) 55%, var(--gold-bright) 100%);
  color: #181210;
  border: 1px solid rgba(255, 184, 90, 0.45);
  box-shadow:
    0 10px 24px -6px rgba(251,163,53,0.55),
    0 4px 12px -2px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #e58a2c 0%, #ffc06a 55%, #ffd28a 100%);
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px -6px rgba(251,163,53,0.7),
    0 6px 16px -2px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow:
    0 6px 16px -4px rgba(251,163,53,0.45),
    0 2px 6px -1px rgba(0,0,0,0.3),
    inset 0 1px 2px rgba(0,0,0,0.18);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn--secondary:hover {
  background: var(--card-hover);
  border-color: var(--gold);
}
.btn--block { width: 100%; }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }


/* ==============================================
   NAV (sticky)
   ============================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav__logo img {
  height: 24px;
  width: auto;
}


/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: clamp(680px, 96vh, 1000px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding: 110px 0 100px;
}

/* Hero-Background-Foto-Layer (Hüseyin im Autohof) */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: 65% 62%;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(0.7) contrast(1.05);
  z-index: 0;
}
/* Gradient-Overlay: kräftiger Vignette + sehr weicher Bottom-Fade */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* Radial-Vignette: Mitte halbwegs frei, Ränder dunkel */
    radial-gradient(ellipse 85% 70% at 50% 45%,
      rgba(10,10,10,0.3) 0%,
      rgba(10,10,10,0.55) 50%,
      rgba(10,10,10,0.88) 100%),
    /* Sehr weicher Bottom-Fade über große Distanz */
    linear-gradient(180deg,
      transparent 0%,
      transparent 35%,
      rgba(10,10,10,0.25) 60%,
      rgba(10,10,10,0.7) 82%,
      rgba(10,10,10,0.95) 94%,
      rgba(10,10,10,1) 100%),
    /* Top-darkness fürs Nav-Bar */
    linear-gradient(180deg,
      rgba(10,10,10,0.65) 0%,
      transparent 18%);
}

/* Gold-Aurora-Glow ON TOP des Fotos für Warm-Akzent */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 90% 30%, rgba(251,163,53,0.13), transparent 60%),
    radial-gradient(ellipse 40% 35% at 12% 28%, rgba(251,163,53,0.06), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero__content {
  max-width: 680px;
}

/* ====== Variant: Centered Hero ====== */
.hero__content--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero__content--centered .hero__without {
  border-left: none;
  border-top: 2px solid var(--gold);
  padding-left: 0;
  padding-top: 16px;
  display: inline-block;
  text-align: center;
  max-width: 640px;
}
.hero__content--centered .hero__bullets {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
}
.hero__content--centered .hero__cta {
  align-items: center;
}
.hero__content--centered .hero__cta-note {
  text-align: center;
}

/* Stats-Strip (V3) */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 28px auto 0;
  flex-wrap: wrap;
  max-width: 720px;
}
.hero__stat {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.hero__stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
  text-transform: none;
}
.hero__stat span {
  font-size: 1rem;
  opacity: 0.7;
}

/* ============================================
   LAYOUT VARIANT: SPLIT (V2) — Text links, Foto rechts
   ============================================ */
body.layout-split .hero {
  align-items: stretch;
  padding: 120px 0 80px;
  min-height: clamp(640px, 92vh, 940px);
}
body.layout-split .hero__bg { display: none; }
body.layout-split .hero::before { display: none; }
body.layout-split .hero__container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
body.layout-split .hero__content {
  max-width: none;
  text-align: left;
}
body.layout-split .hero__photo {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
body.layout-split .hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 58%;
  filter: brightness(0.9) saturate(0.85);
}
body.layout-split .hero__photo::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent);
  opacity: 0.55;
  z-index: 2;
}
body.layout-split .hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 50%, rgba(10,10,10,0.4) 100%),
    radial-gradient(ellipse at top left, rgba(251,163,53,0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 960px) {
  body.layout-split .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.layout-split .hero__photo {
    min-height: 360px;
    order: -1;
  }
}


/* ============================================
   LAYOUT VARIANT: POSTER (V3) — Headline oben, Hüseyin drunter
   ============================================ */
body.layout-poster .hero {
  align-items: flex-start;
  padding: 130px 0 80px;
  min-height: clamp(720px, 100vh, 1080px);
}
body.layout-poster .hero__bg {
  background-position: 50% 78%;
  filter: brightness(0.75) saturate(0.85) contrast(1.05);
}
body.layout-poster .hero__bg::after {
  background:
    /* Stark dunkel oben (Headline-Lesbarkeit), transparent in der Mitte (Hüseyin), dunkel unten */
    linear-gradient(180deg,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.85) 20%,
      rgba(10,10,10,0.55) 38%,
      rgba(10,10,10,0.15) 55%,
      transparent 68%,
      rgba(10,10,10,0.4) 85%,
      rgba(10,10,10,0.95) 96%,
      rgba(10,10,10,1) 100%);
}
body.layout-poster .hero__content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
body.layout-poster .hero__headline {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.65);
}
body.layout-poster .hero__without {
  display: inline-block;
  text-align: center;
  border-left: none;
  border-top: 2px solid var(--gold);
  padding: 16px 0 0;
  max-width: 640px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
body.layout-poster .hero__cta {
  align-items: center;
  margin-top: 30px;
}
body.layout-poster .hero__scroll { display: none; }

@media (max-width: 960px) {
  body.layout-poster .hero {
    padding: 110px 0 60px;
    min-height: clamp(680px, 100vh, 900px);
  }
  body.layout-poster .hero__bg {
    background-position: 60% 78%;
  }
  body.layout-poster .hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(10,10,10,0.95) 0%,
        rgba(10,10,10,0.88) 22%,
        rgba(10,10,10,0.65) 40%,
        rgba(10,10,10,0.25) 60%,
        rgba(10,10,10,0.45) 80%,
        rgba(10,10,10,1) 100%);
  }
}


/* ============================================
   LAYOUT VARIANT: AURORA (V4) — keine Foto, Typo-Statement
   ============================================ */
body.layout-aurora .hero__bg { display: none; }
body.layout-aurora .hero {
  background:
    radial-gradient(ellipse 65% 55% at 50% 15%,  rgba(251,163,53,0.22), transparent 65%),
    radial-gradient(ellipse 40% 60% at 88% 65%,  rgba(251,163,53,0.10), transparent 70%),
    radial-gradient(ellipse 50% 60% at 12% 80%,  rgba(251,163,53,0.07), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 95%,  rgba(10,10,10,1) 30%, transparent 80%),
    var(--black);
}
body.layout-aurora .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.035) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 80%);
  z-index: 1;
}
body.layout-aurora .hero__headline {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 26px;
}
body.layout-aurora .hero__headline .hl-accent {
  display: inline;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, #c97a1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.layout-aurora .hero__trust-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin: 28px auto 8px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-strong);
}
body.layout-aurora .hero__trust-bar .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}
body.layout-aurora .hero__trust-bar strong {
  color: var(--white);
  font-weight: 800;
}

.hero__cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.btn--hero {
  padding: 20px 36px;
  font-size: 1.08rem;
  border-radius: var(--radius);
  box-shadow:
    0 12px 28px -8px rgba(251,163,53,0.55),
    0 0 0 1px rgba(251,163,53,0.25);
}
.btn--hero:hover {
  box-shadow:
    0 16px 36px -8px rgba(251,163,53,0.7),
    0 0 0 1px rgba(251,163,53,0.4);
}
.hero__cta-note {
  font-size: 0.85rem;
  color: var(--muted-strong);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}

/* Scroll-Indicator unten am Hero */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hero__scroll:hover {
  border-color: var(--gold);
  transform: translateX(-50%) translateY(2px);
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}
@media (max-width: 640px) {
  .hero__scroll { display: none; }
}
/* Live Badge — Glass-Look mit Backdrop-Blur, voll lesbar */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  background: rgba(15,15,15,0.62);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    0 4px 14px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
  margin-bottom: 24px;
  white-space: nowrap;
  max-width: 100%;
}
.live-badge__text {
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .live-badge {
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    padding: 8px 14px;
  }
}
.live-badge--gold {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}
.live-badge__hl {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.2em;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,68,68,0.8);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero__headline {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hl-accent {
  display: inline;
  background: linear-gradient(135deg, #ffc270 0%, var(--gold) 55%, #c97a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
@supports not (background-clip: text) {
  .hl-accent { color: var(--gold); -webkit-text-fill-color: var(--gold); }
}
.hero__without {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.4;
  color: var(--muted-strong);
  font-weight: 600;
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.hero__sub {
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero__sub strong {
  color: var(--white);
  font-weight: 700;
}
.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--muted-strong);
}
.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--gold);
}


/* Form (in Register-Modal) */
.form {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold-bright) 50%, var(--gold) 75%, transparent);
  opacity: 0.6;
}
.form__title {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: #fff;
}
.form__sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.form__field {
  display: block;
  margin-bottom: 16px;
}
.form__field > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form__field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.form__field input::placeholder { color: #666; }

/* DSGVO WhatsApp-Opt-in: separate, nicht vorausgewaehlte Checkbox (getrennt von E-Mail) */
.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted-strong);
  text-align: left;
  cursor: pointer;
}
.form__consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form__consent a { color: var(--gold-bright); text-decoration: underline; }
.form__consent input.is-invalid {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.form__field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251,163,53,0.15);
}
.form__field input.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,68,68,0.15);
}
/* Chrome Autofill: dunkles Theme erhalten */
.form__field input:-webkit-autofill,
.form__field input:-webkit-autofill:hover,
.form__field input:-webkit-autofill:focus,
.form__field input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px var(--black-soft) inset, 0 0 0 1px var(--border) inset;
  caret-color: var(--white);
  transition: background-color 5000s ease-in-out 0s;
}
.form__error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 6px;
}
.form__field small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.form__disclaimer {
  margin: 16px 0 0;
  font-size: 0.8rem;
  text-align: center;
  color: var(--muted);
}
.form button[type="submit"] { margin-top: 8px; }




/* ==============================================
   EVENT-CARD: Datum + Mini-Countdown
   ============================================== */
.event-card {
  padding: 60px 0 40px;
  background: var(--black);
}
.event-card__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 48px;
  background:
    radial-gradient(ellipse at top left, rgba(251,163,53,0.06), transparent 55%),
    linear-gradient(135deg, #1c1c1c 0%, #121212 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.event-card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.event-card__inner::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(251,163,53,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.event-card__date {
  position: relative;
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid var(--border);
}
.event-card__weekday {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.event-card__day {
  font-size: 5.4rem;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #ffd089 0%, var(--gold) 55%, #c97a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.event-card__month {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted-strong);
  margin-top: 6px;
}
.event-card__time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--muted-strong);
  font-weight: 500;
}

.event-card__countdown {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.event-card__countdown .countdown {
  justify-content: center;
}
.event-card__cd-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.event-card .countdown--compact .countdown__unit {
  padding: 12px 14px;
  min-width: 70px;
  background: var(--black);
  border: 1px solid var(--border);
}
.event-card .countdown--compact .countdown__num {
  font-size: 1.8rem;
}
.event-card .countdown--compact .countdown__label {
  font-size: 0.65rem;
  margin-top: 4px;
}
.event-card__cta {
  margin-top: 20px;
  align-self: center;
}


/* ==============================================
   STÖRER: Authority-Bar nach Hero
   ============================================== */
.stoerer {
  background:
    linear-gradient(180deg, var(--card) 0%, var(--black) 100%);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.stoerer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.stoerer__inner--centered {
  grid-template-columns: 1fr;
  justify-items: center;
}
.stoerer__inner--centered .stoerer__stats {
  max-width: 900px;
  width: 100%;
}
.stoerer__quote {
  position: relative;
  padding-left: 48px;
}
.stoerer__qmark {
  position: absolute;
  left: 0;
  top: -12px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.stoerer__quote p {
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
  margin: 0;
  font-style: italic;
}
.stoerer__quote strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}
.stoerer__stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.stoerer__stat { padding: 4px; }
.stoerer__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stoerer__num span { font-size: 1.2rem; opacity: 0.7; }
.stoerer__lbl {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}
.stoerer__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}


/* ==============================================
   OLDWAY: "Das ist die Scheiße die du machst"
   ============================================== */
.oldway {
  padding: 100px 0;
  position: relative;
  background:
    radial-gradient(ellipse 55% 50% at 90% 90%, rgba(251,163,53,0.04), transparent 65%),
    var(--black);
}
.section-header h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.oldway__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.oldway__col {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-card);
}
.oldway__col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hv);
}
.oldway__col--new {
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px var(--gold),
    0 24px 60px -20px rgba(251,163,53,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  background:
    radial-gradient(ellipse at top right, rgba(251,163,53,0.08), transparent 60%),
    var(--card-grad);
}
.oldway__col-title {
  margin-bottom: 24px;
}
.oldway__col-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.oldway__col-tag--red {
  background: rgba(255,68,68,0.1);
  color: var(--red);
  border: 1px solid rgba(255,68,68,0.3);
}
.oldway__col-tag--gold {
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.oldway__col-title h3 {
  font-size: 1.6rem;
  color: #fff;
}
.oldway__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.oldway__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--muted-strong);
  line-height: 1.55;
}
.x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,68,68,0.1);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  border: 1px solid rgba(255,68,68,0.3);
}
.oldway__quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.oldway__quote p {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--white);
  font-style: italic;
  margin: 0 0 14px;
}
.oldway__quote strong { color: var(--gold); font-style: normal; }
.oldway__quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}


/* ==============================================
   MODULES
   ============================================== */
.modules {
  padding: 100px 0;
  position: relative;
  background:
    radial-gradient(ellipse 50% 45% at 88% 12%, rgba(251,163,53,0.04), transparent 65%),
    radial-gradient(ellipse 40% 35% at 8% 92%, rgba(251,163,53,0.025), transparent 70%);
}
.modules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.module {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: var(--shadow-card);
}
.module::before {
  content: "0" attr(data-num);
  position: absolute;
  top: -28px;
  right: -8px;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(251,163,53,0.06);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}
.module:hover {
  border-color: var(--gold-ring);
  background:
    radial-gradient(ellipse at top, rgba(251,163,53,0.06), transparent 65%),
    var(--card-grad-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hv);
}
.module:hover::before {
  color: rgba(251,163,53,0.14);
}
.module__num {
  font-family: 'Inter', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.module__num::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.module__title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.35rem;
}
.module__desc {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.65;
}

.modules__cta {
  text-align: center;
}
.modules__cta-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}


/* ==============================================
   HOST
   ============================================== */
.host {
  padding: 100px 0;
  background:
    linear-gradient(180deg, var(--black) 0%, var(--card) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.host__container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.host__visual {
  position: relative;
}
.host__photo {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-card);
}
.host__photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.8);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--gold);
}
.host__name {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 6px;
}
.host__subtitle {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 28px;
}
.host__bio {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat {
  text-align: left;
}
.stat__num,
.stat__num > span {
  background: linear-gradient(135deg, #ffd089 0%, var(--gold) 55%, #c97a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.stat__num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__num > span {
  font-size: 1.6rem;
  opacity: 0.85;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}


/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials {
  padding: 100px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-card);
}
.testimonial:hover {
  border-color: var(--gold-ring);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hv);
}
.testimonial__placeholder-tag {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-strong);
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial__quote::before {
  content: """;
  display: block;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 6px;
}
.testimonial__author {
  margin-bottom: 18px;
}
.testimonial__name {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.testimonial__role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}
.testimonial__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.metric__label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ==============================================
   PRESS — "Bekannt aus" Logo-Strip
   ============================================== */
.press {
  padding: 64px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.press__eyebrow {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 36px;
}
.press__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  justify-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Jedes Logo auf hellem Chip → in Originalfarbe sichtbar auf dunklem Grund */
.press__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 104px;
  padding: 20px 22px;
  background: #f6f5f1;
  border-radius: 14px;
  box-shadow:
    0 12px 30px -12px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.press__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(0,0,0,0.7);
}
.press__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 960px) {
  .press__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 560px;
  }
}
@media (max-width: 640px) {
  .press { padding: 48px 0; }
  .press__eyebrow { margin-bottom: 26px; letter-spacing: 0.2em; }
  .press__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
    padding: 0;
  }
  .press__item { height: 88px; padding: 18px 24px; }
}


/* ==============================================
   TRUST STAMPS (legacy, nicht mehr genutzt)
   ============================================== */
.trust {
  padding: 56px 0;
  background:
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(251,163,53,0.04), transparent 60%),
    var(--card-grad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  position: relative;
  transition: transform 0.2s ease;
}
.trust__item:hover {
  transform: translateY(-2px);
}
.trust__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
@media (max-width: 960px) {
  .trust__item:not(:last-child)::after { display: none; }
}
.trust__seal {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.trust__seal span { font-size: 1.1rem; opacity: 0.7; }
.trust__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}


/* ==============================================
   FINAL CTA
   ============================================== */
.final-cta {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(251,163,53,0.12), transparent 70%),
    var(--black);
  text-align: center;
}
.final-cta__inner {
  max-width: 880px;
  margin: 0 auto;
}
.final-cta__headline {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  margin: 24px 0 16px;
  line-height: 1.2;
  overflow-wrap: break-word;
}
.final-cta__sub {
  font-size: 1.1rem;
  color: var(--muted-strong);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.countdown__unit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  min-width: 88px;
}
.countdown__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 6px;
}
.countdown__sep {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 800;
  opacity: 0.5;
}

/* Inline Form im Final-CTA */
.form--final {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: left;
  scroll-margin-top: 90px;
}
.form--final .form__title {
  text-align: center;
  font-size: 1.45rem;
  margin: 4px 0 8px;
}
.form--final .form__sub {
  text-align: center;
  margin-bottom: 26px;
}


/* ==============================================
   STICKY FLOATING CTA
   ============================================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #c97a1a 0%, var(--gold) 55%, var(--gold-bright) 100%);
  color: #181210;
  border: 1px solid rgba(255,184,90,0.45);
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.45),
    0 10px 24px rgba(251,163,53,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta:hover {
  background: linear-gradient(135deg, #e58a2c 0%, #ffc06a 55%, #ffd28a 100%);
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.5),
    0 14px 32px rgba(251,163,53,0.55),
    inset 0 1px 0 rgba(255,255,255,0.38),
    inset 0 -1px 0 rgba(0,0,0,0.18);
}
.sticky-cta__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.sticky-cta:hover .sticky-cta__arrow {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: opacity 0.2s ease;
    transform: none;
  }
}


/* ==============================================
   FOOTER
   ============================================== */
.footer {
  padding: 40px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer__logo img { height: 24px; opacity: 0.7; }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.footer__disclaimer {
  max-width: 880px;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--muted);
}
.footer__disclaimer strong { color: var(--muted-strong); }
.footer__fb {
  max-width: 880px;
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.55;
  color: #777;
}


/* ==============================================
   MODAL
   ============================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}
.modal__inner {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(251,163,53,0.05), transparent 60%),
    var(--card-grad);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 38px 32px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow:
    0 30px 60px -10px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: scale(0.95) translateY(14px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}
.modal__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold-bright) 50%, var(--gold) 75%, transparent);
  opacity: 0.6;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal.is-open .modal__inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal__inner--form {
  max-width: 540px;
  padding: 36px 36px 28px;
  text-align: left;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted-strong);
  font-size: 1.5rem;
  line-height: 1;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  z-index: 2;
}
.modal__close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--gold-ring);
  transform: rotate(90deg);
}

.modal__head {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.modal__head .live-badge {
  margin-bottom: 16px;
}
.modal__sub {
  font-size: 0.9rem;
  color: var(--muted-strong);
  margin: 10px 0 0;
  line-height: 1.5;
}

.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(251,163,53,0.3);
}
.modal__title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.modal__inner--form .modal__title { margin-bottom: 6px; }
.modal__text {
  color: var(--muted-strong);
  margin-bottom: 16px;
  line-height: 1.6;
}
.modal__date {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 28px;
}
.modal__date strong { color: var(--gold); }

/* Form inside Modal: kein extra Card-Style, vererbt vom Modal */
.form--in-modal {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.form--in-modal::before { display: none; }
.form--in-modal .form__field:first-of-type { margin-top: 4px; }


/* ==============================================
   RESPONSIVE — Tablet
   ============================================== */
@media (max-width: 960px) {
  .hero {
    min-height: clamp(580px, 86vh, 760px);
    padding: 80px 0 60px;
  }

  /* Event-Card: alles sauber zentriert auf Mobile */
  .event-card__inner {
    text-align: center;
    justify-items: center;
  }
  .event-card__date,
  .event-card__countdown {
    width: 100%;
    text-align: center;
  }
  .event-card__cta {
    align-self: center;
    justify-self: center;
  }
  /* Mobile: Bild MUSS dunkler — Text muss zuerst lesbar sein */
  .hero__bg {
    filter: brightness(0.32) saturate(0.55) contrast(1.1);
  }
  .hero__bg::after {
    background:
      radial-gradient(ellipse 110% 80% at 50% 45%,
        rgba(10,10,10,0.45) 0%,
        rgba(10,10,10,0.75) 60%,
        rgba(10,10,10,0.95) 100%),
      linear-gradient(180deg,
        rgba(10,10,10,0.4) 0%,
        transparent 18%,
        transparent 50%,
        rgba(10,10,10,0.55) 75%,
        rgba(10,10,10,1) 100%);
  }
  .modules__grid {
    grid-template-columns: 1fr;
  }
  .oldway__grid {
    grid-template-columns: 1fr;
  }
  .host__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .form--compact .form__row {
    grid-template-columns: 1fr;
  }
  .event-card__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
    text-align: center;
  }
  .event-card__date {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .event-card__countdown { text-align: center; }
  .event-card__inner::after { display: none; }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}


/* ==============================================
   RESPONSIVE — Mobile
   ============================================== */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container, .nav__inner, .hero__container, .details-bar__inner { padding-left: 20px; padding-right: 20px; }

  /* Nav: Logo deutlich kleiner + Button kompakter, damit das breite Logo auf Mobile nicht mit dem Sticky-Button quetscht */
  .nav__inner { padding-top: 11px; padding-bottom: 11px; gap: 14px; }
  .nav__logo { min-width: 0; flex-shrink: 1; }
  .nav__logo img { height: 17px; max-width: 56vw; }
  .nav .btn--sm { padding: 9px 14px; font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }

  .modules, .host, .final-cta, .oldway { padding: 64px 0; }
  .event-card { padding: 40px 14px 24px; }
  .event-card__inner { padding: 32px 20px; }
  .event-card__day { font-size: 4.6rem; }

  /* Countdown: alle Units gleich breit + alles auf die Mobile-Karte zugeschnitten */
  .event-card .countdown--compact { gap: 4px; }
  .event-card .countdown--compact .countdown__unit {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 11px 4px;
  }
  .event-card .countdown--compact .countdown__num { font-size: 1.4rem; }
  .event-card .countdown--compact .countdown__label { font-size: 0.6rem; letter-spacing: 0.1em; }
  .event-card .countdown--compact .countdown__sep { font-size: 1rem; opacity: 0.35; flex: 0 0 auto; }

  .event-card__cta {
    width: 100%;
    padding: 16px 14px;
    font-size: 0.98rem;
  }

  .oldway__quote { padding: 28px 24px; }
  .oldway__quote p { font-size: 1.05rem; }

  .form { padding: 24px; }
  .form__title { font-size: 1.2rem; }

  /* Stats: 1-Spalte zentriert auf Mobile — bricht 2x2-Repetition mit Press-Section */
  .stats {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Final-CTA: Headline darf nicht ausm Container ragen */
  .final-cta__headline {
    font-size: 1.5rem;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .final-cta__headline br { display: none; }
  .final-cta__sub { font-size: 0.95rem; }
  .stat {
    text-align: center;
    padding: 8px 0;
  }
  .stat__num { font-size: 2.4rem; justify-content: center; display: block; }
  .stat__label { margin-top: 6px; }

  .countdown { gap: 6px; }
  .countdown__unit { min-width: 64px; padding: 14px 8px; }
  .countdown__num { font-size: 1.8rem; }
  .countdown__sep { font-size: 1.2rem; }

  /* Hero-CTA: Button voll-breit, damit er auf 320px nicht rausragt */
  .hero__cta { align-items: stretch; width: 100%; }
  .hero__content--centered .hero__cta { align-items: center; }
  .btn--hero {
    width: 100%;
    padding: 18px 22px;
    font-size: 1rem;
  }
  .hero__content--centered .btn--hero { max-width: 360px; }
  .final-cta__btn { width: 100%; max-width: 360px; padding: 18px 22px; }

  /* Hero-Stats-Strip: 2-Spalten statt 4 */
  .hero__stats { gap: 22px 28px; }
  .hero__stat strong { font-size: 1.4rem; }

  /* Aurora Trust-Bar: Wrap statt überlauf */
  body.layout-aurora .hero__trust-bar {
    font-size: 0.72rem;
    padding: 12px 18px;
    gap: 10px 14px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .modal__inner { padding: 32px 22px; max-height: 88vh; overflow-y: auto; }
  .modal__inner--form { padding: 30px 22px 22px; }
  .modal__head { margin-bottom: 18px; padding-bottom: 16px; }
  .modal__title { font-size: 1.35rem; }
}

/* Mobile: Live-Badge darf umbrechen statt überzulaufen */
@media (max-width: 640px) {
  .live-badge {
    white-space: normal;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.45;
    padding: 8px 14px;
    max-width: calc(100% - 16px);
  }
  /* Final-CTA Badge zusätzlich kompakter — text ist sehr lang */
  .final-cta .live-badge {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}
