/* Hero v11 — Editorial Rail */

.hero-v11 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color, #0f0f0f);
  background-image: var(--background-image, none), linear-gradient(120deg, #0f0f0f 0%, #1a1025 100%);
  background-size: cover, auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.hero-v11-inner {
  display: flex;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 1100px;
  width: 100%;
}

.hero-v11-rail {
  width: 6px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent-color, #e879f9), #22d3ee, var(--accent-color, #e879f9));
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent-color, #e879f9) 50%, transparent);
}

.hero-v11-copy {
  flex: 1;
  text-align: left;
}

.hero-v11 .hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color, #e879f9);
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero-v11 .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 1rem;
  background: linear-gradient(100deg, #fafafa 0%, var(--accent-color, #e879f9) 45%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

@media (max-width: 560px) {
  .hero-v11-inner { flex-direction: column; }
  .hero-v11-rail { width: 100%; height: 5px; }
  .hero-v11-copy { text-align: center; }
  .hero-v11 .hero-cta { justify-content: center; }
}
