/* ==========================================================================
   WAS FRAUEN WIRKLICH WOLLEN — Live-Event Landingpage
   Design: schwarz + Electric Blue + Violett-Verläufe, runde Karten,
   Pill-Buttons — nach Tony-Robbins-/ToddV-Vorbild
   ========================================================================== */

:root {
  --bg: #05060a;
  --bg-soft: #0a0c14;
  --card: #10121d;
  --card-border: rgba(139, 92, 246, 0.16);
  --purple-deep: #150a2e;
  --violet: #7c3aed;
  --magenta: #c026d3;
  --blue: #2764ff;
  --blue-soft: #7ea2ff;
  --accent-grad: linear-gradient(100deg, #5b8cff, #8b5cf6);
  --overlay-grad: linear-gradient(180deg, rgba(124, 58, 237, 0) 40%, rgba(59, 18, 110, 0.88) 100%);
  --text: #ffffff;
  --muted: #a6aec3;
  --muted-2: #78819a;
  --light-bg: #eef0f6;
  --light-text: #0b0d16;
  --light-muted: #4c5468;
  --danger: #f87171;
  --radius: 24px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.container { width: min(1200px, 94vw); margin: 0 auto; }
.container--narrow { width: min(860px, 92vw); margin: 0 auto; }
.container--wide { width: min(1800px, calc(100vw - 40px)); margin: 0 auto; }

section { position: relative; padding: 104px 0; }
@media (max-width: 700px) { section { padding: 68px 0; } }

/* ---- Typografie ---------------------------------------------------------- */

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 20px;
}

h1, h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

h1 { font-size: clamp(35px, 4.9vw, 64px); }
h2 { font-size: clamp(30px, 4.2vw, 54px); margin-bottom: 22px; text-wrap: balance; }

.accent-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: clamp(17.5px, 1.9vw, 20px); color: var(--muted); max-width: 46em; }

.section-head { max-width: 800px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons (Pills) ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 17px 34px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(39, 100, 255, 0.35);
}
.btn--blue:hover { background: #1e51d8; transform: translateY(-2px); box-shadow: 0 20px 44px rgba(39, 100, 255, 0.45); }

.btn--white {
  background: #fff;
  color: #0b0d16;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: #fff; transform: translateY(-2px); }

.btn--small { padding: 11px 22px; font-size: 14px; }

.btn-note { display: block; margin-top: 14px; font-size: 13.5px; color: var(--muted-2); }

/* ---- Announcement-Bar ------------------------------------------------------ */

.announce {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  padding: 9px 0;
  line-height: 1.45;
}
.announce b { font-weight: 800; }
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  text-align: center;
}
.announce .btn {
  padding: 8px 20px;
  font-size: 13px;
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}
.announce .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }
@media (max-width: 560px) { .announce { font-size: 12.5px; } .announce .btn { padding: 7px 16px; font-size: 12px; } }

/* ---- Topbar ----------------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__logo {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}
.topbar__logo span { color: var(--blue-soft); }
.topbar__meta { display: flex; align-items: center; gap: 26px; font-size: 14px; color: var(--muted); }
.topbar__meta strong { color: var(--text); font-weight: 700; }
@media (max-width: 900px) { .topbar__meta .hide-m { display: none; } }
@media (max-width: 560px) {
  .topbar__meta { display: none; }
  .topbar__logo { font-size: 13px; letter-spacing: 0.16em; }
  .topbar .btn { padding: 10px 18px; font-size: 13px; }
}

/* ---- Hero (Bild-Karte im Tony-Stil) ------------------------------------------ */

