/* Hero connection network background */
.section.hero-v1 {
  position: relative;
  /* Keep overflow visible so .hero-v2-image-wrap (negative margin) can hang below the hero */
  overflow: visible;
  isolation: isolate;
}

.hero-network-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  overflow: hidden;
}

.hero-network-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.section.hero-v1 > .w-layout-blockcontainer,
.section.hero-v1 > .container {
  position: relative;
  z-index: 2;
}

.section.hero-v1::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 70% at 50% 42%,
    rgba(37, 40, 96, 0) 0%,
    rgba(37, 40, 96, 0.28) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-network-bg {
    opacity: 0.65;
  }
}
