.industry-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 80px 110px;
  background: #10131d;
}

.industry-grid-video,
.industry-grid-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.industry-grid-video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.industry-grid-video-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 11, 19, 0.42), rgba(8, 11, 19, 0.68)),
    radial-gradient(circle at 50% 25%, rgba(98, 78, 239, 0.08), rgba(7, 9, 16, 0.38));
  backdrop-filter: saturate(0.92);
}

.industry-grid article {
  position: relative;
  min-height: 274px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  color: #fff;
  background: rgba(14, 17, 29, 0.69);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 70px rgba(2, 4, 12, 0.24);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.industry-grid article:hover {
  transform: translateY(-5px);
  background: rgba(17, 20, 34, 0.84);
  border-color: rgba(255, 255, 255, 0.4);
}

.industry-grid article p { color: rgba(244, 246, 255, 0.78); }
.industry-grid article a { margin-top: auto; color: #fff; font-weight: 700; }
.industry-grid article a:hover { color: #8feaf2; }
.industry-grid .icon-orb {
  background: rgba(124, 101, 255, 0.22);
  border: 1px solid rgba(180, 168, 255, 0.38);
  color: #c8beff;
}

@media (max-width: 900px) {
  .industry-grid { padding-block: 56px 72px; }
  .industry-grid article { min-height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  .industry-grid-video { display: none; }
  .industry-grid { background: linear-gradient(135deg, #171b2c, #29204e); }
  .industry-grid article { transition: none; }
}
