/* ──────────────────────────────────────────────────────────────
   Zara Inline — Hero-panel AI employee widget
   Dormant → Intro form → Mode select → Conversation → Complete
   Green glass-morphism, alive UI, show-don't-tell
   ────────────────────────────────────────────────────────────── */

.zl {
  --zl-green: #10b981;
  --zl-green-bright: #34d399;
  --zl-green-glow: rgba(16, 185, 129, 0.18);
  --zl-blue: #2563eb;
  --zl-blue-glow: rgba(37, 99, 235, 0.16);
  --zl-ink-900: #0d172e;
  --zl-ink-700: #354d77;
  --zl-ink-500: #61759b;
  --zl-ink-300: #94a3b8;
  --zl-line: rgba(16, 185, 129, 0.14);
  --zl-card: rgba(255, 255, 255, 0.82);

  --zl-glass-bg: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(240, 253, 244, 0.54) 40%,
    rgba(209, 250, 229, 0.28) 100%
  );
  --zl-glass-border: rgba(16, 185, 129, 0.22);
  --zl-glass-shadow:
    0 4px 24px rgba(16, 185, 129, 0.08),
    0 24px 80px rgba(11, 18, 32, 0.08);

  --zl-radius: 24px;
  --zl-radius-bubble: 18px;
  --zl-t-fast: cubic-bezier(0.2, 0.8, 0.2, 1);
  --zl-t-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  position: relative;
  border-radius: var(--zl-radius);
  background: var(--zl-glass-bg);
  border: 1px solid var(--zl-glass-border);
  box-shadow: var(--zl-glass-shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--zl-ink-900);
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

/* Ambient glow */
.zl::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(500px 250px at 30% 10%, rgba(16, 185, 129, 0.14), transparent 65%),
    radial-gradient(400px 300px at 80% 90%, rgba(37, 99, 235, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 600ms ease;
}

/* ================================================================
   STATE: DORMANT — Inviting, alive, waiting to be touched
   ================================================================ */

.zl-dormant {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.zl[data-state]:not([data-state="dormant"]) .zl-dormant { display: none; }

/* Orb */
.zl-dormant__orb {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zl-green), var(--zl-green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow:
    0 0 0 6px rgba(16, 185, 129, 0.10),
    0 0 40px rgba(16, 185, 129, 0.15);
  animation: zlBreathe 3.6s ease-in-out infinite;
  transition: transform 300ms var(--zl-t-spring), box-shadow 300ms ease;
}

.zl-dormant:hover .zl-dormant__orb {
  transform: scale(1.06);
  box-shadow:
    0 0 0 10px rgba(16, 185, 129, 0.14),
    0 0 60px rgba(16, 185, 129, 0.22);
}

@keyframes zlBreathe {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(16, 185, 129, 0.10),
      0 0 40px rgba(16, 185, 129, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(16, 185, 129, 0.06),
      0 0 60px rgba(16, 185, 129, 0.20);
  }
}

.zl-dormant__letter {
  color: #fff;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}

.zl-dormant__title {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.zl-dormant__sub {
  font-size: 0.86rem;
  color: var(--zl-ink-500);
  line-height: 1.5;
  max-width: 280px;
}

.zl-dormant__hint {
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--zl-ink-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 300ms ease;
}

.zl-dormant:hover .zl-dormant__hint {
  opacity: 1;
}

/* ================================================================
   STATE: INTRO — Collect name, email, company
   ================================================================ */

.zl-intro {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.zl[data-state="intro"] .zl-intro { display: flex; }

.zl-intro__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.10);
}

.zl-intro__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zl-green), var(--zl-green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zl-intro__avatar-letter {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.zl-intro__avatar-info {
  flex: 1;
}

.zl-intro__avatar-name {
  font-weight: 800;
  font-size: 0.92rem;
}

.zl-intro__avatar-role {
  font-size: 0.76rem;
  color: var(--zl-green);
  font-weight: 600;
}

.zl-intro__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  gap: 16px;
}

.zl-intro__greeting {
  font-size: 0.92rem;
  color: var(--zl-ink-700);
  line-height: 1.55;
  animation: zlSlideIn 300ms var(--zl-t-fast) both;
}

.zl-intro__form {
  display: grid;
  gap: 12px;
  animation: zlSlideIn 300ms var(--zl-t-fast) 100ms both;
}

.zl-field {
  display: grid;
  gap: 4px;
}

.zl-field__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--zl-ink-500);
  letter-spacing: 0.01em;
}

.zl-field__input {
  width: 100%;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 12px;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.88rem;
  color: var(--zl-ink-900);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.zl-field__input::placeholder {
  color: var(--zl-ink-300);
}

.zl-field__input:focus {
  border-color: var(--zl-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

.zl-field__input.zl-field--error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.zl-intro__go {
  margin-top: 4px;
  padding: 12px 20px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--zl-green), var(--zl-green-bright));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 180ms var(--zl-t-spring), box-shadow 200ms ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.20);
  animation: zlSlideIn 300ms var(--zl-t-fast) 200ms both;
}

.zl-intro__go:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.28);
}

