/* Shunter — tech / AI brand strip (homepage) */
.shunter-tech-strip {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(145deg, #060d18 0%, #0a1a2e 42%, #071018 100%);
  border-top: 1px solid rgba(0, 180, 220, 0.12);
  border-bottom: 1px solid rgba(0, 180, 220, 0.08);
}
.shunter-tech-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}
.shunter-tech-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}
@media (max-width: 1000px) {
  .shunter-tech-strip__inner {
    grid-template-columns: 1fr;
  }
}
.tech-badge {
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  background: rgba(8, 24, 40, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.tech-badge--cert {
  border-color: rgba(255, 200, 120, 0.25);
  background: linear-gradient(160deg, rgba(40, 28, 12, 0.5) 0%, rgba(8, 22, 36, 0.65) 100%);
}
.tech-badge__eyebrow {
  font-family: "Outfit-SemiBold", "SourceHanSansCN-Medium", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.85);
  margin-bottom: 0.5rem;
}
.tech-badge--cert .tech-badge__eyebrow {
  color: rgba(255, 200, 140, 0.9);
}
.tech-badge__label {
  display: block;
  font-family: "Outfit-Bold", "SourceHanSansCN-Bold", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  color: #e8f4ff;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}
.tech-badge__title {
  font-family: "Outfit-Bold", "SourceHanSansCN-Bold", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  color: #e8f4ff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.tech-badge__desc {
  font-family: "Outfit-Light", "SourceHanSansCN-Light", sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  color: rgba(220, 235, 250, 0.82);
  line-height: 1.65;
}
.tech-stack {
  margin-top: 1rem;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(0, 212, 255, 0.35);
}
.tech-stack li {
  font-family: "Outfit-Light", "SourceHanSansCN-Light", sans-serif;
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  color: rgba(220, 235, 250, 0.88);
  line-height: 1.7;
  margin-bottom: 0.45rem;
}
.tech-stack strong {
  font-family: "Outfit-SemiBold", "SourceHanSansCN-Medium", sans-serif;
  color: #5ee0ff;
  font-weight: 600;
}
