/* ── Hero wrapper ─────────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  background: var(--bg-white);
  overflow: hidden;
}

/* Ambient background glow */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(0, 113, 227, 0.07) 0%,
    rgba(94,  92, 230, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Hero layout ──────────────────────────────────── */
.hero-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* ── Headline ─────────────────────────────────────── */
.hero h1 {
  margin-top: 0;
  color: var(--text);
}

/* ── Sub-text ─────────────────────────────────────── */
.hero-text {
  max-width: 540px;
  margin-top: 1.75rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  font-weight: 400;
}

/* ── Action row ───────────────────────────────────── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ── Divider line ─────────────────────────────────── */
.hero-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  margin-top: 3.5rem;
  background: linear-gradient(90deg, transparent, var(--line-medium), transparent);
}

/* ── Outcomes pills ───────────────────────────────── */
.hero-outcomes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-outcomes span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-medium);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.hero-outcomes span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 760px) {
  .hero { padding: 5rem 0 4rem; }
  .hero::before { width: 100vw; height: 300px; top: -10%; }
  .hero-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .button { width: 100%; max-width: 20rem; }
}
