/* ============================================================
   ITWURZEL — Hero Section (Mintlify Light)
   Full-bleed dark teal hero — the only colorful surface.
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b 0%, #0c8c5e 50%, #059669 100%);
  padding-top: 64px; /* navbar height */
}

/* Network canvas */
.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 0 var(--spacing-24);
}

/* Eyebrow — white on dark hero */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-6);
  font-family: var(--font-inter);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caption);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-24);
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* Headline */
.hero__title {
  font-family: var(--font-inter);
  font-weight: var(--font-weight-semibold);
  font-size: clamp(32px, 5vw + 8px, var(--text-display));
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-paper-white);
  margin-bottom: var(--spacing-24);
}

.hero__title .highlight {
  color: var(--color-paper-white);
  /* No special gradient — clean white on teal */
}

/* Supporting text */
.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-body);
  max-width: 560px;
  margin: 0 auto var(--spacing-8);
}

.hero__subtitle-secondary {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-body);
  max-width: 540px;
  margin: 0 auto var(--spacing-32);
}

/* CTA buttons — inverted on dark hero */
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-12);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  display: none; /* Clean, no scroll indicator in Mintlify style */
}

/* Remove old grid pattern */
.grid-pattern {
  display: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding-top: 80px;
  }

  .hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
