/* shared animations (global styles for components) */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate].revealed {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
