/* Taichung Job Service — Motion tokens (global.css:1394-1455)
   Entrance = riseIn; interaction easing = signature cubic-bezier.
   Animate transform / opacity / box-shadow only — never layout-affecting properties. */
:root {
  --ease-signature: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --dur-card: .32s; /* @kind other */
  --dur-button: .22s; /* @kind other */
  --dur-entrance: .6s; /* @kind other */
  --dur-modal: .35s; /* @kind other */

  /* Entrance stagger delays (top → bottom) */
  --delay-header: 0s; /* @kind other */
  --delay-select: .1s; /* @kind other */
  --delay-cards: .15s; /* @kind other */
  --delay-footer: .3s; /* @kind other */
}

/* Signature entrance: the whole screen rises in on load */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes disclaimerFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
