/* ── Strategy Session Hero ── */

.hero.hero-split {
  height: auto;
  max-height: none;
  overflow: visible;
  padding: var(--spacing-xl) var(--spacing-sm);
}

.hero.hero-split .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "video"
    "sub"
    "btn";
  gap: var(--spacing-md);
  width: 100%;
  justify-items: center;
  text-align: center;
}

.hero.hero-split .hero-title    { grid-area: title; margin-bottom: 0; width: 100%; }
.hero.hero-split .hero-video    { grid-area: video; }
.hero.hero-split .hero-subtitle { grid-area: sub;   margin-bottom: 0; }
.hero.hero-split .hero-buttons  { grid-area: btn; flex-direction: column; align-items: center; }

.hero-scarcity {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin: var(--spacing-xs) 0 0;
  text-shadow: none;
}

.hero-video {
  width: 100%;
  max-width: 400px;
}

.hero-video-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.2),
    0 0 40px rgba(0, 212, 255, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .hero.hero-split {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

/* Desktop: title full width, then video left / sub+btn right */
@media (min-width: 1024px) {
  .hero.hero-split {
    padding: var(--spacing-xxl) var(--spacing-md);
  }

  .hero.hero-split .hero-content {
    grid-template-columns: 400px 1fr;
    grid-template-areas:
      "title title"
      "video sub"
      "video btn";
    gap: var(--spacing-lg) var(--spacing-xxl);
    align-items: start;
    justify-items: center;
  }

  .hero.hero-split .hero-video {
    justify-self: center;
  }

  .hero.hero-split .hero-subtitle {
    align-self: end;
    text-align: center;
    justify-self: center;
    font-size: var(--text-2xl);
  }

  .hero.hero-split .hero-buttons {
    align-self: start;
    justify-self: center;
  }
}
