/* ДВИЖЕНИЕ — быстро, коротко, без отскоков и пружин.
   Сервисный центр: интерфейс должен читаться как «уже готово». */
:root {
  --dur-instant: 90ms; /* @kind other */
  --dur-fast: 160ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 320ms; /* @kind other */
  --dur-reveal: 480ms; /* @kind other */

  --ease-out: cubic-bezier(0.2, 0.8, 0.28, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.5, 0, 0.3, 1); /* @kind other */
  --ease-exit: cubic-bezier(0.4, 0, 1, 1); /* @kind other */

  --transition-control: background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-instant) var(--ease-out); /* @kind other */
  --press-scale: 0.985; /* @kind other */
}
