/* Profile entry screen: floating activity cards over the product mockup */
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card {
  animation: float-card 4.5s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: 0.6s; }
.float-card:nth-child(3) { animation-delay: 1.2s; }
.float-card:nth-child(4) { animation-delay: 1.8s; }
.float-card:nth-child(5) { animation-delay: 2.4s; }
.float-card:nth-child(6) { animation-delay: 3s; }

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

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

/* Selection cards */
.profile-card {
  cursor: pointer;
}

.profile-card .selection-badge {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.profile-card.is-selected .selection-badge {
  opacity: 1;
  transform: scale(1);
}

/* Mobile sticky continue bar needs safe-area padding on notched devices */
.continue-bar {
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

@media (prefers-reduced-motion: reduce) {
  .float-card,
  .fade-in-up {
    animation: none;
  }
}
