@charset "UTF-8";
/* Hero visual — Figma node 16489:21394.
   HTML card and copy so text stays at a real size and the two lanes can stack;
   the waveform is the only SVG, stretched to whatever width its lane gets. */
.vhd {
  width: 100%;
}
.vhd * {
  color: inherit;
}
.vhd__card {
  padding: 28px;
  border-radius: 20px;
  background: #14141a;
}
.vhd {
  /* ---- header ---- */
}
.vhd__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.vhd__note {
  font-size: 14px;
  line-height: 20px;
  color: #8b8b9e;
}
.vhd {
  /* ---- lanes ---- */
}
.vhd__lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vhd__lane {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #2b2b33;
  border-radius: 14px;
  background: #202026;
}
.vhd__lane--clean {
  border-color: #564888;
}
.vhd__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b8b9e;
}
.vhd__lane--clean .vhd__label {
  color: #c9b8ff;
}
.vhd__line {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 21px;
  color: #d5d5e2;
}
.vhd__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: auto 0 0;
  padding-top: 24px;
  font-size: 14px;
  line-height: 20px;
  color: #8b8b9e;
}
.vhd__count strong {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  color: #ffffff;
}
.vhd__lane--clean .vhd__count strong {
  color: #a99cf0;
}
.vhd {
  /* ---- waveform ---- */
}
.vhd__wave {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: 18px;
  overflow: visible;
}

/* ---- motion ----
   The waveform runs continuously; the transcript types itself in once and then
   stays put. Off screen the waves pause, so they cost nothing behind the
   sections below. */
.vhd_bar {
  fill: #6c6c70;
  transform-box: fill-box;
  transform-origin: center;
  animation: vhd-pulse 1.6s ease-in-out infinite;
  animation-delay: var(--d);
}

.vhd_bar--noise {
  fill: #de7279;
  animation-name: vhd-pulse-noise;
}

/* Same bars on the isolated lane: still there, but no longer the loud thing
   in the room. */
.vhd_bar--muted {
  fill: #7a939d;
  opacity: 0.85;
}

.vhd__scan {
  fill: rgba(255, 255, 255, 0.05);
  opacity: 0;
}

/* Keeps a word whole when the line wraps. */
.vhd__w {
  white-space: nowrap;
}

.vhd__ch {
  opacity: 0;
}
.vhd__ch--word {
  color: #de7279;
}

.vhd.is_playing .vhd__scan {
  animation: vhd-scan 4.5s ease-in-out infinite;
}
.vhd.is_playing .vhd__ch {
  animation: vhd-type 0.01s linear forwards;
  animation-delay: calc(var(--i) * 0.022s);
}

/* Paused while the card is off screen. */
.vhd.is_paused .vhd_bar,
.vhd.is_paused .vhd__scan {
  animation-play-state: paused;
}

@keyframes vhd-pulse {
  0%, 100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1.1);
  }
}
@keyframes vhd-pulse-noise {
  0%, 100% {
    transform: scaleY(0.55);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}
@keyframes vhd-scan {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    transform: translateX(350px);
    opacity: 0;
  }
}
@keyframes vhd-type {
  to {
    opacity: 1;
  }
}
/* Without JS, or with motion turned down, show the finished state. */
@media (prefers-reduced-motion: reduce) {
  .vhd .vhd_bar {
    animation: none !important;
  }
  .vhd .vhd__ch {
    opacity: 1;
    animation: none !important;
  }
  .vhd .vhd__scan {
    opacity: 0;
    animation: none !important;
  }
}
@media screen and (max-width: 900px) {
  .vhd__card {
    padding: 20px;
  }
  .vhd__lanes {
    gap: 12px;
  }
  .vhd__lane {
    padding: 16px;
  }
  .vhd__note {
    font-size: 12px;
  }
  .vhd__line {
    font-size: 13px;
    line-height: 20px;
    margin-top: 18px;
  }
}
@media screen and (max-width: 720px) {
  .vhd {
    /* Side by side, each lane is too narrow for its transcript to read. */
  }
  .vhd__lanes {
    grid-template-columns: 1fr;
  }
  .vhd__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }
  .vhd__note {
    text-align: left;
  }
  .vhd__line {
    font-size: 14px;
    line-height: 21px;
  }
  .vhd__count {
    padding-top: 18px;
  }
}
@media screen and (max-width: 480px) {
  .vhd__card {
    padding: 16px;
    border-radius: 16px;
  }
  .vhd__lane {
    padding: 14px;
  }
  .vhd__count strong {
    font-size: 22px;
    line-height: 28px;
  }
}
