/* Slide 11 (Figma 318:97) — copy centered in viewport, wave terrain below */

.story-slide--11 {
  --story-slide-11-particle-height: clamp(20rem, 42vh, 48rem);

  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background: #000;
}

.story-slide-11__stage {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

.story-slide-11__content-band {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: clamp(1rem, 3vh, 2rem) clamp(1rem, 4vw, 1.5rem);
  padding-top: max(clamp(1rem, 3vh, 2rem), var(--site-header-block-size));
  box-sizing: border-box;
  container-name: story-slide-11__content-band;
  container-type: size;
}

.story-slide-11__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 3.4vh, 5.5rem);
  width: 100%;
  max-width: min(68rem, 94vw);
  text-align: center;
}

.story-slide--11 .story-slide-11__headline {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1;
  text-wrap: auto;
}

.story-slide--11 .story-slide-11__deck {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2rem, 2.8vw, 4rem);
  line-height: 1.2;
}

.story-slide-11__toolbar {
  width: 100%;
  max-width: 100%;
}

.story-slide-11__particles {
  position: relative;
  z-index: 1;
  flex: 0 0 var(--story-slide-11-particle-height);
  width: 100%;
  height: var(--story-slide-11-particle-height);
  overflow: hidden;
  opacity: 0;
}

.story-slide-11__particle-host {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-slide-11__particle-host .story-slide-11__particle-canvas,
.story-slide-11__particle-host .story-slide-11__particle-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.story-slide-11__particle-host .story-slide-11__particle-overlay {
  pointer-events: none;
}

.story-slide--11 .story-slide-11-reveal {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .story-slide--11 .story-slide-11-reveal,
  .story-slide-11__particles {
    opacity: 1;
  }
}

@media (max-width: 62.125rem) {
  .story-slide-11__stage {
    justify-content: flex-end;
  }
  .story-slide-11__content-band {
    align-items: flex-end;
  }
  .story-slide-11__particles {
    max-height: 40vh;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .story-slide--11 .story-slide-11__headline {
    font-size: 2rem;
  }
  .story-slide-11__content-band {
    align-items: center;
  }
  .story-slide-11__particles {
    position: absolute;
  }
}