/* ── Full-bleed video hero with text overlay ───────────────────────────
   The fertilisation-process video fills the entire hero section as a
   background; the headline, CTAs, and stats sit on top with a gradient
   scrim behind them for legibility. A caption bar at the bottom stays
   synced to the video's playback position and lets visitors jump to a
   specific stage. */

.hero-video-hero {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0e0410; /* shows briefly before the video paints */
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(42,10,30,0.75) 0%, rgba(42,10,30,0.55) 40%, rgba(20,6,14,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 24px 40px;
}
.hero-content .kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--bright-pink); font-weight: 700; margin-bottom: 14px; }
.hero-content h1 { font-size: 40px; margin: 0 0 16px; font-weight: 700; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.hero-content p { font-size: 18px; max-width: 640px; margin: 0 auto 30px; color: rgba(255,255,255,0.92); }
.hero-content .stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; margin-top: 44px; }
.hero-content .stat { text-align: center; }
.hero-content .stat .num { font-size: 26px; font-weight: 700; color: var(--bright-pink); }
.hero-content .stat .lbl { font-size: 12px; color: rgba(255,255,255,0.85); max-width: 130px; }

/* Caption + stage-jump bar, pinned over the bottom of the video */
.hero-video-caption-bar {
  position: relative;
  z-index: 2;
  padding: 26px 24px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20,6,14,0) 0%, rgba(20,6,14,0.55) 35%, rgba(20,6,14,0.8) 100%);
}
.journey-stage-title {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bright-pink);
  font-weight: 700;
  margin-bottom: 4px;
}
.journey-stage-caption {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  min-height: 18px;
}

.journey-controls { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.journey-dot {
  border: 1px solid rgba(255,255,255,0.4); background: rgba(20,6,14,0.35); color: rgba(255,255,255,0.85);
  font-size: 11px; padding: 6px 11px; border-radius: 999px; cursor: pointer; font-weight: 600;
  transition: all 0.2s ease; backdrop-filter: blur(2px);
}
.journey-dot:hover { border-color: var(--bright-pink); color: #fff; }
.journey-dot.active { background: var(--bright-pink); border-color: var(--bright-pink); color: #3a0a22; }

@media (max-width: 720px) {
  .hero-video-hero { min-height: 560px; }
  .hero-content { padding: 70px 20px 30px; }
  .hero-content h1 { font-size: 28px; }
}