.zl-intro__go:active {
  transform: scale(0.98);
}

.zl-intro__go:disabled {
  opacity: 0.5;
  cursor: default;
  transform: none;
}

/* ================================================================
   STATE: MODE SELECT — Choose text, voice, or phone
   ================================================================ */

.zl-modes {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  gap: 20px;
}

.zl[data-state="mode_select"] .zl-modes { display: flex; }

.zl-modes__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: zlSlideIn 280ms var(--zl-t-fast) both;
}

.zl-modes__sub {
  font-size: 0.84rem;
  color: var(--zl-ink-500);
  max-width: 300px;
  animation: zlSlideIn 280ms var(--zl-t-fast) 80ms both;
}

.zl-modes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 360px;
  animation: zlSlideIn 280ms var(--zl-t-fast) 160ms both;
}

.zl-mode-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.14);
  background: var(--zl-card);
  cursor: pointer;
  transition: transform 180ms var(--zl-t-spring), border-color 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.zl-mode-card:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--zl-green);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.12);
}

.zl-mode-card:active {
  transform: scale(0.97);
}

.zl-mode-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.10);
  color: var(--zl-green);
}

.zl-mode-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zl-mode-card__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zl-ink-700);
}

/* ================================================================
   STATE: CONVERSATION — Chat + voice + waveform
   ================================================================ */

.zl-conv {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.zl[data-state="conversation"] .zl-conv { display: flex; }

/* Header */
.zl-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.10);
}

.zl-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zl-green), var(--zl-green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zl-avatar__letter {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.zl-avatar__pulse {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--zl-green-bright);
  border: 2px solid rgba(255, 255, 255, 0.9);
  animation: zlPulse 2.4s ease-in-out infinite;
}

@keyframes zlPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(52, 211, 153, 0); }
}

.zl-header__info { flex: 1; min-width: 0; }

.zl-header__name {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.zl-header__status {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--zl-green);
}

.zl-header__actions {
  display: flex;
  gap: 4px;
}

/* Waveform */
.zl-waveform {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 400ms var(--zl-t-fast);
  background: radial-gradient(ellipse at 50% 100%, rgba(16, 185, 129, 0.05), transparent 70%);
}

.zl[data-voice="active"] .zl-waveform {
  height: 110px;
}

.zl-waveform__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.zl-waveform__label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--zl-ink-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 300ms ease;
}

.zl[data-voice="active"] .zl-waveform__label { opacity: 1; }

/* Chat */
.zl-chat {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 16px 8px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  min-height: 200px;
}

.zl-chat::-webkit-scrollbar { width: 4px; }
.zl-chat::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.14);
  border-radius: 10px;
}
.zl-chat::-webkit-scrollbar-track { background: transparent; }

