.home-hero-main#main-content {
  margin-bottom: 0;
}

.home-hero-main {
  padding: 0;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero__speakers {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-2), 2vw, var(--space-8));
  padding-inline: var(--content-padding-x);
}

.hero__speaker {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  padding-inline: var(--content-padding-x);
  padding-block: var(--space-8);
}

.hero__wordmark {
  display: block;
  width: 100%;
  max-width: min(820px, 80vw);
  margin: 0 auto;
}

.hero__wordmark img {
  width: 100%;
  height: auto;
}

.hero__nav {
  width: 100%;
}

.hero__nav-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__nav .btn:active,
.hero__nav .btn:focus-visible {
  --btn-bg: var(--color-black);
  --btn-color: var(--color-green);
  --btn-border-color: var(--color-green);
  outline: none;
}
/* Mobile: single speaker, top-left branding, stacked nav */
@media (max-width: 767px) {
  .hero__speakers {
    justify-content: center;
    align-items: flex-end;
    padding: 0;
  }

  .hero__speaker {
    margin-top: 150px;
    width: auto;
    height: auto;
    max-width: 100vw;
  }

  .hero__speaker:nth-child(n + 2) {
    display: none;
  }

  .hero__content {
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-6);
  }

  .hero__wordmark {
    max-width: min(320px, 70vw);
  }

  .hero__nav-items {
    flex-direction: column;
    align-items: stretch; /* each <li> fills the width */
  }

  .hero__nav li {
    display: flex;
    justify-content: center; /* center the capped button in the full-width li */
  }

  .hero__nav .btn {
    width: 100%; /* grows up to its 250px max-width */
  }

  .hero__nav .btn:active,
  .hero__nav .btn:focus-visible {
    --btn-bg: var(--color-black);
    --btn-color: var(--color-green);
    --btn-border-color: var(--color-black);
    outline: none;
  }
}
