/* Silicon Sessions hero · no global selectors or external dependencies. */
.ss-hero-module {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: #080909 url("./assets/hero-mic-only.png") 50% 50% / cover no-repeat;
  /* The CSS background is also the no-JS / module-load-failure fallback. */
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.ss-hero-module > .ss-hero-module__plate,
.ss-hero-module > .ss-hero-module__wave,
.ss-hero-module > .ss-hero-module__foreground {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
  user-select: none;
  animation: none !important;
  transition: none !important;
  transform: none !important;
  filter: none !important;
  opacity: 1;
  mix-blend-mode: normal;
}

.ss-hero-module > .ss-hero-module__plate {
  z-index: 0;
}

.ss-hero-module > .ss-hero-module__wave {
  z-index: 1;
}

.ss-hero-module > .ss-hero-module__foreground {
  /* Exact plate pixels, restored above the waveform in the same cover crop. */
  z-index: 2;
  overflow: hidden;
}

.ss-hero-module > .ss-hero-module__wave[hidden],
.ss-hero-module > .ss-hero-module__foreground[hidden],
.ss-hero-module[data-ss-hero-static] > .ss-hero-module__wave {
  display: none !important;
}

.ss-hero-module[data-ss-hero-static] > .ss-hero-module__foreground {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .ss-hero-module > .ss-hero-module__wave,
  .ss-hero-module > .ss-hero-module__foreground {
    display: none !important;
  }
}
