Ambient pan
Oversize a soft diagonal ramp and let it drift back and forth — the living-surface effect behind sign-in pages and hero sections.
The background must be larger than the element (200%+ each axis) or the pan has nowhere to go and the surface just sits there.
.ambient-pan {
background-image: linear-gradient(115deg,
color-mix(in oklab, var(--primary) 14%, transparent),
transparent 45%,
color-mix(in oklab, var(--primary) 10%, transparent) 85%);
background-size: 250% 250%;
animation: pan 14s ease-in-out infinite alternate;
}
@keyframes pan {
from { background-position: 0% 50%; }
to { background-position: 100% 50%; }
}