/* === AURORA ANIMATIONS === */

/* Particle dots */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(124, 58, 237, 0.6);
  border-radius: 50%;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Aurora wave breathing */
@keyframes aurora-breathe {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.9;
  }
}

.aurora-gradient {
  animation: aurora-breathe 12s ease-in-out infinite;
}

/* Glow pulse */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6), 0 0 60px rgba(34, 211, 238, 0.2); }
}

/* Pulse dot */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* Typing animation */
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Fade in up */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Float effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Slide in right */
@keyframes slide-in-right {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Slide in left */
@keyframes slide-in-left {
  from { transform: translateX(-40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Gradient shift */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Counter count up */
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Rotation */
@keyframes slow-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* === SCROLL ANIMATION CLASSES === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* === HERO INITIAL ANIMATIONS === */
.hero-badge { animation: fade-in-up 0.6s ease both; animation-delay: 0.1s; }
.hero-title { animation: fade-in-up 0.7s ease both; animation-delay: 0.2s; }
.hero-subtitle { animation: fade-in-up 0.7s ease both; animation-delay: 0.35s; }
.hero-cta { animation: fade-in-up 0.7s ease both; animation-delay: 0.5s; }
.hero-trust { animation: fade-in-up 0.7s ease both; animation-delay: 0.65s; }
.hero-right { animation: slide-in-right 0.9s ease both; animation-delay: 0.3s; }

/* === FLOATING CARD ANIMATION === */
.mock-floating-widget {
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

.mock-floating-badge {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

.dashboard-mockup {
  animation: float 8s ease-in-out infinite;
}

/* === GRADIENT ANIMATE === */
.gradient-animated {
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

/* === GLOW BUTTON HOVER === */
.btn-primary:hover {
  animation: glow-pulse 1.5s ease-in-out infinite;
}

/* === LOGO ICON GLOW === */
.nav-logo-icon {
  animation: glow-pulse 3s ease-in-out infinite;
}

/* === STEP NUMBER === */
.step-number {
  animation: glow-pulse 4s ease-in-out infinite;
}

/* === AI CHAT DOTS === */
.ai-typing-dot { animation: typing-bounce 1.2s ease-in-out infinite; }

/* === PARALLAX SECTION BG === */
.parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}