/* Hub hero — typographic only, mirrors the competitor-page hero grammar
   (mono pill eyebrow, oversized gradient title, staggered load reveal) and
   closes on an open stat rail with vertical hairline dividers. */

.cmp-hub-hero {
  position: relative;
  padding: clamp(4.5rem, 9vh, 7rem) 0 clamp(2.75rem, 5vw, 4.25rem);
  text-align: center;
}

/* Load reveal — same curve and stagger as the family heroes. */
.cmp-hub-hero__load-reveal {
  animation: cmp-hub-hero-reveal 0.9s cubic-bezier(0.22, 0.68, 0.35, 1) both;
}

.cmp-hub-hero__eyebrow.cmp-hub-hero__load-reveal {
  animation-delay: 100ms;
}
.cmp-hub-hero__title.cmp-hub-hero__load-reveal {
  animation-delay: 180ms;
}
.cmp-hub-hero__lede.cmp-hub-hero__load-reveal {
  animation-delay: 320ms;
}
.cmp-hub-hero__cta.cmp-hub-hero__load-reveal {
  animation-delay: 480ms;
}
.cmp-hub-hero__rail.cmp-hub-hero__load-reveal {
  animation-delay: 620ms;
}

@keyframes cmp-hub-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cmp-hub-hero__eyebrow {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: 0.42rem 0.9rem;
  border-radius: var(--cmp-radius-pill);
  background: var(--cmp-primary-soft);
  box-shadow: inset 0 0 0 1px var(--cmp-primary-ring);
  color: #c3acff;
  font-family: var(--cmp-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparisons-page .cmp-hub-hero__title {
  max-width: 24ch;
  margin: 0.7rem auto 1.6rem;
  font-size: clamp(3rem, 7.4vw, 6.1rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.cmp-hub-hero__lede {
  max-width: 62ch;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.cmp-hub-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: clamp(2rem, 3.4vw, 2.75rem);
}

.cmp-hub-hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   Proof rail — open stats, hairline-divided, no containment
   -------------------------------------------------------------------------- */

.cmp-hub-hero__rail {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: clamp(2.75rem, 5vw, 4rem) auto 0;
  padding: 0;
}

.cmp-hub-hero__stat {
  display: grid;
  gap: 0.35rem;
  padding: 0.2rem clamp(1.5rem, 3.4vw, 3rem);
  text-align: center;
}

.cmp-hub-hero__stat + .cmp-hub-hero__stat {
  border-left: 1px solid var(--cmp-border);
}

.cmp-hub-hero__stat-value {
  color: transparent;
  background: var(--brand-title-gradient, linear-gradient(96deg, #9a6bff, #c471ff 55%, #ff86c8));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cmp-hub-hero__stat-label {
  color: var(--cmp-text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .cmp-hub-hero__rail {
    flex-direction: column;
    gap: 1.3rem;
  }

  .cmp-hub-hero__stat + .cmp-hub-hero__stat {
    border-left: 0;
    border-top: 1px solid var(--cmp-border);
    padding-top: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cmp-hub-hero__load-reveal {
    animation: none;
  }
}
