/* ============================================
   NOW MASTERCLASS — STYLES
   Dark & Premium Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97A;
  --gold-dark: #A07830;
  --black: #0e0c0a;
  --surface: #181410;
  --surface-2: #211d18;
  --border: rgba(201, 168, 76, 0.28);
  --text: #f2efe9;
  --text-muted: #9e9a94;
  --text-dim: #6a6560;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1140px;
  --section-pad: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* WebGL background shader canvas */
#bgShader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
body {
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.gold { color: var(--gold); }
.hide-mobile { display: inline; }

.section {
  padding: var(--section-pad) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.28), 0 4px 16px rgba(201, 168, 76, 0.18);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.55), 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1rem;
  min-height: 56px;
}

.btn--full {
  width: 100%;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-testi {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-testi.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step-by-step list items (slide in from left) */
.reveal-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Scroll-linked card reveal --- */

/* Fallback: JS-triggered for older browsers */
@supports not (animation-timeline: scroll()) {
  .reveal-card {
    opacity: 0;
    transform: translateY(-28px);
    filter: blur(6px);
    transition:
      opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Progressive scroll-driven reveal (modern browsers) */
@supports (animation-timeline: scroll()) {
  @keyframes card-reveal-scroll {
    from {
      opacity: 0;
      transform: translateY(-24px);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  .reveal-card {
    animation: card-reveal-scroll linear both;
    animation-timeline: view(block);
    animation-range: entry 0% cover 28%;
    will-change: transform, opacity, filter;
  }
}

/* --- Section Headers --- */
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__subtitle {
  margin: 0 auto;
}

/* ============================================
   PILL CHOICE (Red / Blue Pill Animation)
   ============================================ */
.pill-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 40px 0 0;
}
.pill { cursor: pointer; text-align: center; }
.pill__capsule {
  width: 80px; height: 36px;
  border-radius: 18px;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
  position: relative;
}
/* 3D pill shape with highlight */
.pill__capsule::after {
  content: '';
  position: absolute;
  top: 4px; left: 12px; right: 12px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, transparent 100%);
  pointer-events: none;
}
.pill__capsule--red {
  background: linear-gradient(180deg, #f44336 0%, #b71c1c 60%, #7f0000 100%);
  box-shadow: 0 0 24px rgba(244,67,54,0.5), 0 0 60px rgba(244,67,54,0.2), inset 0 -4px 8px rgba(0,0,0,0.3);
}
.pill__capsule--blue {
  background: linear-gradient(180deg, #42a5f5 0%, #1565c0 60%, #0d47a1 100%);
  box-shadow: 0 0 24px rgba(66,165,245,0.5), 0 0 60px rgba(66,165,245,0.2), inset 0 -4px 8px rgba(0,0,0,0.3);
}
.pill__label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }
.pill__vs { color: var(--text-dim); font-size: 0.85rem; font-style: italic; opacity: 0; }

/* Pill Drop Animation — pills hidden until revealed */
.pill--red { opacity: 0; transform: translateY(-600px) rotate(-15deg); }
.pill--blue { opacity: 0; transform: translateY(-600px) rotate(12deg); }
.pill__vs { opacity: 0; }

/* Red pill drops first */
.pill-choice.revealed .pill--red {
  animation: pillDropRed 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* Blue pill drops with slight delay */
.pill-choice.revealed .pill--blue {
  animation: pillDropBlue 2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.pill-choice.revealed .pill__vs { opacity: 1; transition: opacity 0.4s ease 1.4s; }

/* Red pill: fall, impact, bounce high, small bounce, settle */
@keyframes pillDropRed {
  0% {
    opacity: 0;
    transform: translateY(-600px) rotate(-15deg) scale(0.8);
  }
  15% {
    opacity: 1;
  }
  45% {
    /* IMPACT — lands hard */
    transform: translateY(0) rotate(3deg) scale(1.15, 0.85);
  }
  55% {
    /* First bounce — shoots up */
    transform: translateY(-80px) rotate(-6deg) scale(0.95, 1.08);
  }
  70% {
    /* Second impact */
    transform: translateY(0) rotate(2deg) scale(1.08, 0.92);
  }
  80% {
    /* Small bounce */
    transform: translateY(-25px) rotate(-2deg) scale(1);
  }
  90% {
    /* Final settle */
    transform: translateY(0) rotate(0.5deg) scale(1.02, 0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

/* Blue pill: fall, impact, bounce differently (asymmetric) */
@keyframes pillDropBlue {
  0% {
    opacity: 0;
    transform: translateY(-600px) rotate(12deg) scale(0.8);
  }
  15% {
    opacity: 1;
  }
  45% {
    /* IMPACT */
    transform: translateY(0) rotate(-4deg) scale(1.18, 0.82);
  }
  55% {
    /* First bounce — slightly lower than red */
    transform: translateY(-60px) rotate(5deg) scale(0.93, 1.1);
  }
  68% {
    /* Second impact */
    transform: translateY(0) rotate(-2deg) scale(1.1, 0.9);
  }
  78% {
    /* Small bounce */
    transform: translateY(-18px) rotate(1.5deg) scale(1);
  }
  88% {
    transform: translateY(0) rotate(-0.5deg) scale(1.03, 0.97);
  }
  94% {
    transform: translateY(-5px) rotate(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

/* Pumping glow animation AFTER drop settles */
.pill-choice.revealed .pill__capsule--red {
  animation: pillPumpRed 2s ease-in-out 2.6s infinite;
}
.pill-choice.revealed .pill__capsule--blue {
  animation: pillPumpBlue 2s ease-in-out 2.9s infinite;
}

/* Impact flash on capsule during drop */
.pill-choice.revealed .pill--red .pill__capsule {
  animation: impactFlashRed 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pill-choice.revealed .pill--blue .pill__capsule {
  animation: impactFlashBlue 2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

@keyframes impactFlashRed {
  0%, 40% { filter: brightness(1); }
  45% { filter: brightness(1.8); }
  55% { filter: brightness(1); }
  70% { filter: brightness(1.3); }
  80% { filter: brightness(1); }
  100% { filter: brightness(1); }
}
@keyframes impactFlashBlue {
  0%, 40% { filter: brightness(1); }
  45% { filter: brightness(1.8); }
  55% { filter: brightness(1); }
  68% { filter: brightness(1.3); }
  78% { filter: brightness(1); }
  100% { filter: brightness(1); }
}

/* Fallback: if JS didn't add revealed after 3s, show pills via CSS animation */
@keyframes pillFallbackIn {
  0% { transform: translateY(-600px) rotate(-15deg); opacity: 0; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}
@keyframes pillFallbackInRight {
  0% { transform: translateY(-600px) rotate(12deg); opacity: 0; }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}
@keyframes vsFallbackIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* No CSS fallback — pills only drop when JS detects scroll-to-bottom */
/* When JS adds revealed, override the fallback with the drop animation (no delay) */
@keyframes pillPumpRed {
  0%, 100% { box-shadow: 0 0 24px rgba(244,67,54,0.5), 0 0 60px rgba(244,67,54,0.2), inset 0 -4px 8px rgba(0,0,0,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(244,67,54,0.8), 0 0 90px rgba(244,67,54,0.4), inset 0 -4px 8px rgba(0,0,0,0.3); transform: scale(1.06); }
}
@keyframes pillPumpBlue {
  0%, 100% { box-shadow: 0 0 24px rgba(66,165,245,0.5), 0 0 60px rgba(66,165,245,0.2), inset 0 -4px 8px rgba(0,0,0,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 40px rgba(66,165,245,0.8), 0 0 90px rgba(66,165,245,0.4), inset 0 -4px 8px rgba(0,0,0,0.3); transform: scale(1.06); }
}

/* Hover */
.pill:hover .pill__capsule--red { animation-play-state: paused; box-shadow: 0 0 50px rgba(244,67,54,0.9), 0 0 100px rgba(244,67,54,0.5); transform: scale(1.12); }
.pill:hover .pill__capsule--blue { animation-play-state: paused; box-shadow: 0 0 50px rgba(66,165,245,0.9), 0 0 100px rgba(66,165,245,0.5); transform: scale(1.12); }

/* Screen flicker effect (blue pill) */
.screen-flicker { animation: flicker 0.6s ease; }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  10% { opacity: 0.3; }
  20% { opacity: 0.8; }
  30% { opacity: 0.2; }
  50% { opacity: 0.9; }
  70% { opacity: 0.4; }
}
/* Blue pill overlay goes fully black when triggered via flicker */
.bluepill-overlay.blackout {
  background: rgba(0, 0, 0, 1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Matrix rain overlay (red pill) */
.matrix-rain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.95);
  animation: matrixFadeIn 0.3s ease;
}
@keyframes matrixFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Pill Gate (headline above pills) --- */
.pill-gate {
  text-align: center;
  margin-top: 56px;
  padding-bottom: 100px;
  transition: padding-bottom 0.5s ease;
}
.pill-gate.compact {
  padding-bottom: 20px;
}
.pill-gate__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.pill-gate__headline em {
  font-style: italic;
  color: var(--gold);
}
.pill-gate__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}


/* --- Scroll Lock --- */
body.scroll-locked {
  overflow: hidden;
}

/* --- Blue Pill Popup --- */
.bluepill-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9996;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.bluepill-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.bluepill-modal {
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.bluepill-modal__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.bluepill-modal__subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.bluepill-modal__pill {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease;
}
.bluepill-modal__pill:hover {
  transform: scale(1.08);
}
.bluepill-modal__pill .pill__capsule {
  margin: 0 auto 12px;
}
.bluepill-modal__pill .pill__capsule--red {
  animation: pillPumpRed 2s ease-in-out infinite;
}

/* ============================================
   MODULE IMAGE PLACEHOLDERS
   ============================================ */
.inhalte-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  position: relative;
}
.inhalte-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 30px 15px rgba(10, 10, 10, 0.7);
  pointer-events: none;
  z-index: 1;
}
.inhalte-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
}

.hero__matrix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201, 168, 76, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 60%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 80% 30% at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
  animation: heroShimmer 8s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
  0%   { opacity: 0.4; transform: scale(1) translateY(0); }
  50%  { opacity: 0.9; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 0.5; transform: scale(1) translateY(0); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  margin-bottom: 24px;
}

.hero__date-icon {
  font-size: 0.85rem;
}

/* --- Countdown --- */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  padding: 14px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 8px;
  background: none;
  border: none;
  border-radius: 0;
}
.countdown__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  font-family: var(--font-body);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
  white-space: nowrap;
}
.countdown__sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.35;
  padding: 0 2px;
  margin-bottom: 18px;
  align-self: flex-start;
  padding-top: 3px;
  flex-shrink: 0;
}
.countdown__live {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hero__date-info {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__subline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero__video {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.hero__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__video-replay,
.video-replay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero__video-replay.visible,
.video-replay.visible {
  opacity: 1;
  pointer-events: auto;
}

.hero__video-replay-btn,
.video-replay-btn {
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero__video-replay-btn:hover,
.video-replay-btn:hover {
  transform: scale(1.12);
  color: var(--gold-light);
}

.hero__video-replay-btn svg,
.video-replay-btn svg {
  width: 100%;
  height: 100%;
}

.video-replay-btn {
  width: 56px;
  height: 56px;
}

.hero__note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ============================================
   FÜR WEN
   ============================================ */
.fuer-wen {
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%,  rgba(201, 168, 76, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5%  95%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    var(--surface);
  position: relative;
}

.fuer-wen::before,
.fuer-wen::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
}
.fuer-wen::before { top: 0; }
.fuer-wen::after  { bottom: 0; }

.fw__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fw-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.fw-card--yes {
  background: linear-gradient(155deg, rgba(201, 168, 76, 0.07) 0%, #141008 100%);
  border-color: rgba(201, 168, 76, 0.4);
}

.fw-card--no {
  background: linear-gradient(155deg, rgba(100, 90, 80, 0.1) 0%, #0e0c0a 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.fw-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.fw-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.fw-card__check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.fw-card__check--no {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  border-color: rgba(255, 255, 255, 0.1);
}

.fw-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.fw-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  word-break: break-word;
  min-width: 0;
}

.fw-card__list li::before {
  content: '◈';
  color: rgba(201, 168, 76, 0.2);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.fw-card__list li.visible::before {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.7), 0 0 20px rgba(201, 168, 76, 0.35);
}

.fw-card__list--no li::before {
  content: '—';
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.5s ease;
}

.fw-card__list--no li.visible::before {
  color: var(--text-dim);
}

.fw-card__list--no li {
  color: var(--text-dim);
}

.fw-card .btn {
  display: inline-flex;
  margin: 24px auto 0;
  width: auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  align-self: center;
}
.fw-card {
  display: flex;
  flex-direction: column;
}
.fw-card__header {
  align-self: flex-start;
}
.fw-card__list {
  align-self: stretch;
}

/* ============================================
   INHALTE (4 Themen-Cards)
   ============================================ */
.inhalte {
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 85% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
    var(--black);
}

.inhalte__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.inhalte-card {
  background: linear-gradient(155deg, #1c1810 0%, #141008 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.inhalte-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.inhalte-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.inhalte-card:hover::before {
  opacity: 1;
}

.inhalte-card__num {
  display: none;
}

.inhalte-card__body {
  flex: 1;
}

.inhalte-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.inhalte-card__sub {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.inhalte-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inhalte-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.inhalte-card__list li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   DARKO
   ============================================ */
.darko-section {
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%,  rgba(201, 168, 76, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5%  95%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
    var(--surface);
  position: relative;
}

.darko-section::before,
.darko-section::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.45) 30%, rgba(201, 168, 76, 0.45) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3), 0 0 24px rgba(201, 168, 76, 0.12);
}
.darko-section::before { top: 0; }
.darko-section::after  { bottom: 0; }

.darko__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.darko__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.darko__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.darko__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(0.9);
  transition: filter 0.5s ease;
}

.darko__img:hover img {
  filter: grayscale(0%) brightness(1);
}

.darko__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.darko__role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.darko__bio {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.darko__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin: 32px 0 36px;
}

.darko__stat {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(201, 168, 76, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.darko__stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.darko__stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.darko__cta-wrap {
  text-align: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background:
    radial-gradient(ellipse 65% 55% at 95% 5%,  rgba(201, 168, 76, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 5%  95%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    var(--black);
  position: relative;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
}
.testimonials::before { top: 0; }
.testimonials::after  { bottom: 0; }

/* Flex layout: 3+2, last 2 centered */
.testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testi-card {
  background: linear-gradient(160deg, #1a1510 0%, #0e0c0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  width: calc((100% - 40px) / 3);
  min-width: 260px;
  max-width: 360px;
}

.testi-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testi-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}

.testi-card__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.testi-card__name {
  padding: 14px 16px 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.testi-card__role {
  padding: 0 16px 14px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-align: center;
}

/* ============================================
   ANMELDUNG (FORM)
   ============================================ */
.anmeldung-section {
  background:
    radial-gradient(ellipse 75% 75% at 50% 50%, rgba(201, 168, 76, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 20% 10%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 80% 90%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
    var(--black);
  position: relative;
  overflow: hidden;
}

.anmeldung-section::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.55) 30%, rgba(201, 168, 76, 0.55) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.15);
  pointer-events: none;
}

.anmeldung__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.anmeldung__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.anmeldung__title em {
  font-style: italic;
  color: var(--gold);
}

.anmeldung__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.anmeldung__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  min-height: 52px;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: var(--text-dim);
}

.form__input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form__input.error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.05);
}

.form__phone-wrap.error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.05);
}

.form__error-msg {
  display: none;
  font-size: 0.78rem;
  color: #e05555;
  margin-top: -8px;
  padding-left: 4px;
}

.form__error-msg.visible {
  display: block;
}

.form__note {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.form__phone-wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition);
}

.form__phone-wrap:focus-within {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form__select {
  width: 88px;
  flex-shrink: 0;
  padding: 16px 10px;
  background: rgba(201, 168, 76, 0.06);
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
}

.form__select option {
  background: var(--surface);
  color: var(--text);
}

.form__input--tel {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

/* Success State */
.anmeldung__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-lg);
}

.anmeldung__success.visible {
  display: flex;
}

.success__icon {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.anmeldung__success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.anmeldung__success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

.anmeldung__success .btn {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1.3;
  animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(201, 168, 76, 0.28), 0 4px 16px rgba(201, 168, 76, 0.18); }
  50%       { box-shadow: 0 0 40px rgba(201, 168, 76, 0.7), 0 6px 28px rgba(201, 168, 76, 0.45); }
}

/* Calendar Bottom Sheet */
.cal-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cal-sheet-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cal-sheet {
  width: 100%;
  background: #161616;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px 20px 0 0;
  padding: 12px 0 40px;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}

.cal-sheet-overlay.open .cal-sheet {
  transform: translateY(0);
}

.cal-sheet__handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.cal-sheet__title {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 24px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
}

.cal-sheet__options {
  list-style: none;
}

.cal-sheet__option {
  display: block;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease;
}

.cal-sheet__option:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

.cal-sheet__cancel {
  display: block;
  width: calc(100% - 48px);
  margin: 16px auto 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: var(--radius);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cal-sheet__cancel:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Logo Transition Overlay */
.logo-transition {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease, background 0.5s ease;
}

.logo-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* Image renders at 100vmax → re-rasterized at every scale step = always sharp */
.logo-transition__img {
  width: 100vmax;
  transform: scale(0.09);
  transition: transform 1.5s cubic-bezier(0.15, 0, 0.05, 1);
  image-rendering: high-quality;
}

.logo-transition.active:not(.expand) .logo-transition__img {
  animation: logo-glow 1s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from { filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4)); }
  to   { filter: drop-shadow(0 0 60px rgba(201, 168, 76, 1)) brightness(1.15); }
}

.logo-transition.expand .logo-transition__img {
  transform: scale(1.1);
  animation: none;
  filter: drop-shadow(0 0 80px rgba(201, 168, 76, 0.8));
}

.logo-transition.gold {
  background: var(--gold);
}

.logo-transition.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background:
    radial-gradient(ellipse 55% 55% at 90% 30%, rgba(201, 168, 76, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 10% 70%, rgba(201, 168, 76, 0.10) 0%, transparent 50%),
    var(--surface);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.45) 30%, rgba(201, 168, 76, 0.45) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3), 0 0 24px rgba(201, 168, 76, 0.12);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color var(--transition);
  min-height: 48px;
}

.faq__question:hover { color: var(--gold); }

.faq__icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    var(--black);
  padding: 56px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.45) 30%, rgba(201, 168, 76, 0.45) 70%, transparent);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.3), 0 0 24px rgba(201, 168, 76, 0.12);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--gold); }

.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--transition);
  font-family: var(--font-body);
}

.footer__legal-btn:hover { color: var(--gold); }

.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.footer__brand-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__brand-social .footer__social-link {
  opacity: 0.5;
}
.footer__brand-social .footer__social-link:hover {
  opacity: 1;
}
.footer__social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.footer__social-link {
  color: var(--gold);
  opacity: 0.6;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.footer__social-link:hover {
  opacity: 1;
}

/* --- Legal Modals (Impressum / Datenschutz) --- */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.legal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.legal-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}

.legal-modal__close:hover { color: var(--gold); }

.legal-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.legal-modal__body h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 8px;
}

.legal-modal__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-modal__body a {
  color: var(--gold);
  text-decoration: none;
}

.legal-modal__body a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE — TABLET (900px)
   ============================================ */
@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
  }

  .hide-mobile { display: none; }

  .inhalte__grid {
    grid-template-columns: 1fr;
  }

  .darko__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .darko__img {
    max-width: 340px;
    margin: 0 auto;
  }

  .darko__content {
    text-align: left;
  }

  .darko__cta-wrap {
    text-align: center;
  }

  .fw__grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    width: calc((100% - 20px) / 2);
  }
}

