/* =========================================================================
   Cosmica home page — page-specific styles
   Hero (cosmic flythrough → Earth orbit) + Products (side-by-side split)
   ========================================================================= */

/* ============ HERO ============ */

.hero {
  position: relative;
  height: 200vh;
  width: 100%;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.cosmic-field { position: absolute; inset: 0; z-index: 0; }
.cosmic-field canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.nebula-bloom {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 25%, rgba(107,127,215,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(42,52,112,0.15) 0%, transparent 65%);
  will-change: opacity;
}

.earth-container {
  position: absolute;
  bottom: -85%;
  left: 50%;
  width: 200vw;
  height: 200vw;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  will-change: bottom, opacity;
}

.earth-svg { width: 100%; height: 100%; display: block; }

.earth-glow {
  position: absolute;
  bottom: -85%;
  left: 50%;
  width: 210vw;
  height: 210vw;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at center,
    transparent 47%,
    rgba(107,159,232,0.25) 49%,
    rgba(181,212,245,0.4) 50%,
    rgba(107,159,232,0.18) 52%,
    transparent 58%
  );
  filter: blur(3px);
  will-change: opacity;
}

.sun-glow {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 35%;
  height: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,240,220,0.25) 0%,
    rgba(255,210,170,0.15) 20%,
    rgba(154,168,228,0.1) 40%,
    transparent 65%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  will-change: opacity;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 30% 50%, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 25%, transparent 75%);
  will-change: opacity;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  will-change: opacity, transform;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(48px, 7.4vw, 112px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  max-width: 1150px;
  color: var(--text-primary);
}

/* Outer line clips for the reveal animation, but height includes descender space */
.hero-headline-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero-headline-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline-line:nth-child(1) span { animation-delay: 0.25s; }
.hero-headline-line:nth-child(2) span { animation-delay: 0.45s; }

.hero-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 50%, var(--cosmic-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-sub {
  font-family: var(--body);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.0s forwards;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
  z-index: 10;
  will-change: opacity;
}

.scroll-cue-label {
  font-family: var(--body);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-tertiary);
  font-weight: 400;
}

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 16px;
  background: var(--starlight);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.orbital-caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.orbital-caption-label {
  font-family: var(--body);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
}

.orbital-caption-tagline {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
  max-width: 600px;
}

/* ============ SLIDE 2 — PRODUCTS (side-by-side split) ============ */

.products-section {
  position: relative;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 12%, var(--bg) 100%);
}

.products-intro {
  position: relative;
  padding: 160px 48px 80px;
  text-align: center;
  z-index: 5;
}

.products-intro-eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
  margin-bottom: 24px;
}

.products-intro-headline {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 20px;
}

