/* ==========================================================
   hero.css — Hero section
   JCG Info Tech
   ========================================================== */

#hero {
  position: relative;
  z-index: var(--z-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--page-padding);
  padding-top: 90px;
}

/* ── Eyebrow tag ── */
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-cyan);
}

/* ── Main heading ── */
.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--color-cyan);
}

.hero-title .outline {
  -webkit-text-stroke: 1px var(--color-white);
  color: transparent;
}

/* ── Description ── */
.hero-desc {
  color: var(--color-muted);
  font-size: var(--text-lg);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

/* ── CTA row ── */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Stats row ── */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.stat-num span {
  color: var(--color-cyan);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ── Scroll hint ── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--page-padding);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-muted));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;   }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }
}
