/* Plot Plus - Keyframe Animations & Micro-Interactions */

/* Floating Orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.floating-orb-1 {
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(255,255,255,0) 70%);
}

.floating-orb-2 {
  bottom: 15%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(255,255,255,0) 70%);
  animation-delay: -6s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Glass Reflection Sweep */
.glass-reflection {
  position: relative;
  overflow: hidden;
}

.glass-reflection::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.75s ease;
}

.glass-reflection:hover::after {
  left: 130%;
}

/* Glowing Gold Pulse */
@keyframes goldPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.pulse-gold {
  animation: goldPulse 2.5s infinite;
}

/* Counter Fade Up */
.counter-up {
  display: inline-block;
}

/* Hero Particles Container & Particle Animation */
.hero-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  pointer-events: none;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0.2; }
  25%  { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
  50%  { transform: translateY(-80px) translateX(-15px); opacity: 0.5; }
  75%  { transform: translateY(-50px) translateX(30px); opacity: 0.7; }
  100% { transform: translateY(-120px) translateX(0); opacity: 0; }
}

