/* Звёздное поле страниц-кейсов (components/showcase/CaseStars.tsx).
   Канвас — первый ребёнок корня кейса: липнет к вьюпорту, но живёт только
   в пределах корня (в футер ЯРЧЕ не вылезает). Контент — поверх.
   :where() — нулевая специфичность, собственный position секций кейса главнее. */
.sc-stars {
  position: sticky;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  margin-bottom: -100vh;
  margin-bottom: -100lvh;
  pointer-events: none;
}
:where(.sc-stars ~ *) {
  position: relative;
  z-index: 1;
}
