.hshow {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.hshow__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hshow__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.hshow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
}

.hshow__pulse {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 999px;
  background: var(--brand);
  animation: hshow-pulse 2s ease-out infinite;
}

@keyframes hshow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.5rem rgba(var(--brand-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0);
  }
}

.hshow__title {
  margin-top: 0.625rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #ffffff;
}

.hshow__subtitle {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgb(var(--muted-foreground));
  max-width: 30rem;
}

.hshow__demo {
  margin-top: 1.25rem;
}

@media (max-width: 640px) {
  .hshow__title {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hshow__pulse {
    animation: none;
  }
}
