/* SELLIFY AI — Enterprise animations (transform + opacity) */
:root { --fx-ease-premium: cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 255, 63, 0.25); }
  50% { opacity: 0.5; box-shadow: 0 0 5px 1px rgba(212, 255, 63, 0.15); }
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-trust {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 20px;
  line-height: 1.6;
}

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

/* Stage 1: Qualifying animation */
.qualifying {
  padding: 32px 16px;
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes msgIn { to { opacity: 1; transform: translateY(0); } }
.chat-msg.user {
  align-self: flex-end;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
