/* ============================================================
   Yogini Glow® – The Yogini Path Landingpage
   Corporate Design: DM Serif Display + Josefin Sans
   Schwarz #292233 · Rosa #FCBEFF · Lila #CEBDFF · Blau #B0DEF6
   ============================================================ */

:root {
  --dark: #292233;
  --dark-soft: #3a3247;
  --white: #ffffff;
  --rosa: #FCBEFF;
  --rosa-deep: #f49cf9;
  --lila: #CEBDFF;
  --blau: #B0DEF6;
  --lavender-bg: #f7f3fc;
  --lavender-bg-2: #f3ecfa;
  --text: #3b3447;
  --text-soft: #5d5570;
  --holo: linear-gradient(115deg, #FCBEFF 0%, #CEBDFF 35%, #B0DEF6 65%, #FCBEFF 100%);
  --serif: "DM Serif Display", serif;
  --sans: "Josefin Sans", sans-serif;
  --radius: 24px;
  --shadow-soft: 0 18px 50px -18px rgba(41, 34, 51, 0.18);
  --shadow-card: 0 10px 36px -12px rgba(41, 34, 51, 0.14);
}

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

html { scroll-behavior: smooth; }

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}

h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

h1 em, h2 em, h3 em, .chance__role em {
  font-style: italic;
  background: linear-gradient(100deg, #e58cf2 5%, #9d7df0 60%, #7fb6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

strong { font-weight: 600; }

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

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
  background: var(--rosa);
  border-radius: 999px;
  padding: 16px 34px 14px;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 10px 28px -10px rgba(244, 156, 249, .75);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn__icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; z-index: 1; }
.btn--small .btn__icon { width: 16px; height: 16px; }
.btn__label { position: relative; z-index: 1; }

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px -10px rgba(244, 156, 249, .95);
  background: var(--rosa-deep);
}

.btn--big {
  padding: 20px 44px 18px;
  font-size: 1.08rem;
}

.btn--small {
  padding: 11px 22px 9px;
  font-size: .85rem;
}

/* Schimmer-Effekt */
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 55% { left: -80%; }
  85%, 100% { left: 130%; }
}

/* Animierter Doppelrahmen (zweiter Rahmen, der pulsiert) – alle Haupt-CTAs */
.btn--primary {
  animation: ctaFrame 2.4s ease-in-out infinite;
}

@keyframes ctaFrame {
  0%, 100% {
    box-shadow: 0 10px 26px -14px rgba(244, 156, 249, .5),
                0 0 0 4px transparent,
                0 0 0 5.5px rgba(244, 156, 249, .3);
  }
  50% {
    box-shadow: 0 12px 30px -12px rgba(244, 156, 249, .6),
                0 0 0 4px transparent,
                0 0 0 6px rgba(244, 156, 249, .85);
  }
}

/* Der finale CTA pulsiert etwas kräftiger */
.btn--glow {
  animation: ctaFrameStrong 2.2s ease-in-out infinite;
}

@keyframes ctaFrameStrong {
  0%, 100% {
    box-shadow: 0 12px 30px -14px rgba(252, 190, 255, .55),
                0 0 0 4px transparent,
                0 0 0 5.5px rgba(244, 156, 249, .4);
  }
  50% {
    box-shadow: 0 14px 34px -10px rgba(252, 190, 255, .7),
                0 0 0 4px transparent,
                0 0 0 6.5px rgba(244, 156, 249, 1);
  }
}

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 34px 0 0;
}

.cta-block--center { margin-top: 48px; }

.cta-block__micro {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: .03em;
}

.cta-block__micro--light { color: rgba(255,255,255,.75); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 22px 9px;
  border-radius: 999px;
}

.badge--live {
  background: var(--white);
  color: var(--dark);
  border: 1px solid rgba(41,34,51,.12);
  box-shadow: var(--shadow-card);
}

.badge--date {
  background: var(--holo);
  background-size: 200% 200%;
  animation: holoShift 6s ease infinite;
  color: var(--dark);
}

@keyframes holoShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.live-dot {
  width: 10px; height: 10px;
  background: #e8484d;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 72, 77, .5); }
  50% { opacity: .65; box-shadow: 0 0 0 7px rgba(232, 72, 77, 0); }
}

