/* Keep the facility photograph and product dashboard as independent blocks. */
.lp-hero-visual {
  display: grid;
  grid-template-rows: minmax(245px, .82fr) minmax(365px, 1.18fr);
  min-height: 620px;
  background: #eaf4f2;
}

.lp-facility-scene {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #0b2028;
}

.lp-facility-scene .lp-infrastructure {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-facility-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 25, 31, .08), rgba(5, 25, 31, .62));
}

.lp-facility-scene figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.lp-facility-scene figcaption b {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(82, 222, 192, .5);
  border-radius: 18px;
  background: rgba(7, 42, 49, .8);
  color: #d9fff5;
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-facility-scene figcaption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.lp-dashboard-stage {
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 80% 0, rgba(82, 222, 192, .2), transparent 35%), #eaf4f2;
}

.lp-dashboard-stage .lp-phone {
  position: relative;
  bottom: auto;
  left: auto;
  width: min(440px, 100%);
  padding: 20px;
  border-color: rgba(12, 175, 135, .4);
  background: #071b22;
  box-shadow: 0 22px 48px rgba(15, 50, 54, .2);
  transform: none;
  backdrop-filter: none;
}

@media (max-width: 900px) {
  .lp-hero-visual {
    grid-template-rows: 260px auto;
    min-height: 0;
  }

  .lp-dashboard-stage {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .lp-hero-visual {
    grid-template-rows: 210px auto;
    min-height: 0;
  }

  .lp-facility-scene figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .lp-dashboard-stage {
    padding: 14px;
  }

  .lp-dashboard-stage .lp-phone {
    width: 100%;
    padding: 14px;
  }
}
