/* Hero v6 — Split Arena: текст + две кнопки слева, promo-карточка справа */

.hero-v6 {
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background-color: var(--background-color, #0c0f18);
  background-image: var(--background-image, none), linear-gradient(135deg, #0c0f18 0%, #1e1b4b 100%);
  background-size: cover, auto;
  background-position: center, center;
}

.hero-v6 .hero-split {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.hero-v6 .hero-split-copy {
  text-align: left;
}

.hero-v6 .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 1rem;
  background: linear-gradient(105deg, var(--accent-color, #22d3ee), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v6 .hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 0 0 1.75rem;
  opacity: 0.88;
  max-width: 36rem;
}

.hero-v6 .hero-cta {
  justify-content: flex-start;
}

.hero-v6 .split-badge-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid color-mix(in srgb, var(--accent-color, #22d3ee) 35%, transparent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.hero-v6 .split-badge-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-color, #22d3ee);
  font-weight: 700;
}

.hero-v6 .split-badge-main {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .hero-v6 .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-v6 .hero-split-copy {
    text-align: center;
  }
  .hero-v6 .hero-cta {
    justify-content: center;
  }
}
