.fade-in {
  animation: fadeIn 0.35s ease both;
}

.lift-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lift-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