.hero { padding: 22px 0 64px; }
.hero__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: min(88svh, 880px);
  display: flex;
  align-items: flex-end;
  padding: clamp(26px, 5vw, 64px);
  isolation: isolate;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/hero-strasse.jpg") 45% center / cover no-repeat;
}
.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.62) 0%, rgba(5, 6, 10, 0.25) 45%, rgba(5, 6, 10, 0) 65%),
    linear-gradient(180deg, rgba(91, 33, 182, 0.24) 0%, rgba(112, 30, 150, 0.16) 28%, rgba(5, 6, 10, 0.55) 62%, rgba(5, 6, 10, 0.94) 100%),
    radial-gradient(70% 50% at 80% 0%, rgba(192, 38, 211, 0.22) 0%, transparent 70%);
}
.hero__content { max-width: 900px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(5, 6, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 12px #4ade80; }
@media (max-width: 560px) { .eyebrow { font-size: 10.5px; padding: 8px 14px; letter-spacing: 0.12em; } }
.hero h1 { margin-bottom: 22px; text-wrap: balance; }
.hero .lead { color: rgba(255, 255, 255, 0.88); margin-bottom: 36px; }
.hero .lead b { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 36px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 14px 44px; margin-bottom: 8px; }
.fact { display: grid; gap: 2px; }
.fact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.fact__value { font-weight: 700; font-size: 16px; }

/* ---- Countdown ----------------------------------------------------------------- */

.countdown { display: flex; gap: 12px; margin-top: 30px; }
.countdown__box {
  min-width: 88px;
  padding: 14px 10px 11px;
  text-align: center;
  background: rgba(5, 6, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.countdown__num { font-weight: 800; font-size: 36px; line-height: 1; letter-spacing: -0.02em; color: #fff; font-variant-numeric: tabular-nums; }
.countdown__label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); margin-top: 7px; }
@media (max-width: 560px) {
  .countdown { gap: 8px; }
  .countdown__box { min-width: 0; flex: 1; padding: 12px 6px 9px; }
  .countdown__num { font-size: 27px; }
}

/* ---- Ticker ---------------------------------------------------------------------- */

.ticker {
  border-top: 1px solid rgba(139, 92, 246, 0.25);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  background: linear-gradient(90deg, rgba(39, 100, 255, 0.08), rgba(124, 58, 237, 0.1));
  overflow: hidden;
  padding: 15px 0;
}
.ticker__track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker__track span::after { content: "✦"; color: var(--violet); margin-left: 52px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---- Promise -------------------------------------------------------------------------- */

.promise { padding: 92px 0; }
.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}
@media (max-width: 800px) { .promise__grid { grid-template-columns: 1fr; } }
.promise__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 22px 24px;
  color: var(--muted);
  font-size: 15.5px;
}
.promise__item b { color: var(--text); }
.promise__item .check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(39, 100, 255, 0.16);
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

/* ---- Pain ---------------------------------------------------------------------------- */

.pain { position: relative; isolation: isolate; overflow: hidden; }
.pain::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/pain-verpasst.jpg") center 25% / cover no-repeat;
  filter: blur(3px) brightness(0.62);
  transform: scale(1.05);
}
.pain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(18, 7, 40, 0.52) 26%, rgba(18, 7, 40, 0.6) 74%, var(--bg) 100%);
}
.pain__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 800px) { .pain__grid { grid-template-columns: 1fr; } }
.pain__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(16, 18, 29, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px 26px;
  color: var(--muted);
  font-size: 16.5px;
  backdrop-filter: blur(6px);
}
.pain__item .x {
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.12);
  color: var(--danger);
  font-weight: 800;
  font-size: 15px;
}
.pain .lead b { color: var(--text); }

/* ---- Quote-Band (volles Lila-Interstitial im ToddV-Stil) ------------------------------- */

.quoteband {
  background: linear-gradient(100deg, #8b1ff5 0%, #7311dd 60%, #5f0abc 100%);
  padding: clamp(70px, 9vw, 116px) 0;
  text-align: center;
}
.quoteband__text {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: #fff;
  max-width: 24em;
  margin: 0 auto;
  text-wrap: balance;
}
.quoteband__sub {
  margin: 24px auto 0;
  max-width: 44em;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}
.quoteband__sub b { color: #fff; }

.pain__punch {
  margin-top: 46px;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.55;
  color: var(--text);
  border-left: 3px solid var(--violet);
  padding-left: 26px;
  max-width: 46em;
}
.pain__punch b { color: var(--blue-soft); }

/* ---- Shift (Konzept) -------------------------------------------------------------------- */

.shift { position: relative; isolation: isolate; overflow: hidden; }
.shift::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/format-buehne.jpg") center 30% / cover no-repeat;
  filter: blur(1.5px) brightness(0.62);
  transform: scale(1.04);
}
.shift::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(5, 6, 10, 0.38) 25%, rgba(5, 6, 10, 0.46) 75%, var(--bg) 100%);
}
.shift .lead b { color: var(--text); }
.shift__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .shift__grid { grid-template-columns: 1fr; gap: 40px; } }
.shift__quote {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  margin: 22px 0 26px;
  text-wrap: balance;
}
.shift p { color: var(--muted); margin-bottom: 18px; }
.shift p b, .shift p strong { color: var(--text); }
.shift__points { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.shift__points li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); font-weight: 500; }
.shift__points .check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(39, 100, 255, 0.16);
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}
.shift__media { position: relative; }
.shift__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.shift__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.shift__badge b { color: var(--blue-soft); display: block; font-size: 15px; }

