.vz2-anim-in { animation: vz2-rise var(--vz2-dur-4) var(--vz2-ease-decelerate) both; }
.vz2-anim-out { animation: vz2-fade-out var(--vz2-dur-3) var(--vz2-ease-accelerate) both; }
.vz2-fade { animation: vz2-fade var(--vz2-dur-4) var(--vz2-ease-standard) both; }
.vz2-rise { animation: vz2-rise var(--vz2-dur-4) var(--vz2-ease-decelerate) both; }
.vz2-scale { animation: vz2-scale var(--vz2-dur-3) var(--vz2-ease-spring) both; }
.vz2-slide { animation: vz2-slide var(--vz2-dur-4) var(--vz2-ease-decelerate) both; }
.vz2-pulse { animation: vz2-pulse var(--vz2-dur-6) var(--vz2-ease-standard) 1; }
.vz2-shake { animation: vz2-shake var(--vz2-dur-4) var(--vz2-ease-emphasized) 1; }
.vz2-reveal-list > * { animation: vz2-rise var(--vz2-dur-4) var(--vz2-ease-decelerate) both; animation-delay: calc(var(--i, 0) * 45ms); }
.vz2-pressable { transition: transform var(--vz2-dur-2) var(--vz2-ease-spring), box-shadow var(--vz2-dur-3) var(--vz2-ease-standard); }
.vz2-pressable:active { transform: scale(.975); }
.vz2-flip-item { transition: transform var(--vz2-dur-4) var(--vz2-ease-decelerate), opacity var(--vz2-dur-3); }
.vz2-skeleton {
  position: relative;
  overflow: hidden;
  border-radius: var(--vz2-radius-sm);
  background: rgba(255,255,255,.07);
}
.vz2-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  animation: vz2-shimmer 1.45s linear infinite;
}
.vz2-progress-top {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 3px;
  transform-origin: left;
  transform: scaleX(calc(var(--val, 0) / 100));
  background: linear-gradient(90deg, var(--vz2-accent), #22d3ee);
  transition: transform var(--vz2-dur-4) var(--vz2-ease-decelerate);
}
.vz2-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255,255,255,.22);
  border-top-color: var(--vz2-accent);
  border-radius: 50%;
  animation: vz2-spin .75s linear infinite;
}
.vz2-ring {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--vz2-accent) calc(var(--val, 0) * 1%), rgba(255,255,255,.09) 0);
  display: grid;
  place-items: center;
}
.vz2-ring::after {
  content: attr(data-label);
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--vz2-card);
  display: grid;
  place-items: center;
  color: var(--vz2-txt);
  font-weight: 800;
}
.vz2-coachmark {
  position: relative;
  border-color: var(--vz2-border-3);
  box-shadow: 0 0 0 6px rgba(59,130,246,.12), var(--vz2-shadow-accent);
}
.vz2-coachmark::after {
  content: "";
  position: absolute;
  right: 18px;
  top: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vz2-accent);
  animation: vz2-pulse 1.4s infinite;
}
.vz2-bottom-sheet {
  position: fixed;
  z-index: 60;
  inset: auto 0 0;
  max-height: 82vh;
  border-radius: 24px 24px 0 0;
  animation: vz2-sheet var(--vz2-dur-4) var(--vz2-ease-decelerate) both;
}
@keyframes vz2-fade { from { opacity: 0; } }
@keyframes vz2-fade-out { to { opacity: 0; } }
@keyframes vz2-rise { from { opacity: 0; transform: translateY(var(--vz2-move-md)); } }
@keyframes vz2-scale { from { opacity: 0; transform: scale(.96); } }
@keyframes vz2-slide { from { opacity: 0; transform: translateX(var(--vz2-move-lg)); } }
@keyframes vz2-pulse { 50% { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(59,130,246,.12); } }
@keyframes vz2-shake { 25% { transform: translateX(-5px); } 50% { transform: translateX(4px); } 75% { transform: translateX(-2px); } }
@keyframes vz2-spin { to { transform: rotate(1turn); } }
@keyframes vz2-shimmer { to { transform: translateX(100%); } }
@keyframes vz2-sheet { from { transform: translateY(100%); } }
@media (prefers-reduced-motion: reduce) {
  .vz2-anim-in, .vz2-anim-out, .vz2-fade, .vz2-rise, .vz2-scale, .vz2-slide,
  .vz2-pulse, .vz2-shake, .vz2-skeleton::after, .vz2-spinner, .vz2-coachmark::after,
  .vz2-bottom-sheet, .vz2-reveal-list > * {
    animation-duration: .001ms;
    animation-iteration-count: 1;
    transition-duration: .001ms;
  }
}
