/* ==========================================================================
   Animations — Logo entry, fade-up, success message
   ========================================================================== */

/* Logo animation */
.logo-container {
  animation: logoEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes logoEntry {
  0%   { transform: translateY(-40px) scale(0.8); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.logo-container img {
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3))
          drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Staggered entry animations */
.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
  0%   { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Success message */
.success-msg {
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
