.public-hero {
  align-items: stretch;
  gap: 28px;
  grid-template-columns: 1fr;
  min-height: auto;
}

.home-hero-copy {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.home-hero-copy .hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.home-hero-copy h1 {
  margin-left: auto;
  margin-right: auto;
}

.home-hero-copy .hero-actions {
  justify-content: center;
}

.home-demo {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: var(--layout-max-width);
  padding: 0;
  width: 100%;
}

.home-demo-carousel {
  display: grid;
  gap: 10px;
}

.home-demo-track {
  aspect-ratio: 5 / 3;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.home-demo-slide {
  display: none;
  height: 100%;
  margin: 0;
}

.home-demo-slide.is-active {
  display: block;
  height: 100%;
}

.home-demo-slide img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.home-demo-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.home-demo-actions {
  display: flex;
  justify-content: center;
}

.home-demo-arrow {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.home-demo-arrow:hover,
.home-demo-arrow:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.home-demo-dots {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.home-demo-dot {
  background: var(--line);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  padding: 0;
  width: 9px;
}

.home-demo-dot.is-active {
  background: var(--accent);
  width: 24px;
}

.home-audience {
  margin-top: 56px;
}

.home-audience-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.home-audience-list li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.5;
  padding: 18px 20px;
}

@media (max-width: 760px) {
  .home-audience {
    margin-top: 40px;
  }

  .home-audience-list {
    grid-template-columns: 1fr;
  }

  .home-demo-actions .home-demo-cta {
    width: 100%;
  }
}
