.hexagonx-hero-banner {
  position: relative;
  padding: 0;
  color: var(--hx-cloud); /* Cloud Dancer instead of pure white */
  background-size: cover;
  background-position: center;
  text-align: left;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hexagonx-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(
    57.77% 76.92% at 91.24% 78.78%,
    rgba(0, 0, 0, 0) 38%,
    rgba(0, 0, 0, 0.01) 45.31%,
    rgba(0, 0, 0, 0.03) 51.26%,
    rgba(0, 0, 0, 0.07) 56.05%,
    rgba(0, 0, 0, 0.12) 59.91%,
    rgba(0, 0, 0, 0.18) 63.03%,
    rgba(0, 0, 0, 0.25) 65.63%,
    rgba(0, 0, 0, 0.33) 67.91%,
    rgba(0, 0, 0, 0.41) 70.09%,
    rgba(0, 0, 0, 0.5) 72.37%,
    rgba(0, 0, 0, 0.59) 74.97%,
    rgba(0, 0, 0, 0.67) 78.09%,
    rgba(0, 0, 0, 0.76) 81.95%,
    rgba(0, 0, 0, 0.85) 86.74%,
    rgba(0, 0, 0, 0.93) 92.69%,
    #000000 100%
  );
}

.hexagonx-hero-banner__inner {
  position: relative;
  width: 100%;
  align-items: center;
}

.hexagonx-hero-banner__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 5px 10px #000000;
}

.hexagonx-hero-banner__subtitle {
  font-size: 1.25rem;
  text-shadow: 0 5px 10px #000000;
}

.hexagonx-hero-banner__description {
  font-size: 1rem;
}

.hexagonx-hero-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .hexagonx-hero-banner {
    text-align: left;
  }

  .hexagonx-hero-banner__title {
    font-size: 2.25rem;
  }

  .hexagonx-hero-banner__subtitle {
    font-size: 1.25rem;
  }
}
.hexagonx-hero-banner .hx-btn--primary:hover,
.hexagonx-hero-banner .hx-btn--secondary:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
