/* ==========================================================================
   WalletIN Theme — Animations
   ==========================================================================
   Scroll-reveal animations + micro-interactions. All animations respect
   prefers-reduced-motion for accessibility.
   ========================================================================== */

.walletin-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s ease, transform .8s ease;
}
.walletin-reveal.in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.walletin-reveal,
	.walletin-reveal.in {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.walletin-hero-eyebrow .pulse { animation: none; }
	.walletin-phone:hover,
	.walletin-phone.sm:hover,
	.walletin-feature:hover,
	.walletin-tmnl:hover,
	.walletin-btn-primary:hover,
	.walletin-store-badge:hover {
		transform: none;
	}
}