/* ============================================
   RESPONSIVE — MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .hero__headline {
    font-size: clamp(2.2rem, 7.5vw, 3.6rem);
  }


  .btn--large {
    padding: 16px 28px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 380px;
  }

  .fw-card {
    padding: 28px 22px;
    max-width: 100%;
    margin: 0 auto;
  }

  .inhalte-card {
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px;
  }

  .darko__stats {
    grid-template-columns: 1fr 1fr;
  }

  .testi-card {
    width: 100%;
    max-width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Cookie Modal --- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.cookie-modal__icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.cookie-modal__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
  font-style: italic;
}
.cookie-modal__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cookie-modal__btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-modal__btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(201, 168, 76, 0.55);
}

/* ============================================
   HIGH-END ANIMATIONS
   ============================================ */

/* --- 4. Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6), 0 0 20px rgba(201, 168, 76, 0.3);
  z-index: 10000;
  transition: none;
  pointer-events: none;
}

/* --- 1. Letter Assemble (Hero Headline) --- */
/* Hide text before JS wraps it in la-char spans — prevents flash of static text */
.letter-assemble {
  visibility: hidden;
}
.letter-assemble.la-ready {
  visibility: visible;
}
.letter-assemble .la-word {
  display: inline-block;
  white-space: nowrap;
}
.letter-assemble .la-char {
  display: inline-block;
  opacity: 0;
  animation: letterFlyIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
@keyframes letterFlyIn {
  0% {
    opacity: 0;
    transform: translate(var(--la-x), var(--la-y)) scale(0.5) rotate(var(--la-r));
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

/* --- 5. 3D Tilt on Module Cards --- */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}
.tilt-card .tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.15), transparent 60%);
  transition: opacity 0.3s ease;
}
.tilt-card:hover .tilt-glare {
  opacity: 1;
}

