/* ============================================
   Home Hero Banner
   ============================================ */

.home-hero {
  background: linear-gradient(135deg, var(--gx-dark) 0%, var(--gx-mid) 100%);
  padding: var(--sp-12) var(--sp-6);
  text-align: center;
  color: var(--gx-white);
  overflow: hidden;
}

.home-hero__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* Title row: icon + heading */
.home-hero__title-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.home-hero__title-wrap .brxe-icon {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.75);
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gx-white);
  margin: 0;
  letter-spacing: -0.02em;
  min-width: 0;
  flex: 1;
}

.home-hero__subtitle {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.home-hero__cta {
  margin-top: var(--sp-6);
  font-size: var(--fs-base);
  letter-spacing: 0.01em;
}

.home-hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.home-hero__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--gx-white);
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: var(--sp-1) var(--sp-2);
  white-space: nowrap;
}

.home-hero__stat .brxe-icon {
  font-size: 11px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .home-hero {
    padding: var(--sp-16) var(--sp-8);
  }

  .home-hero__title {
    font-size: var(--fs-2xl);
  }

  .home-hero__title-wrap .brxe-icon {
    font-size: var(--fs-2xl);
    color: rgba(255, 255, 255, 0.75);
  }

  .home-hero__cta {
    font-size: var(--fs-base);
  }
}