.products-intro-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.products-intro-sub {
  font-family: var(--body);
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Side-by-side split */
.products-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.product-half {
  position: relative;
  padding: 60px 48px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-half-organage {
  background:
    radial-gradient(ellipse 90% 70% at 30% 50%, rgba(212,133,46,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(91,46,15,0.30) 0%, transparent 65%),
    linear-gradient(to right, #0A0608 0%, #1A0E04 70%, #1F1004 100%);
}

.product-half-beyondage {
  background:
    radial-gradient(ellipse 90% 70% at 70% 50%, rgba(44,51,180,0.24) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(235,37,15,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(15,21,71,0.40) 0%, transparent 65%),
    linear-gradient(to left, #050720 0%, #080A28 70%, #060818 100%);
}

.product-half::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.product-half-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.product-half-ambient canvas {
  width: 100%;
  height: 100%;
}

.product-half-glow {
  position: absolute;
  bottom: -20%;
  width: 80%;
  height: 60%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}

.product-half-organage .product-half-glow {
  left: -10%;
  background: radial-gradient(ellipse, rgba(212,133,46,0.18) 0%, transparent 70%);
}

.product-half-beyondage .product-half-glow {
  right: -10%;
  background: radial-gradient(ellipse, rgba(79,88,217,0.20) 0%, transparent 70%);
}

/* Center seam */
.products-seam {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(107,127,215,0.15) 12%,
    rgba(154,168,228,0.35) 50%,
    rgba(107,127,215,0.15) 88%,
    transparent 100%
  );
}

.products-seam::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100px;
  transform: translateX(-49px);
  background: radial-gradient(
    ellipse 50px 60% at center,
    rgba(107,127,215,0.10) 0%,
    transparent 70%
  );
  filter: blur(20px);
}

.product-half-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 520px;
  gap: 24px;
}

/* Product logo block — real wordmark images */
.product-half-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 4px;
}

.product-half-logo-img {
  height: clamp(40px, 4.5vw, 64px);
  width: auto;
  display: block;
  max-width: 100%;
  /* Subtle drop shadow so logo reads cleanly on the gradient bg */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

/* Mark used elsewhere — kept for potential reuse but no longer in product half */
.product-half-logo-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* The product visual (image floats on brand atmosphere) */
.product-half-visual {
  width: clamp(280px, 28vw, 380px);
  aspect-ratio: 1 / 1;
  margin: 8px 0;
  position: relative;
}

/* BeyondAge image is wider (3:2). Give its visual box a wider aspect so the image
   fills the container rather than letterboxing inside a square. */
.product-half-beyondage .product-half-visual {
  width: clamp(340px, 36vw, 480px);
  aspect-ratio: 3 / 2;
}

.product-half-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Tint overlay — kept very subtle for floating PNGs to read naturally */
.product-half-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-half-organage .product-half-visual::after {
  background: radial-gradient(ellipse at center, transparent 70%, rgba(91,46,15,0.15) 100%);
}

.product-half-beyondage .product-half-visual::after {
  background: radial-gradient(ellipse at center, transparent 70%, rgba(15,21,71,0.20) 100%);
}

/* Fallback placeholder if image not present */
.product-half-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  padding: 24px;
}

.product-half-organage .product-half-visual-placeholder {
  background: radial-gradient(ellipse at center, rgba(212,133,46,0.18) 0%, rgba(91,46,15,0.4) 100%);
}

.product-half-beyondage .product-half-visual-placeholder {
  background: radial-gradient(ellipse at center, rgba(79,88,217,0.18) 0%, rgba(15,21,71,0.4) 100%);
}

.product-half-tagline {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
  max-width: 460px;
}

.product-half-organage .product-half-tagline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--oa-soft), var(--oa-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.product-half-beyondage .product-half-tagline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--ba-soft), var(--ba-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.product-half-description {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 440px;
}

/* Stat row */
.product-half-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 440px;
}

.product-half-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.product-half-stat-value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}

