@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fade-up .5s ease-out both;
}

.app-card {
  animation: fade-up .5s ease-out both;
}

.app-card:nth-child(1) { animation-delay: .05s; }
.app-card:nth-child(2) { animation-delay: .1s; }
.app-card:nth-child(3) { animation-delay: .15s; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
