/* FlowTalk Landing — Design System (dark/light). See DESIGN.md. */

:root {
  /* Brand (same in both modes) */
  --brand-primary: #7c3aed;
  --brand-secondary: #a855f7;
  --brand-blue: #3882f6;
  --brand-cyan: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #3882f6 52%, #06b6d4 100%);
  --gradient-horizontal: linear-gradient(90deg, #7c3aed 0%, #06b6d4 100%);

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* Motion */
  --dur-fast: 160ms;
  --dur-normal: 240ms;
  --dur-slow: 480ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1200px;
}

/* ---------- THEME TOKENS (light-only) ---------- */
:root,
:root[data-theme="light"] {
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-glass: rgba(255, 255, 255, 0.72);
  --text-1: #0f172a;
  --text-2: #334155;
  --text-3: #64748b;
  --border: rgba(15, 23, 42, 0.1);
  --border-strong: rgba(15, 23, 42, 0.16);
  --shadow-card: 0 24px 80px rgba(15, 23, 42, 0.1);
  --inset-hi: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --grid-line: rgba(15, 23, 42, 0.035);
  --aura-1: rgba(124, 58, 237, 0.16);
  --aura-2: rgba(6, 182, 212, 0.14);
  --aura-3: rgba(56, 130, 246, 0.1);
  --navbar-bg: rgba(255, 255, 255, 0.72);
  --btn-secondary-bg: rgba(255, 255, 255, 0.72);
  --kbd-bg: rgba(15, 23, 42, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--dur-slow) var(--ease), color var(--dur-slow) var(--ease);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* ---------- BACKGROUND ---------- */
.bg-aura,
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-aura {
  background:
    radial-gradient(circle at 18% 8%, var(--aura-1), transparent 32%),
    radial-gradient(circle at 82% 16%, var(--aura-2), transparent 28%),
    radial-gradient(circle at 50% 92%, var(--aura-3), transparent 36%);
  transition: background var(--dur-slow) var(--ease);
}

.bg-grid {
  background-size: 40px 40px;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 24px;
}

/* ---------- GLASS ---------- */
.glass {
  background: var(--surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--inset-hi);
}

/* ---------- TYPE ---------- */
.text-gradient {
  background: var(--gradient-horizontal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 18px;
  color: var(--text-1);
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.brand__logo--sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.navbar__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--text-3);
}

.navbar__links a {
  transition: color var(--dur-fast) var(--ease);
}

.navbar__links a:hover {
  color: var(--text-1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  background-clip: padding-box;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-normal) var(--ease);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 14px;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--primary {
  background-color: #06b6d4;
  background-image: linear-gradient(90deg, #7c3aed 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.32), 0 6px 18px rgba(6, 182, 212, 0.16);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(124, 58, 237, 0.4), 0 8px 22px rgba(6, 182, 212, 0.2);
}

.btn--secondary {
  background: var(--btn-secondary-bg);
  border-color: var(--border);
  color: var(--text-2);
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  transform: translateY(-1px);
  color: var(--text-1);
  border-color: var(--border-strong);
}

/* ---------- BADGE / CHIP ---------- */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.chip__dot--purple { background: var(--brand-primary); }
.chip__dot--blue { background: var(--brand-blue); }
.chip__dot--cyan { background: var(--brand-cyan); }

.chip--live {
  color: var(--brand-cyan);
  border-color: rgba(6, 182, 212, 0.35);
}
.chip__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6);
  animation: pulse 1.8s var(--ease) infinite;
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero__title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text-1);
}

.hero__lede {
  margin-top: 22px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-3);
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__chips {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- MOCKUP ---------- */
.mock {
  border-radius: var(--r-xl);
  overflow: hidden;
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.mock__traffic {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-strong);
}
.mock__title {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}

.mock__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mock__status {
  display: flex;
  gap: 10px;
}

/* Só o chip da fase atual fica em destaque; os outros recuam. */
.mock__chip {
  transition: opacity var(--dur-normal) var(--ease);
  opacity: 0.4;
}
#mockDemo[data-phase="listening"] .mock__chip--listening,
#mockDemo[data-phase="transcribing"] .mock__chip--transcribing,
#mockDemo[data-phase="ready"] .mock__chip--ready {
  opacity: 1;
}
/* O pulse só corre enquanto está ouvindo */
#mockDemo:not([data-phase="listening"]) .chip__pulse {
  animation: none;
}

/* ---------- STAGE: áudio (ouvindo) ↔ transcrição (texto) ---------- */
.mock__stage {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audio {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
  padding: 0 4px;
  transition: opacity var(--dur-normal) var(--ease),
    transform var(--dur-slow) var(--ease);
}
.audio__bar {
  flex: 1;
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, #7c3aed, #3882f6, #06b6d4);
  transform-origin: bottom;
  transform: scaleY(0.55);
}
/* Pulsar apenas na fase de escuta — padrão irregular, como espectro de áudio real */
#mockDemo[data-phase="listening"] .audio__bar {
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
#mockDemo[data-phase="listening"] .audio__bar:nth-child(1)  { animation: wave-a 0.62s -0.05s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(2)  { animation: wave-c 0.48s -0.32s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(3)  { animation: wave-b 0.71s -0.18s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(4)  { animation: wave-d 0.55s -0.44s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(5)  { animation: wave-a 0.50s -0.21s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(6)  { animation: wave-e 0.67s -0.09s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(7)  { animation: wave-c 0.43s -0.37s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(8)  { animation: wave-b 0.59s -0.14s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(9)  { animation: wave-d 0.74s -0.51s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(10) { animation: wave-a 0.46s -0.27s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(11) { animation: wave-e 0.64s -0.40s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(12) { animation: wave-c 0.52s -0.11s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(13) { animation: wave-b 0.69s -0.34s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(14) { animation: wave-d 0.45s -0.19s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(15) { animation: wave-a 0.58s -0.46s infinite ease-in-out; }
#mockDemo[data-phase="listening"] .audio__bar:nth-child(16) { animation: wave-e 0.66s -0.07s infinite ease-in-out; }

/* Ao sair da escuta, as barras colapsam para uma linha e somem */
#mockDemo:not([data-phase="listening"]) .audio {
  opacity: 0;
  transform: scaleY(0.04);
}