.product-half-organage .product-half-stat-value {
  background: linear-gradient(120deg, var(--oa-soft), var(--oa-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-half-beyondage .product-half-stat-value {
  background: linear-gradient(120deg, var(--ba-soft), var(--ba-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-half-stat-label {
  font-family: var(--body);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  font-weight: 400;
}

.product-half-stat-divider {
  width: 1px;
  height: 26px;
  background: var(--border-subtle);
}

/* Product-specific CTAs */
.product-half-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.btn-half-primary {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.product-half-organage .btn-half-primary {
  background: linear-gradient(120deg, var(--oa-soft), var(--oa-primary));
  color: #1A0E04;
}

.product-half-beyondage .btn-half-primary {
  background: linear-gradient(120deg, var(--ba-soft), var(--ba-accent));
  color: var(--text-primary);
}

.btn-half-primary:hover { transform: translateY(-2px); }

.product-half-organage .btn-half-primary:hover {
  box-shadow: 0 12px 32px rgba(240,168,48,0.4);
}

.product-half-beyondage .btn-half-primary:hover {
  box-shadow: 0 12px 32px rgba(79,88,217,0.45);
}

.btn-half-primary svg { transition: transform 0.25s ease; }
.btn-half-primary:hover svg { transform: translateX(3px); }

.btn-half-secondary {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.product-half-organage .btn-half-secondary:hover { color: var(--oa-accent); }
.product-half-beyondage .btn-half-secondary:hover { color: var(--ba-soft); }
.btn-half-secondary svg { transition: transform 0.25s ease; }
.btn-half-secondary:hover svg { transform: translateX(3px); }

/* Reveal animation */
.product-half-content > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-half.in-view .product-half-content > * { opacity: 1; transform: translateY(0); }
.product-half.in-view .product-half-content > *:nth-child(1) { transition-delay: 0.05s; }
.product-half.in-view .product-half-content > *:nth-child(2) { transition-delay: 0.15s; }
.product-half.in-view .product-half-content > *:nth-child(3) { transition-delay: 0.30s; }
.product-half.in-view .product-half-content > *:nth-child(4) { transition-delay: 0.40s; }
.product-half.in-view .product-half-content > *:nth-child(5) { transition-delay: 0.50s; }
.product-half.in-view .product-half-content > *:nth-child(6) { transition-delay: 0.60s; }

/* Mobile: stack vertically */
@media (max-width: 968px) {
  .products-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .products-seam {
    left: 0; right: 0; top: 50%;
    width: auto; height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(107,127,215,0.15) 12%,
      rgba(154,168,228,0.35) 50%,
      rgba(107,127,215,0.15) 88%,
      transparent 100%
    );
  }
  .products-seam::before { display: none; }
  .product-half { padding: 80px 32px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 60px 24px 0; }
  .hero-headline { font-size: clamp(40px, 11vw, 64px); }
  .hero-ctas { gap: 6px; }
  .scroll-cue { bottom: 24px; }
  .orbital-caption { bottom: 60px; }
  .products-intro { padding: 100px 24px 50px; }
  .product-half { padding: 60px 20px; }
  .product-half-visual { width: 260px; }
  .product-half-beyondage .product-half-visual { width: 300px; aspect-ratio: 3 / 2; }
  .product-half-stat-row { gap: 14px; }
  .product-half-stat-value { font-size: 19px; }
}

/* ============ SLIDE 3 — SCIENTIFIC ENDORSEMENTS (marquee) ============ */

.endorsements-section {
  position: relative;
  background: var(--bg);
  padding: 140px 0 160px;
  overflow: hidden;
}

/* Subtle cosmic atmosphere — different from products section to feel like a distinct world */
.endorsements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(107,127,215,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(42,52,112,0.10) 0%, transparent 65%);
}

/* Ambient star field canvas */
.endorsements-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.endorsements-ambient canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.endorsements-intro {
  position: relative;
  z-index: 5;
  padding: 0 48px 80px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.endorsements-eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
  margin-bottom: 24px;
}

.endorsements-headline {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 20px;
}

.endorsements-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.endorsements-sub {
  font-family: var(--body);
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* The marquee — outer wrapper with fade masks on both edges */
.endorsements-marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  /* Fade out cards as they approach edges so they don't hard-cut */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The track that holds the cards (twice the content for seamless loop) */
.endorsements-track {
  display: flex;
  gap: 28px;
  width: max-content;
  /* Animation is JS-driven for pause-on-hover precision */
  will-change: transform;
}

.endorsements-track:hover {
  /* Visual hint that interaction is happening; actual pause handled in JS */
}

/* Individual quote card */
.endorsement-card {
  flex-shrink: 0;
  width: clamp(340px, 28vw, 440px);
  padding: 36px 36px 32px;
  background: linear-gradient(
    160deg,
    rgba(28, 28, 40, 0.6) 0%,
    rgba(20, 20, 30, 0.4) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

/* Subtle glow on hover */
.endorsement-card:hover {
  border-color: var(--border-strong);
}

/* Decorative quotation mark */
.endorsement-card::before {
  content: """;
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--display);
  font-size: 140px;
  font-weight: 400;
  color: rgba(107, 127, 215, 0.12);
  line-height: 1;
  pointer-events: none;
}

.endorsement-quote {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.endorsement-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.endorsement-name {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.endorsement-title {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Pause indicator (subtle, appears on hover) */
.endorsements-marquee::after {
  content: "Hover to pause";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--body);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-tertiary);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.endorsements-marquee:hover::after {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .endorsements-section { padding: 80px 0 100px; }
  .endorsements-intro { padding: 0 24px 50px; }
  .endorsement-card {
    width: clamp(280px, 80vw, 340px);
    padding: 28px 28px 24px;
  }
  .endorsements-track { gap: 18px; }
  .endorsement-quote { font-size: 15px; }
}

/* ============ SLIDE: PURPOSE (manifesto + 3 pillars) ============ */

.purpose-section {
  position: relative;
  background: var(--bg);
  padding: 160px 48px 180px;
  overflow: hidden;
}

/* Ambient cosmic backdrop — quiet, consistent with parent brand */
.purpose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(107,127,215,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(42,52,112,0.10) 0%, transparent 65%);
}

.purpose-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.purpose-ambient canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.purpose-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.purpose-eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
  margin-bottom: 28px;
}

.purpose-headline {
  font-family: var(--display);
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  max-width: 1000px;
  margin: 0 auto 36px;
}

.purpose-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 60%, var(--cosmic-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.purpose-paragraph {
  font-family: var(--body);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 96px;
}

/* Three pillars */
.purpose-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.purpose-pillar {
  text-align: left;
  padding: 32px 28px;
  position: relative;
  border-top: 1px solid var(--border-subtle);
  transition: border-color 0.4s ease;
}

/* Subtle accent line at top of each pillar — different per pillar */
.purpose-pillar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 40px;
  background: var(--cosmic-violet-soft);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.purpose-pillar:hover::before {
  width: 80px;
}

.purpose-pillar-label {
  font-family: var(--body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
  margin-bottom: 16px;
}

.purpose-pillar-title {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.purpose-pillar-description {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Reveal on scroll */
.purpose-section.in-view .purpose-eyebrow,
.purpose-section.in-view .purpose-headline,
.purpose-section.in-view .purpose-paragraph,
.purpose-section.in-view .purpose-pillar {
  opacity: 1;
  transform: translateY(0);
}

.purpose-eyebrow,
.purpose-headline,
.purpose-paragraph,
.purpose-pillar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.purpose-section.in-view .purpose-eyebrow { transition-delay: 0s; }
.purpose-section.in-view .purpose-headline { transition-delay: 0.1s; }
.purpose-section.in-view .purpose-paragraph { transition-delay: 0.25s; }
.purpose-section.in-view .purpose-pillar:nth-child(1) { transition-delay: 0.4s; }
.purpose-section.in-view .purpose-pillar:nth-child(2) { transition-delay: 0.5s; }
.purpose-section.in-view .purpose-pillar:nth-child(3) { transition-delay: 0.6s; }

@media (max-width: 768px) {
  .purpose-section { padding: 100px 24px 120px; }
  .purpose-headline { font-size: clamp(32px, 9vw, 48px); }
  .purpose-pillars { grid-template-columns: 1fr; gap: 0; }
  .purpose-pillar { padding: 28px 0; }
}

/* ============ SLIDE 5 — CLOSING / CTA ============ */

.closing-section {
  position: relative;
  background: var(--bg);
  padding: 180px 48px 140px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Deep cosmic atmosphere - quiet finale moment */
.closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107,127,215,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(42,52,112,0.12) 0%, transparent 65%);
}

.closing-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.closing-ambient canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Faint single starlight glow behind the headline */
.closing-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 900px;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(154,168,228,0.10) 0%,
    rgba(107,127,215,0.05) 40%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.closing-content {
  position: relative;
  z-index: 5;
  max-width: 880px;
  text-align: center;
  width: 100%;
}

.closing-eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
  margin-bottom: 32px;
}

.closing-statement {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 48px;
}

.closing-statement-word {
  display: inline-block;
  margin: 0 0.08em;
}

.closing-statement em {
  font-style: normal;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 50%, var(--cosmic-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.closing-sub {
  font-family: var(--body);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 56px;
}

/* Email capture form */
.closing-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 24px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.closing-form:focus-within {
  border-color: var(--cosmic-violet-soft);
  background: rgba(255,255,255,0.06);
}

.closing-form-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.005em;
}

.closing-form-input::placeholder {
  color: var(--text-tertiary);
}

.closing-form-button {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--bg);
  background: var(--text-primary);
  border: none;
  padding: 14px 24px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.closing-form-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--cosmic-violet-soft), var(--cosmic-violet));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.closing-form-button:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.closing-form-button:hover::before { opacity: 1; }
.closing-form-button svg { transition: transform 0.25s ease; }
.closing-form-button:hover svg { transform: translateX(3px); }

/* Form feedback states */
.closing-form-status {
  font-family: var(--body);
  font-size: 13px;
  color: var(--text-tertiary);
  height: 20px;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.closing-form-status.show { opacity: 1; }
.closing-form-status.success { color: var(--cosmic-violet-soft); }
.closing-form-status.error { color: #FF7A6B; }

/* Partner link */
.closing-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 16px;
}

.closing-partner-link:hover { color: var(--cosmic-violet-soft); }
.closing-partner-link svg { transition: transform 0.25s ease; }
.closing-partner-link:hover svg { transform: translateX(3px); }

/* Reveal */
.closing-section.in-view .closing-eyebrow,
.closing-section.in-view .closing-statement,
.closing-section.in-view .closing-sub,
.closing-section.in-view .closing-form,
.closing-section.in-view .closing-form-status,
.closing-section.in-view .closing-partner-link {
  opacity: 1;
  transform: translateY(0);
}

.closing-eyebrow,
.closing-statement,
.closing-sub,
.closing-form,
.closing-partner-link {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.closing-section.in-view .closing-eyebrow { transition-delay: 0s; }
.closing-section.in-view .closing-statement { transition-delay: 0.15s; }
.closing-section.in-view .closing-sub { transition-delay: 0.35s; }
.closing-section.in-view .closing-form { transition-delay: 0.5s; }
.closing-section.in-view .closing-partner-link { transition-delay: 0.65s; }

@media (max-width: 768px) {
  .closing-section { padding: 100px 24px 80px; }
  .closing-statement { font-size: clamp(36px, 11vw, 56px); }
  .closing-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 8px;
    gap: 8px;
  }
  .closing-form-input { padding: 14px 16px; }
  .closing-form-button { padding: 14px 22px; justify-content: center; }
}

/* ============ ADDITION: Affiliation tag inside endorsement cards ============ */

.endorsement-affiliation {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--cosmic-violet-soft);
  padding: 6px 12px;
  border: 1px solid rgba(154, 168, 228, 0.25);
  border-radius: 100px;
  background: rgba(107, 127, 215, 0.06);
  align-self: flex-start;
  margin-bottom: -8px;
  white-space: nowrap;
}

/* Push the deco quotation mark down so it doesn't crowd the affiliation tag */
.endorsement-card::before {
  top: 12px;
}

/* ============ STATS INTERLUDE (between endorsements and purpose) ============ */

.stats-interlude {
  position: relative;
  background: var(--bg);
  padding: 100px 48px;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-interlude::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(154,168,228,0.4) 50%, transparent 100%);
  pointer-events: none;
  filter: blur(0.5px);
}

.stats-interlude::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(154,168,228,0.4) 50%, transparent 100%);
  pointer-events: none;
  filter: blur(0.5px);
}

/* Quiet starlight glow behind the stats */
.stats-interlude-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(107, 127, 215, 0.06) 0%,
    transparent 60%
  );
}

.stats-grid {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.stat-block {
  text-align: center;
  padding: 20px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Vertical dividers between blocks */
.stat-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%; bottom: 25%;
  right: -12px;
  width: 1px;
  background: var(--border-subtle);
}

.stat-block-value {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-block-value-unit {
  font-family: var(--display);
  font-size: 0.45em;
  vertical-align: super;
  letter-spacing: 0.02em;
  margin-left: 2px;
  -webkit-text-fill-color: var(--text-secondary);
  background: none;
  color: var(--text-secondary);
}

.stat-block-label {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.stats-interlude.in-view .stat-block {
  opacity: 1;
  transform: translateY(0);
}

.stat-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-interlude.in-view .stat-block:nth-child(1) { transition-delay: 0s; }
.stats-interlude.in-view .stat-block:nth-child(2) { transition-delay: 0.1s; }
.stats-interlude.in-view .stat-block:nth-child(3) { transition-delay: 0.2s; }
.stats-interlude.in-view .stat-block:nth-child(4) { transition-delay: 0.3s; }

/* ============ PURPOSE pillar visuals ============ */

.purpose-pillar-visual {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  position: relative;
}

.purpose-pillar-visual svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Animate the visuals subtly on hover and on reveal */
.purpose-pillar .pp-rotate-slow {
  transform-origin: center;
  transform-box: fill-box;
  animation: slowRotate 50s linear infinite;
}

.purpose-pillar .pp-rotate-counter {
  transform-origin: center;
  transform-box: fill-box;
  animation: counterRotate 40s linear infinite;
}

.purpose-pillar .pp-pulse {
  animation: pulse 3s ease-in-out infinite;
}

/* Pillar reveal — keep label/title/description animation delays but add visual */
.purpose-section.in-view .purpose-pillar-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.purpose-pillar-visual {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.purpose-section.in-view .purpose-pillar:nth-child(1) .purpose-pillar-visual { transition-delay: 0.45s; }
.purpose-section.in-view .purpose-pillar:nth-child(2) .purpose-pillar-visual { transition-delay: 0.55s; }
.purpose-section.in-view .purpose-pillar:nth-child(3) .purpose-pillar-visual { transition-delay: 0.65s; }

@media (max-width: 968px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .stat-block:not(:last-child)::after {
    display: none;
  }
  /* Show only middle divider in 2-col layout */
  .stat-block:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-interlude { padding: 60px 24px; }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stat-block-value { font-size: 48px; }
  .purpose-pillar-visual { width: 52px; height: 52px; }
}

/* ============ SLIDE — INTERVENTION (OptimAge / recommendations) ============ */

.intervention-section {
  position: relative;
  background: var(--bg);
  padding: 160px 48px 180px;
  overflow: hidden;
}

.intervention-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(107,127,215,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(42,52,112,0.12) 0%, transparent 65%);
}

.intervention-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.intervention-ambient canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.intervention-inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.intervention-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intervention-eyebrow {
  font-family: var(--body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cosmic-violet-soft);
  font-weight: 500;
}

.intervention-headline {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.intervention-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--starlight) 0%, var(--cosmic-violet-soft) 60%, var(--cosmic-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.intervention-description {
  font-family: var(--body);
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
}

.intervention-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(154, 168, 228, 0.25);
  border-radius: 100px;
  background: rgba(107, 127, 215, 0.06);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--cosmic-violet-soft);
  width: fit-content;
  margin-top: 8px;
}

.intervention-product-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cosmic-violet-soft);
  box-shadow: 0 0 8px var(--cosmic-violet-soft);
  animation: pulse 2.5s ease-in-out infinite;
}

.intervention-cta {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
  margin-top: 12px;
  width: fit-content;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.intervention-cta:hover {
  color: var(--cosmic-violet-soft);
  border-bottom-color: var(--cosmic-violet-soft);
}

.intervention-cta svg { transition: transform 0.25s ease; }
.intervention-cta:hover svg { transform: translateX(3px); }

/* ===== The custom visualization: data-to-recommendation flow ===== */

.intervention-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  justify-self: center;
}

.intervention-visual svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* The orb breathes — subtle scale, very slow */
.iv-orb-breathe {
  transform-origin: 300px 300px;
  animation: orbBreathe 6s ease-in-out infinite;
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.04); opacity: 1; }
}

/* Inner bright core pulses faster, brighter */
.iv-orb-pulse {
  transform-origin: 300px 300px;
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Input dots — gentle staggered pulse */
.iv-input-dot circle, .iv-input-dot {
  animation: dotPulse 2.8s ease-in-out infinite;
}

/* Output dots — slightly slower pulse so they feel like results */
.iv-output-dot {
  animation: dotPulse 3.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* Reveal */
.intervention-section.in-view .intervention-eyebrow,
.intervention-section.in-view .intervention-headline,
.intervention-section.in-view .intervention-description,
.intervention-section.in-view .intervention-product-tag,
.intervention-section.in-view .intervention-cta,
.intervention-section.in-view .intervention-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intervention-eyebrow,
.intervention-headline,
.intervention-description,
.intervention-product-tag,
.intervention-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.intervention-visual {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.intervention-section.in-view .intervention-eyebrow { transition-delay: 0s; }
.intervention-section.in-view .intervention-headline { transition-delay: 0.1s; }
.intervention-section.in-view .intervention-description { transition-delay: 0.25s; }
.intervention-section.in-view .intervention-product-tag { transition-delay: 0.35s; }
.intervention-section.in-view .intervention-cta { transition-delay: 0.45s; }

@media (max-width: 968px) {
  .intervention-section { padding: 100px 24px 120px; }
  .intervention-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intervention-visual {
    max-width: 420px;
    order: 2;
  }
  .intervention-content {
    order: 1;
  }
}
