/* ==========================================================================
   KOBIL — Industries: key use cases (shared, Aug 2026 net-new industry pages)
   ========================================================================== */

.sec-new-industry-usecases {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--w80);
  width: 100%;
  padding: var(--w80) var(--w80) 0;
}

/* Figma has a big, heavily-blurred blue vector (node 6160:82085, ~2346px
   wide) sitting behind overview/key-use-cases/compliance as one continuous
   glow — without it, the white cards have zero contrast against the white
   page-surface and read as "missing"/oversized empty space rather than
   cards with a 40px gap between rows. Reproduced as a soft radial wash
   (clipped by .page-surface's own overflow:clip, same as Figma's frame). */
.sec-new-industry-usecases::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--w160)) calc(-1 * var(--w400));
  z-index: -1;
  background: radial-gradient(55% 60% at 62% 15%, rgba(91, 140, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.sec-new-industry-usecases__head {
  display: flex;
  flex-direction: column;
  gap: var(--w24);
  max-width: var(--w753);
}

.sec-new-industry-usecases__tag {
  font-family: var(--font-mono);
  font-size: var(--w12);
  font-weight: 500;
  line-height: var(--w18);
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--navy-70);
}

.sec-new-industry-usecases__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--w56);
  line-height: 1.3;
  color: var(--navy);
}

.sec-new-industry-usecases__title-accent {
  background: linear-gradient(89.74deg, #3ebffc 3.46%, #1046cf 13.16%, #696ef5 41.17%, #ca80f4 63.62%, #ffc4a0 99.44%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec-new-industry-usecases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--w40);
}

.sec-new-industry-usecases__card {
  display: flex;
  flex-direction: column;
  gap: var(--w24);
  padding: var(--w40) var(--w40) var(--w60);
  background: var(--white);
  border-radius: var(--w20);
  /* Figma's own card has zero fill contrast against the page (confirmed
     via an isolated screenshot of node 6163:83290 — literally white text
     on white, no border or shadow at all), which reads as "missing" on a
     real page rather than intentionally minimal. Same soft shadow already
     used for cards elsewhere on the site (security-compliance.css) gives
     the boundary Figma's mockup skips. */
  box-shadow: 0 4px 22px rgba(17, 36, 74, 0.08);
}

.sec-new-industry-usecases__card-top {
  display: flex;
  flex-direction: column;
  gap: var(--w10);
}

.sec-new-industry-usecases__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-new-industry-usecases__card-label {
  font-family: var(--font-mono);
  font-size: var(--w12);
  font-weight: 500;
  line-height: var(--w22);
  text-transform: uppercase;
  color: var(--navy-70);
}

.sec-new-industry-usecases__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--w56);
  height: var(--w56);
  border-radius: 17.5px;
  background: #f7f8fd;
}

.sec-new-industry-usecases__card-icon img {
  width: var(--w28);
  height: var(--w28);
}

.sec-new-industry-usecases__card-title {
  font-family: var(--font-sans);
  font-size: var(--w24);
  font-weight: 700;
  line-height: var(--w32);
  color: var(--navy);
}

.sec-new-industry-usecases__card-desc {
  font-family: var(--font-sans);
  font-size: var(--w16);
  font-weight: 400;
  line-height: var(--w23);
  color: var(--navy-70);
}

.sec-new-industry-usecases__card-divider {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--navy-30);
}

.sec-new-industry-usecases__card-result {
  font-family: var(--font-sans);
  font-size: var(--w16);
  line-height: var(--w23);
  color: var(--navy);
}

.sec-new-industry-usecases__card-result strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .sec-new-industry-usecases {
    padding: var(--w64) var(--w40) 0;
  }

  .sec-new-industry-usecases__title {
    font-size: var(--w44);
  }

  .sec-new-industry-usecases__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .sec-new-industry-usecases {
    padding: var(--m48) var(--m24) 0;
    gap: var(--m48);
  }

  .sec-new-industry-usecases__title {
    font-size: var(--m32);
  }

  .sec-new-industry-usecases__card {
    padding: var(--m28) var(--m24) var(--m36);
  }
}
