/* ============================================
   Hero — Dark Cinematic
   ============================================ */

.hero {
  position: relative;
  padding: calc(var(--space-3xl) + var(--nav-height)) 0 var(--space-3xl);
  overflow: hidden;
}

/* ── Gradient BG ── */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 120%;
  background: radial-gradient(ellipse at center top, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.1);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Headline ── */
.hero h1 {
  max-width: 800px;
}

.hero h1 .text-accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.3);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Trust Bar ── */
.hero-trust {
  margin-top: var(--space-xl);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero {
    padding: calc(var(--space-2xl) + var(--nav-height)) 0 var(--space-2xl);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
