/* ═══════════════════════════════════════════════════════════
   ADCEL — Animations
   Utility classes for GSAP, pure CSS keyframes
═══════════════════════════════════════════════════════════ */

/* ── GSAP Reveal Utilities ──────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}
[data-split-reveal] {
  /* Handled by JS SplitText (or manual fallback) */
  opacity: 0;
}
/* If JS fails or is slow, fallback */
.no-js [data-reveal],
.no-js [data-split-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal-card] {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
[data-work-tile] {
  opacity: 0;
  transform: translateY(40px);
}
[data-reveal-stat] {
  opacity: 0;
  transform: translateY(20px);
}

/* ── Glow / Pulse ───────────────────────── */
.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.about-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 80%; height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* ── Magnetic CTA (Nav) ─────────────────── */
.nav-cta {
  transition: transform 0.2s var(--ease-out), background 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}
