/* ── Hero: full-width centered, rich navy, no photo, no location pill ── */
#hero {
  background: var(--color-hero-bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Dot grid removed — replaced by pipeline-bg.js canvas animation */

/* Warm amber glow — subtle bottom-left warmth */
#hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200,100,26,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Main content block */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 96px;
}

.hero-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* ── Headline ────────────────────────────────────── */
.hero-headline {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  color: var(--color-hero-text);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-accent);
}

/* ── Sub ─────────────────────────────────────────── */
.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.80);
  line-height: 1.78;
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 400;
  letter-spacing: 0.008em;
}

/* ── Stats grid ──────────────────────────────────── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 48px;
}

.hero-stat {
  background: rgba(255,255,255,0.04);
  padding: 22px 18px;
  transition: background var(--transition);
}

.hero-stat:hover { background: rgba(255,255,255,0.07); }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 7px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ── CTAs ────────────────────────────────────────── */
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Bottom separator */
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10) 20%, rgba(255,255,255,0.10) 80%, transparent);
  z-index: 1;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 860px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-headline { font-size: clamp(36px, 9vw, 56px); }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-stats { max-width: 100%; }
}
