/* Softer text emphasis: light gradients instead of flat neon fills. */
.text-accent {
  font-weight: 700;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.text-accent--green {
  background-image: linear-gradient(105deg, #c3ffd0 0%, #7fe6c5 48%, #8bc8ff 100%);
}

.text-accent--purple {
  background-image: linear-gradient(105deg, #f0c0ff 0%, #d5a5ff 48%, #a5c5ff 100%);
}

.industry-banner {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(13, 18, 26, .72);
  box-shadow: inset 0 0 0 1px rgba(108, 255, 127, .04);
}

.industry-banner__viewport {
  position: relative;
  overflow: hidden;
}

.industry-banner__viewport::before,
.industry-banner__viewport::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
}

.industry-banner__viewport::before { left: 0; background: linear-gradient(90deg, rgba(13, 18, 26, 1), transparent); }
.industry-banner__viewport::after { right: 0; background: linear-gradient(270deg, rgba(13, 18, 26, 1), transparent); }
.industry-banner__track { display: flex; width: max-content; animation: industry-scroll 32s linear infinite; }
.industry-banner__group { display: flex; align-items: center; gap: 0; flex: none; }
.industry-banner__group span { display: inline-flex; align-items: center; gap: 20px; padding: 13px 20px; color: #d9e4f3; font-size: .88rem; font-weight: 650; white-space: nowrap; }
.industry-banner__group span::after { content: "✦"; color: var(--accent-2); font-size: .7rem; }
@keyframes industry-scroll { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .industry-banner__track { animation: none; }
}
