/* ============================================================
   Industry showcase marquee — dual auto-scrolling card rails
   ============================================================ */
.showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--bg-alt, #0a0a0b);
  border-top: 1px solid var(--line, rgba(255, 255, 255, 0.1));
  border-bottom: 1px solid var(--line, rgba(255, 255, 255, 0.1));
}
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 56px);
}
.showcase-copy h2 {
  font-family: "Clash Display", sans-serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 6.4vw, 84px);
  text-transform: uppercase;
  margin: 0;
}
.showcase-copy h2 span {
  display: block;
  color: var(--orange, #ff6a00);
}
.showcase-copy p {
  margin: 20px 0 0;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mute, rgba(255, 255, 255, 0.62));
}
.showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 17px 34px;
  border-radius: 999px;
  background: var(--orange, #ff6a00);
  color: #0a0a0b;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.35s ease;
}
.showcase-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.showcase-rails {
  position: relative;
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.showcase-row {
  display: flex;
  overflow: hidden;
}
.showcase-track {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  flex: 0 0 auto;
  animation: showcase-slide 44s linear infinite;
  will-change: transform;
}
.showcase-row.is-alt .showcase-track {
  animation-duration: 58s;
  animation-direction: reverse;
}
.showcase-row:hover .showcase-track {
  animation-play-state: paused;
}
@keyframes showcase-slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.showcase-card {
  flex: 0 0 auto;
  width: clamp(132px, 15vw, 188px);
  border-radius: 22px;
  overflow: hidden;
  background: #111113;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.1));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.48);
  position: relative;
}
.showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.showcase-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 12px 11px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .showcase-copy p {
    max-width: none;
  }
  .showcase-rails {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .showcase-card {
    width: 128px;
    border-radius: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-track {
    animation: none;
  }
  .showcase-row {
    overflow-x: auto;
  }
}
