[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.glow-hover {
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.glow-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.orbital-float {
  animation: orbitalFloat 9s ease-in-out infinite;
}

.orbital-float.delay-2 {
  animation-delay: -2.5s;
}

.orbital-float.delay-4 {
  animation-delay: -4.5s;
}

.beam {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.4;
  pointer-events: none;
}

.beam.beam-blue {
  background: radial-gradient(circle, rgba(22, 177, 255, 0.48), transparent 68%);
}

.beam.beam-green {
  background: radial-gradient(circle, rgba(29, 233, 128, 0.34), transparent 68%);
}

.beam.top-left {
  top: -90px;
  left: -40px;
}

.beam.bottom-right {
  right: -80px;
  bottom: -80px;
}

.network-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(22, 177, 255, 0.4) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 24%, rgba(29, 233, 128, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 70%, rgba(126, 247, 211, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 76%, rgba(22, 177, 255, 0.28) 0 2px, transparent 3px);
}

.scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  background-size: 100% 8px;
  opacity: 0.25;
}

@keyframes orbitalFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
