/* ============================================================
   SHARP BUILD | SDC BUILT INC  —  Animations  v3.0
   ============================================================ */

/* ── Orb Float ───────────────────────────────────────────── */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

/* ── Floating Cards ──────────────────────────────────────── */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Pulse Dot (badge) ───────────────────────────────────── */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(96,165,250,0.4); }
  50%       { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(96,165,250,0); }
}

/* ── Cursor Blink ────────────────────────────────────────── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Marquee Scroll ──────────────────────────────────────── */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll Indicator Bob ────────────────────────────────── */
@keyframes bobDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Fade In Up ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Fade In ─────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Slide Down (mobile nav) ─────────────────────────────── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Glow Pulse (for orb/highlight elements) ─────────────── */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.2); }
  50%       { box-shadow: 0 0 40px rgba(59,130,246,0.4); }
}

/* ── Scale In ────────────────────────────────────────────── */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Spin Slow ───────────────────────────────────────────── */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Number Count (helper class for JS counter) ─────────── */
.count-up { font-variant-numeric: tabular-nums; }

/* ── Hero content animation on load ─────────────────────── */
.hero-badge    { animation: fadeInUp 0.5s ease both 0.1s; }
.hero-title    { animation: fadeInUp 0.6s ease both 0.25s; }
.hero-desc     { animation: fadeInUp 0.6s ease both 0.4s; }
.hero-actions  { animation: fadeInUp 0.6s ease both 0.55s; }
.hero-stats    { animation: fadeInUp 0.6s ease both 0.7s; }
.hero-visual   { animation: scaleIn 0.8s ease both 0.3s; }

/* ── Stagger helper ──────────────────────────────────────── */
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.10s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.20s; }
.stagger-5 { animation-delay: 0.25s; }
.stagger-6 { animation-delay: 0.30s; }