/* ---------- Sticky Bar ---------- */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  color: var(--white);
  transform: translateY(-110%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.sticky-bar.is-visible { transform: translateY(0); }

.sticky-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sticky-bar__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sticky-bar__count {
  font-size: .9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--rosa);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--lavender-bg) 100%);
  padding: 88px 0 90px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Echtes Foto als Trust-Hintergrund (Desktop) – zentrierter Wrapper,
   Maske skaliert mit dem Bild, nicht mit dem Viewport */
.hero__photo {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 104vw);
  height: 780px;
  background-image:
    radial-gradient(ellipse 420px 380px at 50% 34%, rgba(252, 248, 255, .96) 38%, rgba(252, 248, 255, .68) 68%, rgba(252, 248, 255, 0) 100%),
    linear-gradient(180deg, rgba(252, 248, 255, .15) 0%, rgba(250, 245, 253, .25) 38%, rgba(247, 243, 252, .85) 72%, var(--lavender-bg) 92%),
    url("assets/hero-bg.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center 20%;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 42%, #000 48%, rgba(0,0,0,.5) 72%, transparent 96%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 42%, #000 48%, rgba(0,0,0,.5) 72%, transparent 96%);
}

.holo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}

.holo-blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rosa) 0%, transparent 70%);
  top: -160px; right: -120px;
}

.holo-blob--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--lila) 0%, transparent 70%);
  bottom: -80px; left: -140px;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__preheadline {
  margin-top: 28px;
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 820px;
  color: var(--dark);
}

.hl {
  font-weight: 600;
  background: linear-gradient(180deg, transparent 58%, var(--rosa) 58%);
  padding: 0 3px;
}

.hero__headline {
  margin-top: 18px;
  font-size: clamp(2.3rem, 6.4vw, 4.1rem);
  max-width: 900px;
}

.hero__sub {
  margin-top: 22px;
  max-width: 700px;
  font-size: clamp(1.02rem, 2.3vw, 1.18rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark);
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
}

.countdown__unit {
  background: var(--white);
  border: 1px solid rgba(41,34,51,.08);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  min-width: 78px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown__num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 400;
}

.countdown__sep {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--lila);
  padding-top: 14px;
}

.countdown--final .countdown__unit {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.countdown--final .countdown__num { color: var(--white); }
.countdown--final .countdown__label { color: rgba(255,255,255,.65); }
.countdown--final .countdown__sep { color: var(--rosa); }

/* ---------- Hero: Mobile-Foto & Presse-Leiste ---------- */
.hero__mobile-photo {
  display: none;
  margin-top: 44px;
  width: 264px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,255,255,.85), 0 0 0 7px rgba(206,189,255,.55), 0 24px 50px -18px rgba(41,34,51,.3);
}

.press {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.press__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 44px;
}

.press__logos img {
  height: 30px;
  width: auto;
  filter: grayscale(1) brightness(.45);
  opacity: .55;
  transition: filter .3s ease, opacity .3s ease;
}

.press__logos img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

/* ---------- Sections base ---------- */
.section { padding: 96px 0; position: relative; overflow: hidden; }

.section__headline {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 18px;
}

.section__headline--light { color: var(--white); }

.section__eyebrow {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a07fd9;
  margin-bottom: 14px;
}

/* ---------- Problem (Geistige Brandstiftung) ---------- */
.section--problem {
  background: var(--white);
  position: relative;
}

.section--problem .container { position: relative; z-index: 1; }

/* Dezenter Pill-Hintergrund – exakt hinter der Headline, auf Spaltenbreite */
.problem__text { position: relative; }

.problem__text > *:not(.pills-bg) { position: relative; z-index: 1; }

.pills-bg {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
  opacity: .3;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.75) 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.75) 70%, transparent 100%);
  pointer-events: none;
}

.pills-bg__row {
  display: flex;
  justify-content: center;
  gap: 16px;
  white-space: nowrap;
}

.pills-bg__row--offset { margin-left: -90px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px 6px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(41,34,51,.09);
  box-shadow: 0 4px 14px -6px rgba(41,34,51,.12);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-soft);
  flex-shrink: 0;
}

.pill img { width: 12px; height: auto; opacity: .5; }

.problem__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.problem__text h2 { margin-bottom: 26px; }
.problem__text p { margin-bottom: 18px; }

/* Umkringelter Satz – lesbar statt durchgestrichen */
.quote-circle {
  font-style: italic;
  color: var(--text-soft);
  position: relative;
  white-space: nowrap;
  display: inline-block;
  padding: 0 4px;
}

.quote-circle::after {
  content: "";
  position: absolute;
  inset: -7px -12px -9px -10px;
  border: 2.5px solid var(--rosa-deep);
  border-radius: 50%;
  transform: rotate(-2.5deg);
  opacity: .85;
}