/* Messages */
.zl-msg {
  display: flex;
  margin-bottom: 10px;
  animation: zlSlideIn 260ms var(--zl-t-fast) both;
}

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

.zl-msg--agent { justify-content: flex-start; }
.zl-msg--user { justify-content: flex-end; }

.zl-msg__bubble {
  max-width: 84%;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
}

.zl-msg--agent .zl-msg__bubble {
  background: var(--zl-card);
  border: 1px solid rgba(16, 185, 129, 0.10);
  border-radius: var(--zl-radius-bubble) var(--zl-radius-bubble) var(--zl-radius-bubble) 4px;
  color: var(--zl-ink-900);
  box-shadow: 0 1px 6px rgba(16, 185, 129, 0.05);
}

.zl-msg--user .zl-msg__bubble {
  background: linear-gradient(135deg, var(--zl-ink-900), #1a2744);
  border: 1px solid rgba(13, 23, 46, 0.3);
  border-radius: var(--zl-radius-bubble) var(--zl-radius-bubble) 4px var(--zl-radius-bubble);
  color: #fff;
  box-shadow: 0 1px 6px rgba(11, 18, 32, 0.10);
}

/* Typing indicator */
.zl-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: var(--zl-card);
  border: 1px solid rgba(16, 185, 129, 0.10);
  border-radius: var(--zl-radius-bubble) var(--zl-radius-bubble) var(--zl-radius-bubble) 4px;
  animation: zlSlideIn 180ms var(--zl-t-fast) both;
  width: fit-content;
  margin-bottom: 10px;
}

.zl-typing__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zl-green);
  opacity: 0.55;
  animation: zlBounce 1.2s ease-in-out infinite;
}
.zl-typing__dot:nth-child(2) { animation-delay: 0.16s; }
.zl-typing__dot:nth-child(3) { animation-delay: 0.32s; }

@keyframes zlBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Input */
.zl-input {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.zl-input__field {
  flex: 1;
  resize: none;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 14px;
  padding: 9px 13px;
  font: inherit;
  font-size: 0.87rem;
  color: var(--zl-ink-900);
  background: rgba(255, 255, 255, 0.80);
  outline: none;
  min-height: 40px;
  max-height: 100px;
  line-height: 1.4;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.zl-input__field::placeholder { color: var(--zl-ink-300); }

.zl-input__field:focus {
  border-color: var(--zl-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

/* Icon buttons */
.zl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 150ms var(--zl-t-spring), background 150ms ease, box-shadow 150ms ease;
  outline: none;
}

.zl-btn:hover { transform: scale(1.08); }
.zl-btn:active { transform: scale(0.95); }

.zl-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zl-btn--send {
  background: var(--zl-ink-900);
  color: #fff;
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.16);
}
.zl-btn--send:hover { box-shadow: 0 4px 14px rgba(11, 18, 32, 0.22); }
.zl-btn--send:disabled { opacity: 0.3; cursor: default; transform: none; }

.zl-btn--mic {
  background: rgba(16, 185, 129, 0.10);
  color: var(--zl-green);
  border: 1px solid rgba(16, 185, 129, 0.18);
}
.zl-btn--mic:hover {
  background: rgba(16, 185, 129, 0.16);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.06);
}
.zl-btn--mic[data-active="true"] {
  background: var(--zl-green);
  color: #fff;
  border-color: var(--zl-green);
  animation: zlMicPulse 2s ease-in-out infinite;
}

@keyframes zlMicPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16); }
  50% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.06); }
}

.zl-btn--phone {
  background: transparent;
  color: var(--zl-ink-300);
  width: 34px;
  height: 34px;
}
.zl-btn--phone:hover {
  color: var(--zl-ink-700);
  background: rgba(16, 185, 129, 0.06);
}
.zl-btn--phone svg { width: 16px; height: 16px; }

