/* ============ ANIMATIONS.CSS — v3 Clean ============ */

/* --- Focus Lock Reveal --- */
.focus-lock {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.focus-lock.focused {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gradient Orbs --- */
.gradient-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
  will-change: transform;
}
.gradient-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.04), transparent 70%);
  top: 20%; left: -10%;
  animation: orbDrift1 25s ease-in-out infinite alternate;
}
.gradient-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.04), transparent 70%);
  top: 50%; right: -10%;
  animation: orbDrift2 30s ease-in-out infinite alternate;
}
.gradient-orb--3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0,212,255,0.03), transparent 70%);
  bottom: 10%; left: 30%;
  animation: orbDrift3 20s ease-in-out infinite alternate;
}
@keyframes orbDrift1 { 0%{transform:translate(0,0)} 100%{transform:translate(80px,60px)} }
@keyframes orbDrift2 { 0%{transform:translate(0,0)} 100%{transform:translate(-60px,-80px)} }
@keyframes orbDrift3 { 0%{transform:translate(0,0)} 100%{transform:translate(50px,-40px)} }

/* --- Header Glow --- */
.heading-glow {
  animation: headingPulse 0.3s ease forwards;
}
@keyframes headingPulse {
  0%   { text-shadow: 0 0 0 transparent; }
  50%  { text-shadow: 0 0 20px rgba(0,212,255,0.4), 0 0 40px rgba(0,212,255,0.15); }
  100% { text-shadow: 0 0 10px rgba(0,212,255,0.1); }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .gradient-orb, .heading-glow, #neuralCanvas { display: none !important; animation: none !important; }
  .focus-lock { opacity: 1 !important; transform: none !important; transition: none !important; }
}
