/* DAONSNC homepage 2026 — marquee */
.marquee-section {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line-1);
}

.marquee-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 18px;
}

.marquee-label::before {
  content: "";
  flex: 0 0 12px;
  height: 1px;
  background: var(--ink-4);
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px 0 14px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.tech-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.tech-chip .lang-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--line-1);
}