/* ---- Foto-Karten (ToddV-Style: Bild + Titel-Overlay + weiße Textkarte) ------------------------ */

.pcard {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.pcard:hover { transform: translateY(-6px); }
.pcard__media { position: relative; height: clamp(320px, 24vw, 430px); flex: none; isolation: isolate; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pcard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(91, 33, 182, 0) 40%, rgba(76, 22, 158, 0.92) 100%);
}
.pcard__num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(5, 6, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
}
.pcard__title {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 18px;
  z-index: 2;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  text-wrap: balance;
}
.pcard__body {
  padding: 22px 24px 28px;
  text-align: center;
  color: #3c4356;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.pcard__body b { color: var(--light-text); }
.pcard__list {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 11px;
  margin: 0;
}
.pcard__list li { padding-left: 20px; position: relative; }
.pcard__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 800;
}

/* ---- Benefits ------------------------------------------------------------------------------ */

.benefits { background: var(--bg-soft); }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .benefits__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ---- Agenda ----------------------------------------------------------------------------------- */

.intensive__list { display: grid; gap: 16px; }
.intensive__item {
  display: grid;
  grid-template-columns: 52px 1fr 1.45fr;
  gap: 26px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 34px;
  transition: border-color 0.25s ease;
}
.intensive__item:hover { border-color: rgba(139, 92, 246, 0.4); }
@media (max-width: 800px) {
  .intensive__item { grid-template-columns: 1fr; gap: 12px; padding: 26px 24px; }
}
.intensive__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39, 100, 255, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid var(--card-border);
  color: var(--blue-soft);
  font-size: 22px;
  line-height: 1;
}
.intensive__item h3 { font-size: clamp(20px, 2vw, 25px); font-weight: 800; letter-spacing: -0.01em; text-wrap: balance; }
.intensive__item p { color: var(--muted); font-size: 15.5px; }

/* ---- Coach / About -------------------------------------------------------------------------------- */

.coach { position: relative; isolation: isolate; overflow: hidden; }
.coach::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/coach-heute.jpg") 22% center / cover no-repeat;
  filter: blur(1.5px) brightness(0.62);
  transform: scale(1.04);
}
.coach::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.72) 0%, rgba(5, 6, 10, 0.35) 48%, rgba(5, 6, 10, 0.12) 70%),
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 6, 10, 0.42) 25%, rgba(5, 6, 10, 0.5) 75%, var(--bg) 100%);
}
.coach__content { max-width: 720px; }
.coach__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .coach__grid { grid-template-columns: 1fr; gap: 40px; } }
.coach__media { position: relative; }
.coach__media img.main { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.coach__then {
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 46%;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--bg-soft);
  box-shadow: var(--shadow);
}
.coach__then img { display: block; width: 100%; }
.coach__then span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 12px 8px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 10, 0.85));
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
@media (max-width: 900px) { .coach__then { right: 8px; bottom: -22px; } }
.coach__then--main {
  position: static;
  width: 100%;
  border: none;
  border-radius: var(--radius);
}
.coach__then--main span { font-size: 12px; padding: 26px 14px 12px; }
.coach p { color: var(--muted); margin-bottom: 18px; }
.coach p strong { color: var(--text); }
.coach__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
@media (max-width: 560px) { .coach__stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: rgba(16, 18, 29, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
}
.stat__num { font-weight: 800; font-size: 32px; letter-spacing: -0.02em; line-height: 1; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-top: 9px; }

/* ---- Proof-Strip (Foto-Karten im ToddV-Stil) --------------------------------------------------------- */

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.proof-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  isolation: isolate;
  transition: transform 0.25s ease;
}
.proof-card:hover { transform: translateY(-5px); }
.proof-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-grad);
  pointer-events: none;
}
.proof-card:hover { transform: translateY(-6px) scale(1.02); }
.blur-spot {
  position: absolute;
  border-radius: 50%;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.02);
  z-index: 2;
}
.proof__note {
  margin-top: 54px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  max-width: 46em;
  margin-left: auto;
  margin-right: auto;
}
.proof__privacy { display: inline-block; margin-top: 12px; font-size: 13.5px; color: var(--muted-2); }

