/* Home page only */
.project-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 18px;
  color: var(--accent-2);
  font-size: 0.95rem;
  font-weight: 800;
  border: 1px solid rgba(255, 200, 107, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--header-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.project-status-pill span {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 240, 190, 0.42);
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(255, 200, 107, 0.12), 0 0 20px rgba(255, 200, 107, 0.74);
  animation: warmBlink 1.05s ease-in-out infinite;
}

.project-status-pill span::after {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(255, 200, 107, 0.42);
  border-radius: 50%;
  animation: warmPing 1.05s ease-out infinite;
}

.industry-card:nth-child(4),
.industry-card:nth-child(5),
.industry-card:nth-child(6) {
  grid-column: span 2;
}

.industry-more-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 200, 107, 0.12), transparent 20rem),
    var(--card-bg);
}

.card-icon.more::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #071111 0 18%, transparent 20%),
    conic-gradient(var(--accent), var(--accent-2), var(--coral), var(--accent-3), var(--accent));
}

@keyframes warmBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(255, 200, 107, 0.14), 0 0 22px rgba(255, 200, 107, 0.84);
  }

  50% {
    opacity: 0.32;
    transform: scale(0.72);
    box-shadow: 0 0 0 2px rgba(255, 200, 107, 0.08), 0 0 8px rgba(255, 200, 107, 0.48);
  }
}

@keyframes warmPing {
  0% {
    opacity: 0.75;
    transform: scale(0.7);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@media (max-width: 1020px) {
  .industry-card:nth-child(4),
  .industry-card:nth-child(5),
  .industry-card:nth-child(6) {
    grid-column: auto;
  }
}
