/* ==== PLUNK ANIMATION ==== */
@keyframes plunk {
  0% {
    opacity: 0;
    transform: translateY(-60px) scaleY(1.15);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scaleY(0.9);
  }
  80% {
    transform: translateY(-4px) scaleY(1.05);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

.plunk-in {
  animation: plunk 0.6s cubic-bezier(0.25, 0.9, 0.25, 1.2);
  transform-origin: bottom center;
  z-index: 2;
}
