/* React Bits ColorBends — container */
.color-bends-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.color-bends-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Homepage hero mount — hidden until first frame, then eased fade-in */
.hero-color-bends {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  pointer-events: none;
  contain: layout paint;
  opacity: 0;
  transition: opacity var(--intro-duration, 1.05s) var(--intro-ease, cubic-bezier(0.19, 1, 0.32, 1));
}

.hero-color-bends.is-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-color-bends {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-color-bends {
    transition: none;
  }
}