/* ---- Testimonials -------------------------------------------------------------------------------------- */

.testis { background: var(--bg-soft); }
.testis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .testis__grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 14px; }
.testi__stars { color: var(--blue-soft); letter-spacing: 4px; font-size: 15px; }
.testi p { color: var(--muted); font-size: 15.5px; flex: 1; }
.testi__who { display: flex; align-items: center; gap: 14px; }
.testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
}
.testi__who b { display: block; font-size: 15px; }
.testi__who span { font-size: 13px; color: var(--muted-2); }

/* ---- Location -------------------------------------------------------------------------------------------- */

.location__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 14px; margin: 50px 0 36px; }
@media (max-width: 800px) { .location__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; } }
.location__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.location__grid img:first-child { grid-row: span 2; height: 100%; }
.location__grid img:nth-child(2), .location__grid img:nth-child(3) { grid-column: span 2; }
@media (max-width: 800px) {
  .location__grid img:first-child { grid-row: span 1; }
  .location__grid img:nth-child(2), .location__grid img:nth-child(3) { grid-column: span 1; }
  .location__grid img:nth-child(3) { grid-column: span 2; }
}
.location__facts { display: flex; flex-wrap: wrap; gap: 12px 30px; color: var(--muted); font-size: 15px; }
.location__facts span::before { content: "✦"; color: var(--violet); margin-right: 9px; font-size: 12px; }
.location__facts b { color: var(--text); }

/* ---- Tickets (helle Sektion im Tony-Stil) --------------------------------------------------------------------- */