/* Texto transcrito surge no lugar das barras */
.mock__transcript {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 0;
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-1);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-normal) var(--ease),
    transform var(--dur-slow) var(--ease);
}
#mockDemo[data-phase="transcribing"] .mock__transcript,
#mockDemo[data-phase="ready"] .mock__transcript {
  opacity: 1;
  transform: none;
}

.mock__word {
  opacity: 0;
  transform: translateY(4px);
  animation: wordIn var(--dur-normal) var(--ease) forwards;
  white-space: pre;
}

.mock__caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  border-radius: 2px;
  background: var(--brand-primary);
  vertical-align: text-bottom;
  animation: caretBlink 1s steps(1) infinite;
}
/* Caret some quando termina (fase ready) */
#mockDemo[data-phase="ready"] .mock__caret {
  opacity: 0;
}
#mockDemo[data-phase="listening"] .mock__caret {
  display: none;
}

/* Botão Enviar "acende" quando o texto está pronto */
#mockDemo[data-phase="ready"] .mock__send {
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.16),
    0 12px 32px rgba(124, 58, 237, 0.32);
}
.mock__send {
  transition: box-shadow var(--dur-normal) var(--ease);
}

.mock__foot {
  display: flex;
  align-items: center;
  gap: 7px;
}
.kbd {
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--kbd-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.mock__hint {
  font-size: 13px;
  color: var(--text-3);
}
.mock__send {
  margin-left: auto;
}

/* ---------- SECTIONS / CARDS ---------- */
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section__head .badge {
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.section__lede {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-3);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: var(--shadow-card), 0 0 48px rgba(124, 58, 237, 0.18);
}
.card--featured:hover {
  box-shadow: var(--shadow-card), 0 0 64px rgba(124, 58, 237, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
  .card:hover {
    transform: none;
  }
}
.card__title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-1);
}
.card__text {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-3);
}

.card--featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: var(--shadow-card), 0 0 48px rgba(124, 58, 237, 0.18);
}

.card--wide {
  padding: 40px;
}

.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 700;
}

.ico svg {
  width: 24px;
  height: 24px;
}

.privacy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.privacy-art {
  color: var(--text-3);
  flex-shrink: 0;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-md);
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.3);
}

/* ---------- PRIVACY ---------- */
.privacy {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
}
.privacy__copy .badge {
  margin-bottom: 14px;
}
.privacy__copy .section__title {
  text-align: left;
}
.privacy__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding: 56px 32px;
}
.cta .badge {
  margin-bottom: 18px;
}
.cta .section__lede {
  margin-bottom: 28px;
}
.cta__meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-3);
}

/* ---------- OFFER (âncora de preço) ---------- */
.offer {
  margin: 4px 0 28px;
  text-align: center;
}
.offer__from {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-3);
}
.offer__from s {
  text-decoration: line-through;
}
.offer__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2px 0 0;
}
.offer__now {
  font-size: clamp(64px, 12vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.offer__cur {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
  color: var(--text-2);
}
.offer__badge {
  display: inline-block;
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-blue) 100%);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.28);
}
.offer__terms {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.offer__terms strong {
  font-weight: 700;
  color: var(--text-1);
}

/* ---------- FOOTER ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  margin-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- KEYFRAMES ---------- */
@keyframes audioPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.65; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes wave-a {
  0%   { transform: scaleY(0.42); }
  30%  { transform: scaleY(0.72); }
  55%  { transform: scaleY(0.52); }
  100% { transform: scaleY(0.42); }
}
@keyframes wave-b {
  0%   { transform: scaleY(0.50); }
  25%  { transform: scaleY(0.62); }
  60%  { transform: scaleY(0.85); }
  100% { transform: scaleY(0.50); }
}
@keyframes wave-c {
  0%   { transform: scaleY(0.38); }
  40%  { transform: scaleY(0.66); }
  70%  { transform: scaleY(0.46); }
  100% { transform: scaleY(0.38); }
}
@keyframes wave-d {
  0%   { transform: scaleY(0.55); }
  35%  { transform: scaleY(0.80); }
  65%  { transform: scaleY(0.58); }
  100% { transform: scaleY(0.55); }
}
@keyframes wave-e {
  0%   { transform: scaleY(0.44); }
  20%  { transform: scaleY(0.68); }
  50%  { transform: scaleY(0.50); }
  80%  { transform: scaleY(0.74); }
  100% { transform: scaleY(0.44); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}
@keyframes wordIn {
  to { opacity: 1; transform: none; }
}
@keyframes caretBlink {
  50% { opacity: 0; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 64px;
  }
  .hero__copy {
    text-align: center;
  }
  .hero__lede {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions,
  .hero__chips {
    justify-content: center;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .privacy {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .privacy__copy .section__title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 20px;
  }
  #features .section__lede {
    display: none;
  }
  .navbar__links {
    display: none;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.1;
  }
  .hero__actions {
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .hero__actions .btn {
    flex: 1;
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
  }
  .card--wide,
  .cta {
    padding: 28px 20px;
  }
}

/* Touch: 44px tap targets (Apple HIG) */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .audio__bar,
  .chip__pulse {
    animation: none;
  }
}
