.overview-hero {
  padding-top: var(--space-16);
}

.overview-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.overview-hero__kicker {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary-strong);
  margin-bottom: var(--space-3);
}

.overview-hero__content p {
  max-width: 34rem;
}

.overview-hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.overview-hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.overview-hero__image-caption {
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(7, 9, 21, 0.96), rgba(10, 14, 30, 0.96));
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.overview-section-grid {
  gap: var(--space-8);
}

.overview-section-header {
  max-width: 44rem;
}

.overview-list {
  list-style: none;
}

.overview-list li + li {
  margin-top: var(--space-2);
}

.overview-list--bullets {
  padding-left: 1.1rem;
}

.overview-list--bullets li {
  position: relative;
}

.overview-list--bullets li::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #7f5cff, #32d7a1);
}

.overview-list--compact li + li {
  margin-top: var(--space-1);
}

.overview-panel {
  height: 100%;
}

.overview-panel__title {
  font-size: var(--font-size-lg);
  font-family: var(--font-display);
  margin-bottom: var(--space-3);
}

.overview-world__image-wrapper,
.overview-features__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-subtle);
}

.overview-world__image-caption,
.overview-features__image-caption {
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(7, 9, 21, 0.96), rgba(10, 14, 30, 0.96));
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.overview-steps {
  counter-reset: steps;
  list-style: none;
}

.overview-steps li {
  position: relative;
  padding-left: 2.2rem;
}

.overview-steps li + li {
  margin-top: var(--space-3);
}

.overview-steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  background: radial-gradient(circle at 0 0, rgba(127, 92, 255, 0.9), rgba(50, 215, 161, 0.7));
  box-shadow: var(--shadow-glow-primary);
}

.overview-features {
  align-items: center;
}

.overview-next-steps__inner {
  gap: var(--space-4);
  align-items: center;
}

.overview-next-steps__actions {
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .overview-hero {
    padding-top: var(--space-12);
  }

  .overview-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-hero__content {
    order: 1;
  }

  .overview-hero__visual {
    order: 2;
    margin-top: var(--space-4);
  }

  .overview-next-steps__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .overview-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .overview-next-steps__actions {
    width: 100%;
  }

  .overview-next-steps__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
