/* Coin template: non-interactive artwork, pointer parallax, and slow drift. */
.coin-welcome__image .layer { pointer-events: none; }
.coin-welcome__info { z-index: 4; }
.coin-welcome__image.scene .layer { will-change: transform; }
.coin-welcome__image.scene .circle-motion { animation: coin-hero-float 5s ease-in-out infinite alternate; will-change: transform; }
.coin-welcome__image.scene .layer2 .circle-motion { animation-duration: 6.5s; }
.coin-welcome__image.scene .layer3 .circle-motion { animation-duration: 7.5s; }
@keyframes coin-hero-float { from { transform: translate3d(-10px, 10px, 0); } to { transform: translate3d(10px, -10px, 0); } }
@media (prefers-reduced-motion: reduce) { .coin-welcome__image.scene .circle-motion { animation: none; } }
