/* Mascot — circular ㅇ "seed". States: idle, happy, thinking, celebrate */
.mascot {
  display: inline-block;
  position: relative;
}

.mascot--celebrate { animation: mascot-bounce 1.4s ease-in-out infinite; }

@keyframes mascot-bounce {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-4px) rotate(2deg); }
}
