/* Premium motion stays optional: content remains visible without JavaScript. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.journey-grid .reveal:nth-child(2) { transition-delay: 90ms; }
.journey-grid .reveal:nth-child(3) { transition-delay: 180ms; }
.experience-grid .reveal:nth-child(2), .experience-grid .reveal:nth-child(4) { transition-delay: 90ms; }

.phone-frame { animation: phone-float 7s ease-in-out infinite; }
.orbit-one { animation: orbit-spin 26s linear infinite; }
.orbit-two { animation: orbit-spin 20s linear infinite reverse; }
.floating-position { animation: card-float 6s ease-in-out infinite; }
.floating-reminder { animation: card-float 6s ease-in-out 1.5s infinite; }
.status-dot, .live-label::before { animation: pulse 2.5s ease-in-out infinite; }
.hero-marquee > div { animation: marquee 24s linear infinite; }
.pitch-player.selected { animation: selected-player 2.8s ease-in-out infinite; }

.journey-card, .experience-card, .store-button { transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease; }
.journey-card:hover, .experience-card:hover { border-color: rgba(157,255,173,.24); transform: translateY(-4px); }
.store-button:hover { border-color: rgba(157,255,173,.32); background: rgba(157,255,173,.08); transform: translateY(-2px); }
.brand-link:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }
.brand-mark { transition: transform 180ms ease; }

@keyframes phone-float {
  0%, 100% { transform: rotateY(-7deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(1deg) translateY(-12px); }
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes pulse { 0%, 100% { opacity: .65; box-shadow: 0 0 7px currentColor; } 50% { opacity: 1; box-shadow: 0 0 17px currentColor; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes selected-player { 0%, 100% { box-shadow: 0 0 0 8px rgba(157,255,173,.1), 0 0 25px rgba(157,255,173,.22); } 50% { box-shadow: 0 0 0 13px rgba(157,255,173,0), 0 0 38px rgba(157,255,173,.38); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
