/* ============================================
   DEVNOVA — ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero-eyebrow { animation: fadeUp 0.5s ease 0.05s both; }
.hero-title   { animation: fadeUp 0.5s ease 0.12s both; }
.hero-sub     { animation: fadeUp 0.5s ease 0.19s both; }
.hero-actions { animation: fadeUp 0.5s ease 0.26s both; }
.terminal     { animation: fadeUp 0.6s ease 0.34s both; }

/* Scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.07s; }
.fade-up:nth-child(3) { transition-delay: 0.14s; }
.fade-up:nth-child(4) { transition-delay: 0.21s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .terminal,
  .term-cursor { animation: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .service-card, .btn-primary { transition: none; }
}
