/* Strands — одна большая прозрачная WebGL-подсветка ЗА текстом секции «Источники».
   Full-bleed фон: растянут на всю ширину вьюпорта, за контентом (z-index 0). */
.cta { position: relative; }
.cta > *:not(.strands-bg) { position: relative; z-index: 1; }

.strands-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.strands-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
}
.strands-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}
