/* assets/css/transitions.css */
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes page-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

body {
  animation: page-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.page-out {
  animation: page-out 0.3s ease forwards;
  pointer-events: none;
}
