/* Hero v8 — Spotlight: виньетка + ореол, два CTA */

.hero-v8 {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color, #030712);
  background-image: var(--background-image, none), radial-gradient(ellipse 80% 70% at 50% 45%, #0f172a 0%, #030712 70%);
  background-size: cover, auto;
  overflow: hidden;
}

.hero-v8::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.65) 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-v8 .hero-spotlight-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(90vw, 720px);
  height: min(90vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color, #34d399) 22%, transparent) 0%, transparent 62%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: hero-v8-pulse 8s ease-in-out infinite alternate;
}

@keyframes hero-v8-pulse {
  from { opacity: 0.65; transform: translate(-50%, -50%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-v8 .hero-v8-content {
  position: relative;
  z-index: 2;
}

.hero-v8 .hero-title {
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-color, #f8fafc);
  -webkit-text-fill-color: currentColor;
  background: none;
  text-shadow: 0 0 60px color-mix(in srgb, var(--accent-color, #34d399) 40%, transparent);
}

.hero-v8 .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.88;
}

.hero-v8 .hero-btn-primary {
  background: var(--accent-color, #34d399) !important;
  color: #042f1f !important;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color, #34d399) 50%, transparent);
}

.hero-v8 .hero-btn-secondary {
  border-color: color-mix(in srgb, var(--accent-color, #34d399) 80%, #fff);
  color: var(--text-color, #f8fafc);
}
