/* OwnDivision — Motion tokens. Motion communicates system state, never decoration. */
:root {
  --od-ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --od-ease-enter:    cubic-bezier(0, 0, 0.2, 1);   /* @kind other */
  --od-ease-exit:     cubic-bezier(0.4, 0, 1, 1);   /* @kind other */
  --od-ease-snap:     cubic-bezier(0.4, 0, 0, 1);   /* @kind other */

  --od-duration-instant:    80ms;   /* @kind other */ /* hover, micro-feedback */
  --od-duration-fast:       150ms;  /* @kind other */ /* toggle, checkbox, switch */
  --od-duration-standard:   250ms;  /* @kind other */ /* dropdown, tooltip */
  --od-duration-medium:     350ms;  /* @kind other */ /* modal, panel slide */
  --od-duration-slow:       500ms;  /* @kind other */ /* page transitions */
  --od-duration-data:       800ms;  /* @kind other */ /* chart load, number roll-up */
}
