/* Motion vocabulary — gentle, nothing bouncy */
:root {
  --duration-fast: 180ms;
  --duration-slow: 450ms;
  --duration-reveal: 700ms;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --float-period: 7s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
