/* ══════════════════════════════════════════
   ANIMATIONS — Keyframes, Transitions, Reveal
   ══════════════════════════════════════════ */

/* ── HERO ENTRANCE ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow   { opacity: 0; animation: fade-up 0.8s 0.3s forwards; }
.hero-headline   { opacity: 0; animation: fade-up 0.9s 0.5s forwards; }
.hero-sub        { opacity: 0; animation: fade-up 0.9s 0.7s forwards; }
.hero-actions    { opacity: 0; animation: fade-up 0.9s 0.9s forwards; }
.stats-bar       { opacity: 0; animation: fade-up 0.9s 1.1s forwards; }
.scroll-hint     { opacity: 0; animation: fade-up 1.0s 1.2s forwards; }

/* ── HERO LIGHT PULSE ── */
@keyframes pulse-light {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateY(-50%) scale(1.15); }
}
.hero-light { animation: pulse-light 6s ease-in-out infinite; }

/* ── HERO STRIPE FLOAT ── */
@keyframes stripe-move {
  from { transform: translateY(0); }
  to   { transform: translateY(40px); }
}
.hero-stripe { animation: stripe-move 8s ease-in-out infinite alternate; }
.hero-stripe:nth-child(2) { animation-delay: 2s; }

/* ── SCROLL INDICATOR PULSE ── */
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}
.scroll-line { animation: scroll-pulse 2s ease-in-out infinite; }

/* ── GOLD TICKER ── */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-inner { animation: ticker-scroll 30s linear infinite; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
