.hero-characters {
  position: relative;
  padding-top: var(--space-40);
  padding-bottom: var(--space-32);
}

.hero-characters__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-24);
  align-items: center;
}

.hero-characters__content h1 span {
  color: var(--color-primary-strong);
}

.hero-characters__intro {
  max-width: 40rem;
}

.hero-characters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.hero-characters__media {
  max-width: 420px;
  margin-left: auto;
}

.hero-characters__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: var(--space-20);
}

.section-heading__lede {
  color: var(--color-text-soft);
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--center .section-heading__lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.characters-overview__title {
  font-size: var(--font-size-xl);
}

.hornet-section {
  gap: var(--space-24);
  align-items: center;
}

.hornet-section__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.hornet-section__figure figcaption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: var(--space-6) var(--space-10);
  background: rgba(7, 8, 20, 0.85);
}

.hornet-section__cta {
  margin-top: var(--space-16);
}

.antagonists__media {
  align-self: center;
}

.antagonists__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.antagonists__figure figcaption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: var(--space-6) var(--space-10);
  background: rgba(7, 8, 20, 0.85);
}

.secondary-characters__grid {
  margin-top: var(--space-12);
}

.secondary-characters__link {
  display: flex;
  justify-content: center;
}

.relationships__table-wrapper {
  margin-top: var(--space-12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.relationships__table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 12, 26, 0.96);
}

.relationships__table th,
.relationships__table td {
  padding: var(--space-8) var(--space-10);
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: left;
}

.relationships__table thead {
  background: rgba(23, 26, 56, 0.98);
}

.relationships__table thead th {
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.relationships__table tbody tr:nth-child(even) {
  background: rgba(9, 11, 23, 0.9);
}

.visual-analysis__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.visual-analysis__figure figcaption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: var(--space-6) var(--space-10);
  background: rgba(7, 8, 20, 0.85);
}

.visual-analysis__content {
  align-self: center;
}

.visual-analysis__cta {
  margin-top: var(--space-16);
}

.audio-section__grid {
  margin-top: var(--space-12);
}

.secrets-section__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.secrets-section__figure figcaption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: var(--space-6) var(--space-10);
  background: rgba(7, 8, 20, 0.85);
}

.secrets-section__content {
  align-self: center;
}

.secrets-section__cta {
  margin-top: var(--space-16);
}

.evolution-section__grid {
  margin-top: var(--space-12);
}

.evolution-section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
}

@media (max-width: 992px) {
  .hero-characters__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-characters__media {
    max-width: 360px;
    justify-self: center;
  }

  .hornet-section,
  .visual-analysis__grid,
  .secrets-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .relationships__table-wrapper {
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .hero-characters {
    padding-top: var(--space-32);
  }

  .hero-characters__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .relationships__table th,
  .relationships__table td {
    padding: var(--space-6) var(--space-8);
  }
}
