.product-page main {
  overflow: hidden;
}

.product-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px 0 56px;
  background: #071224;
  color: #fff;
  isolation: isolate;
}

.product-hero-media,
.product-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-hero-media {
  z-index: -2;
  object-fit: cover;
  object-position: center top;
}

.product-hero-shade {
  z-index: -1;
  background: rgba(3, 12, 26, 0.82);
}

.product-hero-content,
.product-screen-band,
.security-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.product-hero-content h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.product-hero-content > p:not(.kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.5;
}

.product-hero-actions,
.product-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-hero-actions {
  margin-top: 28px;
}

.product-hero-facts {
  margin-top: 22px;
}

.product-hero-facts span {
  border-left: 3px solid var(--gold);
  padding: 7px 12px;
  background: rgba(7, 18, 36, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.product-proof {
  padding-top: 62px;
}

.product-steps,
.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-steps article,
.capability-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.product-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #e9f5f4;
  color: var(--teal);
  font-weight: 950;
}

.product-steps h3,
.capability-list h3 {
  margin: 0 0 9px;
  font-size: 22px;
}

.product-steps p,
.capability-list p,
.product-screen-copy p,
.security-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-screen-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 38px;
  padding: 38px 0 74px;
}

.product-screen-copy h2,
.security-band h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.product-screen {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.product-capabilities {
  border-top: 1px solid var(--line);
}

.capability-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-list article {
  border-left: 5px solid var(--accent);
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  margin-bottom: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.security-points {
  display: grid;
  gap: 10px;
}

.security-points p {
  border-radius: 8px;
  padding: 15px 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 32, 37, 0.08);
  font-weight: 750;
}

.product-contact {
  margin-top: 0;
}

@media (max-width: 860px) {
  .product-hero {
    min-height: 540px;
    padding: 42px 0 40px;
  }

  .product-hero-media {
    object-position: 28% top;
  }

  .product-hero-content > p:not(.kicker) {
    font-size: 18px;
  }

  .product-screen-band,
  .security-band {
    grid-template-columns: 1fr;
  }

  .product-screen-copy {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .product-steps,
  .capability-list {
    grid-template-columns: 1fr;
  }

  .product-hero-content,
  .product-screen-band,
  .security-band {
    width: min(100% - 24px, 1120px);
  }

  .product-hero-content h1 {
    font-size: 50px;
  }

  .product-hero-actions a {
    width: 100%;
  }

  .product-hero-facts {
    display: grid;
  }

  .product-screen-band {
    padding-bottom: 54px;
  }

  .security-band {
    margin-bottom: 48px;
    padding: 48px 0;
  }
}