/* --- 6. Magnetic Button --- */
.btn--gold {
  position: relative;
  transition: all var(--transition), transform 0.15s ease-out;
}

/* --- 7. Gold Particle Burst --- */
.btn-particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  border-radius: inherit;
}
.btn-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  opacity: 0;
}

/* --- Ambient Sparks (behind CTA buttons) --- */
.btn-spark-container {
  position: absolute;
  inset: -12px;
  pointer-events: none;
  overflow: visible;
  z-index: -1;
}

.btn-spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes sparkDrift {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  15%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* --- 10. Section Divider Glow Animation --- */
.fuer-wen::before,
.fuer-wen::after,
.darko-section::before,
.darko-section::after,
.testimonials::before,
.testimonials::after,
.anmeldung-section::before,
.faq::before,
.footer::before {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.section-divider-visible::before,
.section-divider-visible::after {
  opacity: 1;
}

/* --- 12. Form Field Glow --- */
.form__input:focus {
  box-shadow: 0 0 0 1px var(--gold), 0 0 16px rgba(201, 168, 76, 0.2), 0 0 40px rgba(201, 168, 76, 0.08);
}
.form__phone-wrap:focus-within {
  box-shadow: 0 0 0 1px var(--gold), 0 0 16px rgba(201, 168, 76, 0.2), 0 0 40px rgba(201, 168, 76, 0.08);
}

/* --- 3. Enhanced Red Pill Shockwave --- */
.shockwave-ring {
  position: fixed;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.8);
  pointer-events: none;
  z-index: 9991;
  animation: shockwave-expand 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes shockwave-expand {
  0% {
    width: 0; height: 0;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    width: 200vmax; height: 200vmax;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}
.shockwave-ring:nth-child(2) { animation-delay: 0.1s; border-color: rgba(244, 67, 54, 0.6); }
.shockwave-ring:nth-child(3) { animation-delay: 0.2s; border-color: rgba(201, 168, 76, 0.4); }

.screen-shake {
  animation: screenShake 0.4s ease;
}
@keyframes screenShake {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-3px, 2px); }
  20% { transform: translate(4px, -2px); }
  30% { transform: translate(-2px, 3px); }
  40% { transform: translate(3px, -1px); }
  50% { transform: translate(-1px, 2px); }
  60% { transform: translate(2px, -3px); }
  70% { transform: translate(-3px, 1px); }
  80% { transform: translate(1px, -2px); }
  90% { transform: translate(-2px, 1px); }
}

/* Gold particle explosion (red pill) */
.pill-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9992;
  animation: pill-particle-fly 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes pill-particle-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  70% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(var(--px), var(--py)) scale(0);
  }
}

/* --- 9. Parallax Background Gradients --- */
.parallax-glow {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* --- 2. Counting Numbers (tabular) --- */
.darko__stat-num[data-count] {
  font-variant-numeric: tabular-nums;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .shockwave-ring,
  .pill-particle,
  .btn-particle,
  .btn-spark,
  .screen-shake,
  [data-typewriter] .tw-cursor { display: none; }
  .letter-assemble .la-char { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  .tilt-card { transform: none !important; }
  .tilt-card .tilt-glare { display: none; }
}
