/* Three deliberately different ways to present the same 12 business environments. */

/* 01 — technical taxonomy: environments grouped by product requirements. */
.product-industries {
  background: #f4f5f8;
}
.product-sector-index {
  border-top: 1px solid #cfd4df;
}
.product-sector-index article {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 48px;
  min-height: 150px;
  padding: 28px 0;
  border-bottom: 1px solid #cfd4df;
}
.product-sector-index article > div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
}
.product-sector-index h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.025em;
}
.product-sector-index p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.product-sector-index article > div:last-child {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}
.product-sector-link {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid #d9dce4;
  border-radius: 4px;
  background: #fff;
  color: #22283a;
  font-size: 10px;
  font-weight: 650;
}
.product-sector-link .icon:first-child {
  width: 17px;
  color: var(--violet);
}
.product-sector-link .icon:last-child {
  width: 11px;
  color: #989eae;
}
.product-sector-link:hover {
  border-color: var(--violet);
  color: var(--violet);
}

/* 02 — operator journeys: start with the operational outcome, then reveal sectors. */
.operator-industries {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, #4f4aa755 0, transparent 30%),
    #101528;
}
.operator-industries::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid #7f91ff55;
  border-radius: 50%;
  box-shadow: 0 0 0 55px #ffffff05, 0 0 0 110px #ffffff04;
}
.operator-industries .container {
  position: relative;
  z-index: 1;
}
.operator-industries .section-heading > p {
  color: #b4bbcd;
}
.operator-journeys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ffffff2b;
  border-bottom: 1px solid #ffffff2b;
}
.operator-journeys article {
  min-height: 390px;
  padding: 30px 30px 34px;
  border-right: 1px solid #ffffff2b;
}
.operator-journeys article:last-child {
  border-right: 0;
}
.operator-journeys h3 {
  max-width: 260px;
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
}
.operator-journeys article > p {
  min-height: 78px;
  color: #aeb6ca;
  font-size: 12px;
  line-height: 1.7;
}
.operator-journeys article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}
.operator-journey-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid #ffffff2b;
  border-radius: 999px;
  background: #ffffff09;
  color: #e5e8f1;
  font-size: 9px;
}
.operator-journey-link .icon:first-child {
  width: 14px;
  color: #a8b6ff;
}
.operator-journey-link .icon:last-child {
  display: none;
}
.operator-journey-link:hover {
  border-color: #91a3ff;
  background: #ffffff14;
}

/* 03 — lifestyle gallery: every business sphere gets a real scene. */
.life-sector-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.life-sector-card {
  position: relative;
  min-height: 235px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe4e7;
  color: #fff;
  text-align: left;
  isolation: isolate;
}
.life-sector-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 32% 0 0;
  background: linear-gradient(transparent, #101522d9);
}
.life-sector-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.life-sector-card > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 50px;
  bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 2px 15px #0008;
}
.life-sector-card > .icon {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 17px;
  height: 17px;
  padding: 4px;
  overflow: visible;
  border-radius: 50%;
  background: #fff;
  color: #171b29;
  box-sizing: content-box;
}
.life-sector-card:hover img {
  transform: scale(1.045);
}

@media (max-width: 1000px) {
  .product-sector-index article {
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
  }
  .operator-journeys article {
    padding: 26px 22px;
  }
  .life-sector-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .product-sector-index article {
    display: block;
    padding: 25px 0;
  }
  .product-sector-index article > div:first-child {
    grid-template-columns: 1fr;
  }
  .product-sector-index article > div:last-child {
    margin-top: 20px;
  }
  .product-sector-link {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    min-height: 44px;
    padding: 8px 10px;
    font-size: 15px;
  }
  .product-sector-index p {
    font-size: 14px;
  }
  .product-sector-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .operator-industries {
    padding: 72px 0;
  }
  .operator-journeys {
    display: block;
  }
  .operator-journeys article {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #ffffff2b;
  }
  .operator-journeys article:last-child {
    border-bottom: 0;
  }
  .operator-journeys h3 {
    margin: 0 0 12px;
    font-size: 25px;
  }
  .operator-journeys article > p {
    min-height: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .operator-journey-link {
    min-height: 44px;
    padding: 8px 14px;
    font-size: 14px;
  }
  .life-sector-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .life-sector-card {
    min-height: 175px;
    border-radius: 13px;
  }
  .life-sector-card > span {
    left: 12px;
    right: 38px;
    bottom: 13px;
    font-size: 14px;
  }
  .life-sector-card > .icon {
    right: 10px;
    bottom: 10px;
    width: 13px;
    height: 13px;
  }
}
