/* ═══════════════════════════════════════════════════════════════
   ГОЛОСОВОЙ КВИЗ
   ═══════════════════════════════════════════════════════════════ */

.aq {
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 229, 122, .07), transparent 60%),
    var(--bg);
}

.aq__stage { width: 100%; max-width: 640px; text-align: center }
.aq__letters { margin: 26px 0 30px }

/* ── эквалайзер: живёт, пока звучит голос ─────────────────── */
.aq__wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 56px;
  margin-bottom: 22px;
}

.aq__wave i {
  width: 4px;
  height: 6px;
  border-radius: 2px;
  background: var(--bg-3);
  transition: height .25s ease, background .25s ease;
}

.aq--talking .aq__wave i {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 229, 122, .5);
  animation: aqWave .85s ease-in-out infinite;
}

/* каждая полоска со своей задержкой — получается бегущая волна */
.aq--talking .aq__wave i:nth-child(3n)   { animation-delay: .1s }
.aq--talking .aq__wave i:nth-child(3n+1) { animation-delay: .25s }
.aq--talking .aq__wave i:nth-child(4n)   { animation-delay: .4s }
.aq--talking .aq__wave i:nth-child(5n)   { animation-delay: .55s }

@keyframes aqWave {
  0%, 100% { height: 8px }
  50%      { height: 42px }
}

.aq__status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--text-faint);
  min-height: 16px;
  margin-bottom: 16px;
}

.aq__slot { min-height: 200px }

.aq__question {
  text-align: left;
  animation: dropIn .45s cubic-bezier(.22, 1, .36, 1) both;
}

.aq__question.center { text-align: center }
.aq__play { margin-top: 20px }