.problem__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Yoga boomt – bündig in der linken Spalte */
.boom { margin-top: 38px; text-align: left; }

.boom__headline { font-size: clamp(1.4rem, 2.8vw, 1.8rem); font-family: var(--serif); color: var(--dark); }

.boom__sub { margin-top: 8px; color: var(--text-soft); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stat {
  background: var(--lavender-bg);
  border-radius: 18px;
  padding: 20px 16px 18px;
  transition: transform .3s ease;
}

.stat:hover { transform: translateY(-4px); }

.stat__num {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  display: block;
  background: linear-gradient(100deg, #e58cf2 10%, #9d7df0 60%, #7fb6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat__text {
  display: block;
  margin-top: 8px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* ---------- Chance ---------- */
.section--chance { background: var(--lavender-bg); }

.chance__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.chance__image { position: relative; max-width: 380px; margin: 0 auto; }

.chance__image img:first-child {
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.chance__text h2 { margin-bottom: 8px; }

.chance__role {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  margin-bottom: 22px;
}

.chance__text p { margin-bottom: 16px; }

.noch { font-weight: 600; font-style: italic; }

/* ---------- Target ---------- */
.section--target { background: var(--white); }

.target__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(41,34,51,.08);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px -16px rgba(41,34,51,.22);
}

.card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--holo);
  background-size: 200% 200%;
  animation: holoShift 7s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon img { width: 26px; height: auto; }

.card__icon svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 12px; font-size: 1.3rem; }

.card p { font-size: .98rem; color: var(--text-soft); }

.target__closing {
  text-align: center;
  margin-top: 44px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Inhalt (dunkle Sektion) ---------- */
.section--content {
  background: radial-gradient(120% 130% at 50% 0%, var(--dark-soft) 0%, var(--dark) 60%);
  text-align: center;
}

.section--content .badge { margin-bottom: 22px; }

.content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: center;
}

.content-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.09);
}

.content-card__visual {
  position: relative;
  width: 116px;
  margin: 0 auto 22px;
}

.content-card__visual svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(252, 190, 255, .25));
}

.content-card__num {
  position: absolute;
  top: -2px;
  right: -10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--holo);
  background-size: 200% 200%;
  animation: holoShift 7s ease infinite;
  color: var(--dark);
  font-family: var(--serif);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.4);
}

.content-card h3 { color: var(--white); margin-bottom: 14px; font-size: 1.35rem; }

.content-card p { color: rgba(255,255,255,.78); font-size: .97rem; }

/* ---------- Social Proof ---------- */
.section--proof { background: var(--white); }

.proof__head { text-align: center; margin-bottom: 50px; }

/* Pre-Headline: 750+ ... Teilnehmerinnen */
.proof__pre {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.proof__big {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(100deg, #e58cf2 5%, #9d7df0 55%, #7fb6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main-Headline */
.proof__title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  max-width: 760px;
  margin: 0 auto;
}

/* Eine Karte mit Masonry-Anordnung – Bilder wie Puzzleteile dicht gepackt */
.proof__card {
  background: linear-gradient(160deg, var(--lavender-bg) 0%, #f1ecf9 100%);
  border: 1px solid rgba(41,34,51,.06);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-card);
  max-width: 880px;
  margin: 0 auto;
}

/* Zwei feste Spalten (robustes manuelles Masonry – immer 2-spaltig) */
.proof__cols {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.proof__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof__shot {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px -6px rgba(41,34,51,.16);
  transition: transform .3s ease;
}

.proof__shot img { width: 100%; display: block; border-radius: 14px; }

.proof__shot:hover { transform: translateY(-2px); }

/* ---------- Hosts (editoriales Layout, alternierend) ---------- */
.section--hosts { background: var(--lavender-bg); }

.hosts__list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.host-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

/* Gespiegelte Zeile: Spaltenbreiten tauschen, damit das Bild
   exakt so groß bleibt wie in der normalen Zeile (0.82fr) */
.host-row--reverse { grid-template-columns: 1.18fr 0.82fr; }
.host-row--reverse .host-row__media { order: 2; }

/* Bild-Bereich mit Offset-Farbblock für Tiefe */
.host-row__media {
  position: relative;
  border-radius: 26px;
  aspect-ratio: 5 / 6;
  isolation: isolate;
}

.host-row__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  transform: translate(16px, 16px);
  z-index: -1;
}

.host-row__media--catrin::before { background: linear-gradient(150deg, var(--lila), var(--rosa)); }
.host-row--reverse .host-row__media::before { transform: translate(-16px, 16px); }
.host-row__media--pierre::before { background: linear-gradient(150deg, var(--blau), var(--lila)); }

.host-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

/* schwebendes Label am Bild */
.host-row__chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 15px 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--dark);
  box-shadow: 0 6px 18px -8px rgba(41,34,51,.3);
}

