/* Industries — HowItWorks ↔ PlatformDemo 사이의 짧은 transition 섹션.
   Reference 의 italic 헤드라인 voice 는 유지하되, Fraunces italic 의 꼬부랑
   descender 'f' 가 너무 ornate 해서 Inter italic 으로 교체. 사이트 전반
   sans 톤과도 일관 (homepage mood preserved). */

.ind {
  --accent: var(--mint);

  border-top: 1px solid var(--line);
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Eyebrow — hiw-eyebrow 톤이지만 글자 살짝 키움 (interlude 입구 신호 강조). */
.ind-eyebrow {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* Headline — Inter italic. reference 의 italic 분기 모먼트는 유지하되 sans 로.
   Size 는 hiw/platform 같은 메인 섹션 헤드라인(clamp(30px, 4vw, 54px))보다
   분명히 한 단계 작게 — interlude 의 "쉼표 한 박자" 톤 유지. */
.ind-headline {
  margin: 0 0 28px;
  max-width: 640px;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* Tags — sans pill. Agents 의 .domain-tags 패턴(라이트 버전) 따라 둥근 칩,
   본문 sans 폰트 사용 (mono 없음). hover 시 mint border + text. */
.ind-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.ind-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.2s, color 0.2s, background 0.2s;
}
.ind-tag.in {
  opacity: 1;
  transform: translateY(0);
}
.ind-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ind-tag:nth-child(1) { transition-delay: 0.05s; }
.ind-tag:nth-child(2) { transition-delay: 0.10s; }
.ind-tag:nth-child(3) { transition-delay: 0.15s; }
.ind-tag:nth-child(4) { transition-delay: 0.20s; }
.ind-tag:nth-child(5) { transition-delay: 0.25s; }
.ind-tag:nth-child(6) { transition-delay: 0.30s; }
.ind-tag:nth-child(7) { transition-delay: 0.35s; }

/* Subtitle — 본문 sans (Inter inherit), hiw-sub 톤과 매칭. italic/serif 없음. */
.ind-sub {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  word-break: keep-all;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s 0.45s, transform 0.5s 0.45s;
}
.ind-sub.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .ind {
    padding: 4rem 0;
  }
  .ind-headline {
    margin-bottom: 24px;
  }
  .ind-tags {
    gap: 6px;
    margin-bottom: 28px;
  }
  .ind-tag {
    padding: 7px 12px;
    font-size: 12px;
  }
  .ind-sub {
    font-size: 15px;
  }
}
