/* Component styles only. Give the containing section a height and stacking context. */
.sds-network-scene {
  position: relative;
  isolation: isolate;
  background: #000;
}
.sds-network-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  background: #000;
  contain: strict;
}
.sds-network-canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* For a site-wide layer, use this class instead of stretching a canvas over a long page. */
.sds-network-background--fixed {
  position: fixed;
  height: 100vh;
  height: 100dvh;
}

/* Small instrument LEDs stay visible beyond the lamp. Opacity-only, two breaths;
   the renderer itself can remain idle while the compositor handles this cue. */
.sds-network-beacon {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0.64;
  pointer-events: none;
  box-shadow: 0 0 5px currentColor;
  animation-duration: 1400ms;
  animation-iteration-count: 2;
  animation-timing-function: ease-in-out;
}
.sds-network-beacon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0.18;
}
@keyframes sds-sensor-breathe-0 {
  0%,
  100% {
    opacity: 0.64;
  }
  50% {
    opacity: 1;
  }
}
@keyframes sds-sensor-breathe-1 {
  0%,
  100% {
    opacity: 0.64;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sds-network-beacon {
    animation: none !important;
  }
}
