/* Active animation layer: hero particle canvas */

:root {
  --particle-color: rgba(126, 217, 87, 0.8);
  --particle-color-subtle: rgba(126, 217, 87, 0.4);
}

.hero {
  position: relative;
  overflow: hidden;
}

.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero .section-inner {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particles-canvas {
    display: none !important;
  }
}
