.hero--overview {
  position: relative;
}
.hero--overview .hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero--overview .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--overview .hero__content {
  max-width: 640px;
}
.hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
  margin-bottom: var(--space-8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero__meta {
  margin-top: var(--space-4);
}
.section--alt {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), rgba(5, 7, 11, 0.96));
}
.overview-section {
  position: relative;
}
.overview-section::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 209, 197, 0.6), transparent);
  opacity: 0.4;
}
.overview-section:last-of-type::after {
  display: none;
}
.overview-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--space-6);
}
.overview-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}
.overview-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-accent-blue) 60%, transparent 100%);
  box-shadow: 0 0 12px rgba(79, 209, 197, 0.8);
}
.overview-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.overview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.overview-ctas--center {
  justify-content: center;
}
@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .overview-section::after {
    opacity: 0.2;
  }
}
