@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Prompt', sans-serif;
  background-color: #F8FAF9;
  color: #2D3748;
  -webkit-tap-highlight-color: transparent;
}

.touch-btn {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.step-indicator {
  transition: all 0.3s ease-in-out;
}

.step-active {
  border-color: #10B981;
  background-color: #ECFDF5;
  color: #065F46;
}

.step-done {
  background-color: #10B981;
  color: white;
}

.pulse-animation {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .85; transform: scale(1.02); }
}
