.machine-hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
}

.machine-hero__image,
.machine-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.machine-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 58% center;
}

.machine-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 13, 16, 0.97) 0%, rgba(9, 13, 16, 0.88) 38%, rgba(9, 13, 16, 0.34) 67%, rgba(9, 13, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 13, 16, 0.68) 0%, transparent 44%);
}

.machine-hero__inner {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.machine-hero__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
}

.machine-hero__copy {
  max-width: 44rem;
}

.machine-hero__coverage {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(9, 13, 16, 0.5);
  color: #f3f6f4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.machine-hero__coverage span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f4511e;
}

.machine-hero__proof {
  display: grid;
  width: min(100%, 35rem);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 13, 16, 0.48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.machine-hero__proof span {
  padding: 0.85rem 1rem;
  color: #e6ece8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.machine-hero__proof span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 767px) {
  .machine-hero,
  .machine-hero__inner {
    min-height: 720px;
  }

  .machine-hero__image {
    object-position: 66% center;
  }

  .machine-hero__shade {
    background:
      linear-gradient(90deg, rgba(9, 13, 16, 0.94) 0%, rgba(9, 13, 16, 0.68) 100%),
      linear-gradient(0deg, rgba(9, 13, 16, 0.82) 0%, rgba(9, 13, 16, 0.08) 72%);
  }

  .machine-hero__inner {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .machine-hero__content {
    justify-content: flex-end;
    padding-top: 8rem;
  }

  .machine-hero__proof {
    margin-top: 2rem;
  }

  .machine-hero__proof span {
    padding-inline: 0.5rem;
    font-size: 0.66rem;
  }
}
