/* ============================================
   HERO CIRCUIT ANIMATION - Canvas-based
   Based on Strategic Compass questionnaire style
   ============================================ */

/* Circuit Canvas Container */
.hero-circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

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

/* Ensure hero content stays above */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-circuit-bg {
    opacity: 0.1; /* Even more subtle on mobile */
  }
}
