/* 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: 55px 1fr;
  align-content: center;
}
.product-sector-index article > div:first-child > span {
  grid-row: 1 / 3;
  color: var(--violet);
  font: 600 11px "IBM Plex Mono", monospace;
}
.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 .eyebrow {
  color: #9dafff;
}
.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 article > span {
  color: #98a8ff;
  font: 600 10px "IBM Plex Mono", monospace;
  letter-spacing: .04em;
}
.operator-journeys h3 {
  max-width: 260px;
  margin: 56px 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 — actual vending photographs, followed by a compact industry index. */
.life-sector-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.life-sector-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--life-soft);
  color: #20252b;
  text-align: left;
}
.life-sector-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.life-sector-card > span {
  display: block;
  padding: 22px 65px 22px 25px;
  font-size: 19px;
  font-weight: 600;
}
.life-sector-card > .icon {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  padding: 8px;
  overflow: visible;
  border-radius: 50%;
  background: #fff;
  color: var(--violet);
  box-sizing: content-box;
}
.life-sector-card:hover > span {
  color: var(--violet);
}
.life-sector-index {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
}
.life-sector-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 23px 8px;
  min-width: 0;
  text-align: left;
  border-top: 1px solid var(--line);
  background: none;
  font-size: 14px;
  font-weight: 600;
}
.life-sector-link > .icon:first-child {
  color: var(--violet);
  width: 24px;
  height: 24px;
  flex: none;
}
.life-sector-link > span { flex: 1; }
.life-sector-link > .icon:last-child { width: 15px; height: 15px; color: var(--muted); flex: none; }
.life-sector-link:hover { color: var(--violet); }
.life-sector-link:focus-visible, .life-sector-card:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 4px;
}

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

@media (max-width: 700px) {
  .product-sector-index article {
    display: block;
    padding: 25px 0;
  }
  .product-sector-index article > div:first-child {
    grid-template-columns: 42px 1fr;
  }
  .product-sector-index article > div:last-child {
    margin-top: 20px;
  }
  .product-sector-link {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 8px 9px;
  }
  .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: 28px 0 12px;
    font-size: 25px;
  }
  .operator-journeys article > p {
    min-height: 0;
  }
  .life-sector-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .life-sector-card {
    border-radius: 16px;
  }
  .life-sector-card > span {
    padding: 20px 65px 20px 22px;
    font-size: 18px;
  }
  .life-sector-card > .icon {
    right: 20px;
    bottom: 17px;
    width: 16px;
    height: 16px;
  }
  .life-sector-index { grid-template-columns: 1fr; margin-top: 28px; }
  .life-sector-link { padding: 21px 3px; }
}
