.hero {
  position: relative;
  overflow: hidden;
  /* Sin min-height 100vh en móvil: el centrado vertical dejaba un hueco enorme arriba */
  padding-block: 1.5rem 2.5rem;
  display: flex;
  align-items: flex-start;
}

.hero__inner {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: 1.25rem;
  width: 100%;
}

.hero__title {
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--mars-muted);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
  margin-top: 1.75rem;
}

.hero .geo-cluster {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  display: none;
}

.hero .geo-shape:nth-child(1) {
  top: 8%;
  left: 18%;
}

.hero .geo-shape:nth-child(2) {
  top: 28%;
  left: 42%;
}

.hero .geo-shape:nth-child(3) {
  top: 48%;
  left: 12%;
}

@media (min-width: 768px) {
  .hero {
    padding-block: 2.5rem 3.5rem;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: calc(100vh - var(--header-height));
    align-items: center;
    padding-block: calc(var(--section-space) * 0.6) var(--section-space);
  }

  .hero__visual {
    margin-top: 0;
  }

  .hero .geo-cluster {
    display: block;
  }
}
