/* ============================================
   Hero Section + Wave Background
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  background: transparent;
}

/* Fixed map + canvas background (visible behind all page content) */
.hero__map {
  position: fixed;
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: 0;
  filter: brightness(0.9) saturate(0.5);
  pointer-events: none;
}

.hero__map .leaflet-control-container { display: none; }
.hero__map .leaflet-container { background: var(--bg); }

.hero__canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* No gradient overlays on hero — map visible through transparent bg */

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--s8) var(--s6);
}

.hero__pill {
  margin-bottom: var(--s6);
}

.hero__title {
  margin-bottom: var(--s5);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s4);
}

.hero__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Stats bar below hero --- */
.stats-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-raised);
}

.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s10);
  flex-wrap: wrap;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stats-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
