.sol-section--hero {
  padding-top: 4.25rem;
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: visible;
}

.sol-section--hero::before,
.sol-section--hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: auto;
}

.sol-section--hero::before {
  top: -240px;
  left: -160px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0));
}

.sol-section--hero::after {
  top: -260px;
  right: -200px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), rgba(17, 24, 39, 0));
}

.sol-hero-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sol-hero-copy {
  width: 100%;
  max-width: 640px;
}

.sol-hero-media {
  width: 100%;
  max-width: 600px;
  justify-self: center;
}

.sol-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.68rem;
  color: var(--sol-text-dim);
  margin-bottom: 0.75rem;
}

.sol-hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* .sol-highlight is single-sourced in shared/PageStyles.css (violet→blue→teal);
   no page-level override needed here. */

.sol-hero-lede {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--sol-text-muted);
  margin: 0 0 1.75rem;
  max-width: 58ch;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.sol-hero-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.sol-graph-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: clamp(14px, 2vw, 20px);
  overflow: hidden;
}

.sol-graph-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(56, 189, 248, 0.12), transparent 60%);
  opacity: 0.4;
  pointer-events: auto;
}

.sol-graph-card > * {
  position: relative;
  z-index: 1;
}

.sol-graph-card--tight {
  padding: clamp(10px, 1.6vw, 16px);
}

.sol-graph-card--hero {
  padding: 0;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  border-color: rgba(135, 169, 255, 0.22);
  background:
    radial-gradient(125% 140% at 0% 0%, rgba(76, 90, 255, 0.2), transparent 55%),
    radial-gradient(110% 140% at 100% 0%, rgba(34, 211, 238, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(14, 22, 48, 0.94), rgba(10, 16, 38, 0.9));
  /* PERF NOTE: Reserve space to prevent CLS while OnboardingCharts injects the cockpit visualization. */
  min-height: clamp(430px, 48vw, 560px);
  aspect-ratio: auto;
  display: flex;
}

.sol-graph-card--hero > * {
  flex: 1 1 auto;
}

@media (max-width: 768px) {
  .sol-hero-lede {
    max-width: none;
  }

  .sol-graph-card--hero {
    min-height: clamp(390px, 92vw, 500px);
  }
}
