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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 185, 49, 0.3); }
  50% { box-shadow: 0 0 40px rgba(232, 185, 49, 0.6); }
}

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

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

.animate-slide-up {
  animation: slideUp 0.6s ease-out both;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

.option-card {
  transition: all 0.2s ease;
}
.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.option-card.selected {
  border-color: #E8B931;
  background: rgba(232, 185, 49, 0.1);
  box-shadow: 0 0 20px rgba(232, 185, 49, 0.2);
}

.progress-fill {
  transition: width 0.4s ease;
}

.radar-polygon {
  transition: none;
}

.score-badge {
  background: conic-gradient(
    from 0deg,
    var(--score-color) calc(var(--score-pct) * 3.6deg),
    rgba(255, 255, 255, 0.1) calc(var(--score-pct) * 3.6deg)
  );
}

.rec-card {
  transition: all 0.2s ease;
}
.rec-card:hover {
  transform: translateX(4px);
}

input:focus, textarea:focus {
  outline: none;
  border-color: #E8B931;
  box-shadow: 0 0 0 3px rgba(232, 185, 49, 0.2);
}

.btn-primary {
  transition: all 0.2s ease;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 119, 48, 0.4);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
