/* LaserFlow – WebGL beam effect pinned to hero bottom */
.laser-flow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 195%;          /* only covers the lower portion of the hero */
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

.laser-flow-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
