/* PageTransition Scoped Styles */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-blob 4s ease-in-out infinite;
}
.blob-1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25), transparent 70%);
  animation-delay: 0s;
}
.blob-2 {
  width: 350px; height: 350px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(30, 60, 120, 0.35), transparent 70%);
  animation-delay: 1.5s;
}
.blob-3 {
  width: 250px; height: 250px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12), transparent 70%);
  animation-delay: 0.8s;
}
@keyframes pulse-blob {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}
.blob-3 { animation: pulse-blob 3s ease-in-out infinite; }

.logo-mark {
  animation: logo-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes logo-pop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.animate-fade-up {
  animation: fade-up 0.5s 0.2s ease-out both;
}
@keyframes fade-up {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.progress-bar {
  /* Animation handled via JS for dynamic duration */
}
