/* ══════════════════════════════════════════════════════════════════════════
   kAI Landing Page - Animation Styles (Minimal)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── TERMINAL CURSOR BLINK ── */
@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--text-tertiary);
  margin-left: 2px;
  animation: cursor-blink 1s step-end infinite;
}

/* ── ENTRANCE ANIMATIONS ── */
/* Basic AOS support */

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom AOS animations */
[data-aos="fade-up-custom"] {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
}

[data-aos="fade-up-custom"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="scale-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition-property: opacity, transform;
}

[data-aos="scale-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* ── SUCCESS CHECKMARK ── */
@keyframes checkmark-draw {
  0% {
    stroke-dashoffset: 50;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.success-checkmark path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkmark-draw 0.5s ease-out forwards;
}

/* ── FADE IN ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.fade-in {
  animation: fadeIn 0.3s ease-out;
}
