/* ================================================================
   HERO SECTION — Centred single-column layout
   ================================================================ */

.hero {
  padding-top: 72px;
  padding-bottom: 64px;
}

/* Single centred column — gaps grow on large screens */
.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ── Copy block ──────────────────────────────────────────────── */
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  /* Wider cap so text breathes on big screens */
  max-width: 960px;
}

.hero__title {
  /* Scales from 3rem on mobile up to 7.5rem on large displays */
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 1.02;
}

.hero__lede {
  margin-top: 24px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 60ch;
}

/* CTA row */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero__microcopy {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ── Carousel wrapper — full shell width ─────────────────────── */
.hero__carousel-wrap {
  /* No max-width cap — fills the full shell--wide container */
  width: 100%;
}

.preview-frame {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Ambient glows inside the frame */
.preview-frame::before,
.preview-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.preview-frame::before {
  top: 30px;
  right: 30px;
  width: 200px;
  height: 200px;
  background: rgba(249, 115, 22, 0.14);
}

.preview-frame::after {
  left: -16px;
  bottom: 20px;
  width: 220px;
  height: 220px;
  background: rgba(15, 118, 110, 0.16);
}

.preview-frame > * {
  position: relative;
  z-index: 1;
}

/* ── Audience proof cards ────────────────────────────────────── */
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}

.proof-card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(19, 23, 34, 0.1);
}

.proof-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.proof-card h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.proof-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