.tickets { background: var(--light-bg); }
.tickets .kicker { color: var(--blue); }
.tickets h2 { color: var(--light-text); }
.tickets .lead { color: var(--light-muted); }
.tickets__for {
  list-style: none;
  max-width: 640px;
  margin: 26px auto 0;
  display: grid;
  gap: 13px;
  text-align: left;
}
.tickets__for li { display: flex; gap: 13px; align-items: flex-start; color: var(--light-muted); font-size: 16.5px; }
.tickets__for .check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(39, 100, 255, 0.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.tickets__grid { display: grid; justify-items: center; }
.ticket {
  position: relative;
  background: #fff;
  color: var(--light-text);
  border: 1px solid #e2e5ee;
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 34px rgba(11, 13, 22, 0.06);
}
.ticket--solo {
  width: min(620px, 100%);
  border: 2px solid var(--blue);
  box-shadow: 0 24px 60px rgba(39, 100, 255, 0.18);
  padding: 46px 44px;
}
@media (max-width: 560px) { .ticket--solo { padding: 36px 24px; } }
.ticket__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.ticket__name { font-weight: 800; font-size: 21px; letter-spacing: -0.01em; }
.ticket__tagline { color: var(--light-muted); font-size: 14px; margin: 6px 0 24px; }
.ticket__price { font-weight: 800; font-size: 52px; letter-spacing: -0.03em; line-height: 1; }
.ticket__price small { font-size: 22px; font-weight: 700; vertical-align: 20px; margin-right: 4px; }
.ticket__price-note { color: var(--light-muted); font-size: 13px; margin: 8px 0 26px; }
.ticket__price-note s { color: #d04b4b; }
.ticket ul { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; flex: 1; }

/* ---- Warteliste-Formular (helle Ticket-Karte) ---------------------------- */

.wl { display: grid; gap: 14px; text-align: left; }
.wl__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .wl__row { grid-template-columns: 1fr; } }

.wl__field { display: grid; gap: 7px; }
.wl__field > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: 0.01em;
}
.wl__field input {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--light-text);
  background: #f6f7fb;
  border: 1px solid #dfe3ee;
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wl__field input::placeholder { color: #9aa2b6; }
.wl__field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(39, 100, 255, 0.16);
}
/* Fehler erst nach Absendeversuch zeigen, nicht beim Tippen */
.wl.is-checked .wl__field input:invalid { border-color: #d04b4b; background: #fdf5f5; }

.wl__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--light-muted);
  margin-top: 2px;
}
.wl__consent input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--blue); flex: none; }
.wl__consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.wl.is-checked .wl__consent input:invalid { outline: 2px solid #d04b4b; outline-offset: 2px; }

.wl button[type="submit"] { width: 100%; margin-top: 6px; }
.wl button[disabled] { opacity: 0.6; pointer-events: none; }

.wl__status { font-size: 14px; line-height: 1.5; margin: 0; min-height: 1px; }
.wl__status.is-ok { color: #1c7a4a; font-weight: 600; }
.wl__status.is-error { color: #c33; font-weight: 600; }
.ticket ul li { display: flex; gap: 12px; font-size: 15px; color: var(--light-muted); }
.ticket ul li.strong { color: var(--light-text); font-weight: 600; }
.ticket ul .check { color: var(--blue); font-weight: 800; flex: none; }
.ticket .btn--ghost { color: var(--light-text); border-color: #c9cede; background: transparent; }
.ticket .btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.tickets__note { text-align: center; color: var(--light-muted); font-size: 14px; margin-top: 34px; }
.tickets__note b { color: var(--light-text); }

/* ---- FAQ ------------------------------------------------------------------------------------------------------- */

.faq__list { display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.faq__item { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue-soft); }
.faq__item summary .plus {
  flex: none;
  color: var(--blue-soft);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary .plus { transform: rotate(45deg); }
.faq__item[open] summary { color: var(--blue-soft); }
.faq__body { padding: 0 6px 28px; color: var(--muted); max-width: 60em; }
.faq__body b { color: var(--text); }

/* ---- Final CTA (Bild-Karte) --------------------------------------------------------------------------------------- */

.final { padding: 30px 0 110px; }
.final__card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  padding: clamp(60px, 9vw, 120px) clamp(24px, 5vw, 64px);
  isolation: isolate;
}
.final__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/location-ausblick.jpg") center 40% / cover no-repeat;
}
.final__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(91, 33, 182, 0.4) 0%, rgba(5, 6, 10, 0.72) 70%, rgba(5, 6, 10, 0.88) 100%);
}
.final .kicker { color: #fff; opacity: 0.85; }
.final h2 { font-size: clamp(34px, 5vw, 66px); }
.final .accent-text { background: linear-gradient(100deg, #a5c4ff, #c4b5fd); -webkit-background-clip: text; background-clip: text; }
.final .lead { margin: 0 auto 38px; color: rgba(255, 255, 255, 0.88); }
.final .lead b { color: #fff; }
.final .countdown { justify-content: center; margin: 0 0 40px; }

/* ---- Footer ---------------------------------------------------------------------------------------------------------- */

.footer { border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 44px 0 60px; background: var(--bg); }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
.footer__logo { font-weight: 800; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; }
.footer__logo span { color: var(--blue-soft); }
.footer nav { display: flex; flex-wrap: wrap; gap: 26px; font-size: 14px; }
.footer nav a { color: var(--muted-2); text-decoration: none; }
.footer nav a:hover { color: var(--blue-soft); }
.footer__legal { width: 100%; margin-top: 18px; color: var(--muted-2); font-size: 12.5px; max-width: 72em; }

/* ---- Legal-Seiten (Impressum / Datenschutz) ------------------------------------------------------------------------------ */

.legal { padding: 80px 0 110px; min-height: 60vh; }
.legal__back {
  display: inline-block;
  color: var(--blue-soft);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 34px;
}
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.legal h2 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; margin: 34px 0 10px; }
.legal p { color: var(--muted); font-size: 15.5px; }
.legal a { color: var(--blue-soft); }
.legal__stand { margin-top: 40px; font-size: 13px; color: var(--muted-2); }

/* ---- Scroll-Reveal ------------------------------------------------------------------------------------------------------ */

.reveal { opacity: 0; transform: translateY(26px); }
.reveal.on {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Cross-Link-Band (Startseite <-> Dates on Demand) ------------------------------------ */

.quoteband .btn { margin-top: 30px; }