/* Phone panel */
.zl-phone-panel {
  display: none;
  padding: 10px 14px;
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  background: rgba(240, 253, 244, 0.45);
}
.zl-phone-panel[data-visible="true"] {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: zlSlideIn 180ms var(--zl-t-fast) both;
}
.zl-phone-panel__input {
  flex: 1;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.84rem;
  color: var(--zl-ink-900);
  background: rgba(255, 255, 255, 0.80);
  outline: none;
}
.zl-phone-panel__input:focus { border-color: var(--zl-green); }
.zl-phone-panel__submit {
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  background: var(--zl-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}
.zl-phone-panel__submit:hover { opacity: 0.88; }
.zl-phone-panel__cancel {
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--zl-ink-500);
  font-size: 0.8rem;
  cursor: pointer;
}

/* Progress */
.zl-progress {
  height: 3px;
  background: rgba(16, 185, 129, 0.06);
  overflow: hidden;
}
.zl-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--zl-green), var(--zl-green-bright));
  border-radius: 0 3px 3px 0;
  transition: width 600ms var(--zl-t-fast);
  width: 0%;
}

/* Completion */
.zl-complete {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 24px;
  gap: 14px;
  flex: 1;
}
.zl[data-state="complete"] .zl-complete {
  display: flex;
  animation: zlSlideIn 400ms var(--zl-t-fast) both;
}

.zl-complete__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zl-green), var(--zl-green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.10);
}
.zl-complete__icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.zl-complete__title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.zl-complete__body {
  font-size: 0.86rem;
  color: var(--zl-ink-700);
  max-width: 340px;
  line-height: 1.5;
}
.zl-complete__actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.zl-complete__btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform 150ms var(--zl-t-spring);
}
.zl-complete__btn:hover { transform: translateY(-1px); }
.zl-complete__btn--primary {
  background: var(--zl-ink-900);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 18, 32, 0.14);
}
.zl-complete__btn--secondary {
  background: rgba(16, 185, 129, 0.10);
  color: var(--zl-green);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1040px) {
  .zl {
    min-height: 380px;
    --zl-radius: 20px;
  }
}

@media (max-width: 680px) {
  .zl {
    --zl-radius: 16px;
    min-height: 340px;
  }
  .zl-dormant { padding: 28px 20px; }
  .zl-dormant__orb { width: 72px; height: 72px; }
  .zl-dormant__letter { font-size: 1.8rem; }
  .zl-intro__body { padding: 18px 16px; }
  .zl-modes { padding: 24px 16px; }
  .zl-modes__grid {
    grid-template-columns: 1fr;
    max-width: 240px;
  }
  .zl-mode-card {
    flex-direction: row;
    gap: 12px;
    padding: 14px 16px;
  }
  .zl-msg__bubble { max-width: 90%; font-size: 0.85rem; }
}

/* ── Sprint output contract ─────────────────────────────────── */

.zl-msg--output { margin-top: 8px; }

.zl-output {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--zl-ink-800, #1a2744);
}

.zl-output__section {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}
.zl-output__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.zl-output__section strong {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--zl-green, #10b981);
  margin-bottom: 4px;
}

.zl-output__section ul {
  margin: 4px 0 0 16px;
  padding: 0;
  list-style: disc;
}

.zl-output__section li {
  margin-bottom: 3px;
}

/* ── Reduced motion ────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .zl-msg, .zl-typing, .zl-complete, .zl-dormant__orb,
  .zl-phone-panel[data-visible="true"], .zl-intro__greeting,
  .zl-intro__form, .zl-intro__go, .zl-modes__title,
  .zl-modes__sub, .zl-modes__grid {
    animation: none;
  }
  .zl-btn, .zl-mode-card, .zl-intro__go, .zl-complete__btn { transition: none; }
  .zl-avatar__pulse { animation: none; }
  .zl-progress__bar, .zl-waveform { transition: none; }
  .zl-dormant__orb { animation: none; }
}