.host-row__chip img { width: 13px; height: auto; }

.host-row__name { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }

.host-row__role {
  margin-top: 8px;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #a07fd9;
}

.host-row__bio { margin-top: 22px; }

.host-row__bio p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-soft);
}

.host-row__bio p:last-child { margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.section--final {
  background:
    radial-gradient(90% 80% at 80% 10%, rgba(206,189,255,.25) 0%, transparent 60%),
    radial-gradient(80% 90% at 15% 90%, rgba(252,190,255,.2) 0%, transparent 55%),
    var(--dark);
  padding: 120px 0;
}

.final__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final__content h2 {
  color: var(--white);
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  max-width: 760px;
  margin-bottom: 28px;
}

.final__text {
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.badge--final {
  margin-top: 26px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.section--final .countdown { margin-top: 32px; }

/* ---------- Footer ---------- */
.footer {
  background: #211b2b;
  padding: 64px 0 40px;
}

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

.footer__logo { height: 60px; width: auto; }

.footer__tagline {
  margin-top: 16px;
  font-family: var(--serif);
  color: var(--rosa);
  font-size: 1.1rem;
}

.footer__links {
  margin-top: 26px;
  display: flex;
  gap: 28px;
}

.footer__links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}

.footer__links a:hover { color: var(--rosa); }

.footer__disclaimer {
  margin-top: 30px;
  max-width: 720px;
  font-size: .74rem;
  line-height: 1.6;
  color: rgba(255,255,255,.38);
}

.footer__copy {
  margin-top: 22px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Deko & Animationen ---------- */
.deco { position: absolute; pointer-events: none; }

.deco--float { animation: floaty 5.5s ease-in-out infinite; }
.deco--float-slow { animation: floaty 8.5s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .deco--float, .deco--float-slow, .btn--primary::after, .btn--glow { animation: none; }
}

/* ---------- Responsive ---------- */
.br-desktop { display: inline; }

@media (max-width: 920px) {
  /* Hintergrundfoto ausblenden – Mobil zeigt das runde Gruppenbild */
  .hero__photo { display: none; }

  .hero__mobile-photo { display: block; }

  .hero { padding-top: 48px; }

  .problem__grid,
  .chance__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .chance__image { order: -1; max-width: 280px; }

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

  .problem__image { max-width: 440px; margin: 0 auto; }

  /* Hosts: Bild über Text gestapelt */
  .host-row,
  .host-row--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .host-row--reverse .host-row__media { order: 0; }

  .host-row__media {
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .host-row__role { max-width: 420px; margin-left: auto; margin-right: auto; }

  .host-row__bio { text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }

  .hosts__list { gap: 48px; }
}

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

  body { font-size: 16px; }

  .br-desktop { display: none; }

  /* CTAs auf Mobile kompakter & einzeilig */
  .btn--big { padding: 15px 24px 13px; font-size: .88rem; gap: 8px; }
  .btn--big .btn__icon { width: 17px; height: 17px; }
  .cta-block__micro { font-size: .8rem; }

  /* Yoga-Duo-Bild nur auf Mobile ausblenden */
  .problem__image { display: none; }

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

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

  .countdown { gap: 6px; }

  .countdown__unit { min-width: 64px; padding: 11px 6px 9px; }

  .countdown__num { font-size: 1.5rem; }

  .countdown__sep { display: none; }

  .hero { padding: 36px 0 70px; }

  .press { margin-top: 44px; }

  .press__logos { gap: 14px; flex-wrap: nowrap; }

  .press__logos img { height: 15px; }

  .sticky-bar__count { display: none; }

  .host-row__media { max-width: 300px; }

  .card { padding: 30px 24px 26px; }

  /* 2 Spalten bleiben kompakt bis hinunter zu echten Smartphones */
  .proof__card { padding: 12px; }

  .proof__cols { gap: 10px; }

  .proof__col { gap: 10px; }
}

/* Echte Smartphone-Breite: eine Spalte, voll lesbar */
@media (max-width: 560px) {
  .proof__cols { flex-direction: column; gap: 12px; }

  .proof__col { gap: 12px; max-width: 380px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   Pop-up Anmelde-Modal
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open { display: flex; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 34, 51, .55);
  backdrop-filter: blur(4px);
  animation: modalFade .3s ease;
}

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #fffdff 0%, var(--lavender-bg) 100%);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(41, 34, 51, .5);
  padding: 40px 36px 34px;
  text-align: center;
  animation: modalPop .35s cubic-bezier(.22, 1, .36, 1);
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes modalPop {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(41, 34, 51, .06);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s ease;
}
.modal__close:hover { background: rgba(41, 34, 51, .12); }

.modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 16px 6px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.modal__title {
  font-size: clamp(1.5rem, 4.5vw, 1.95rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.modal__sub {
  font-size: .98rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.modal__form { text-align: left; }

.field { display: block; margin-bottom: 16px; }

.field__label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: .01em;
}

.field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  padding: 14px 16px;
  border: 1.5px solid rgba(41, 34, 51, .14);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: #b3acc0; }
.field input:focus {
  outline: none;
  border-color: var(--rosa-deep);
  box-shadow: 0 0 0 4px rgba(252, 190, 255, .35);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--text-soft);
  margin-bottom: 18px;
  cursor: pointer;
}
.consent input {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  accent-color: var(--rosa-deep);
  flex-shrink: 0;
}
.consent a { color: #a07fd9; }

.modal__error {
  background: #fde8ee;
  color: #c0395e;
  font-size: .85rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.modal__submit { width: 100%; }

.modal__micro {
  text-align: center;
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: 14px;
}

/* ============================================================
   Cookie-Banner
   ============================================================ */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  transform: translateY(120%);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
  padding: 16px;
}
.cookie.is-visible { transform: translateY(0); }

.cookie__inner {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--dark);
  color: rgba(255, 255, 255, .9);
  border-radius: 18px;
  box-shadow: 0 20px 50px -16px rgba(41, 34, 51, .6);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cookie__text { font-size: .88rem; line-height: 1.5; flex: 1; }
.cookie__text a { color: var(--rosa); text-decoration: underline; }

.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie__btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 22px 9px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.cookie__btn--accept { background: var(--rosa); color: var(--dark); }
.cookie__btn--accept:hover { background: var(--rosa-deep); transform: translateY(-1px); }
.cookie__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 1.5px solid rgba(255, 255, 255, .25);
}
.cookie__btn--ghost:hover { background: rgba(255, 255, 255, .08); }

@media (max-width: 640px) {
  .cookie__inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px; }
  .cookie__actions { justify-content: stretch; }
  .cookie__btn { flex: 1; }
  .modal__dialog { padding: 58px 20px 28px; }
  .modal__badge { font-size: .72rem; padding: 7px 14px 5px; }
}

/* ============================================================
   Übergangs-Pfeil zwischen Brandstiftung & Chance
   ============================================================ */
.section-arrow {
  position: relative;
  z-index: 5;
  height: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  pointer-events: none;
}
.section-arrow svg {
  position: absolute;
  left: 50%;
  top: -132px;
  transform: translateX(-50%) rotate(4deg);
  width: 120px;
  height: 210px;
  filter: drop-shadow(0 6px 14px rgba(157, 125, 240, .25));
  /* Draw-in: von oben nach unten aufdecken */
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s ease, -webkit-clip-path 1.4s ease;
}
.section-arrow.is-drawn svg {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

@media (max-width: 700px) {
  .section-arrow svg { width: 92px; height: 162px; top: -104px; transform: translateX(calc(-50% + 38px)) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .section-arrow svg { transition: none; -webkit-clip-path: none; clip-path: none; }
}

/* Sehr schmale Smartphones: CTA garantiert einzeilig */
@media (max-width: 400px) {
  .btn--big { font-size: .8rem; padding: 14px 18px 12px; }
  .btn--big .btn__icon { width: 16px; height: 16px; }
}

/* Sticky-Bar auf Mobile kompakter */
@media (max-width: 700px) {
  .sticky-bar__inner { padding: 8px 14px; gap: 10px; }
  .sticky-bar__live { font-size: .72rem; letter-spacing: .02em; white-space: nowrap; }
  .sticky-bar .btn--small { padding: 9px 15px 7px; font-size: .76rem; gap: 7px; }
  .sticky-bar .btn__icon { width: 14px; height: 14px; }
}
