/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 600px;
  background: linear-gradient(90deg, #1e1e1e 0%, #0a0a0a 100%);
}

/* The introchart fills the hero as a background */
#introchart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  max-width: 1136px; margin: 0 auto;
  padding: 50px 0 40px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 600px;
}

.hero-content {
  max-width: 500px;
}

.hero-h1 {
  font-size: clamp(2.625rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em; margin-bottom: 24px;
  color: #fff;
}

.hero-sub {
  font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.6);
  max-width: 460px; margin-bottom: 40px; font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 36px; }
.hero-stat-num {
  font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.hero-stat-num span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 36px; }
