/* ============================================================
   PROOF / CREDIBILITY BAND - Subscriptions page
   All rules scoped to .sub-proof to avoid conflicts.
   Background on the <section> element gives the full-bleed
   grey band appearance between the white sections.
   ============================================================ */

/* ------------------------------------------------------------
   Section wrapper — full-bleed grey band
   ------------------------------------------------------------ */
.sub-proof {
  background: var(--bg-grey);
  padding-block: 72px;
}

/* ------------------------------------------------------------
   Centered header
   ------------------------------------------------------------ */
.sub-proof__header {
  text-align: center;
  margin-bottom: 40px;
}

.sub-proof__eyebrow {
  display: block;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
  -webkit-font-smoothing: antialiased;
}

.sub-proof__headline {
  font-family: 'Inter Display', Inter, -apple-system, sans-serif;
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--blue);
  max-width: 22ch;
  margin: 0 auto;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   Stats row — 3 columns, centered at max-width ~600px.
   Vertical dividers via border-right on all but last stat.
   ------------------------------------------------------------ */
.sub-proof__stats {
  display: flex;
  align-items: stretch;
  max-width: 600px;
  margin: 0 auto;
}

.sub-proof__stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  border-right: 0.5px solid var(--border);
}

.sub-proof__stat:last-child {
  border-right: none;
}

.sub-proof__stat-num {
  font-family: 'Inter Display', Inter, -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--blue);
  margin: 0 0 8px;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
}

.sub-proof__stat-label {
  font-family: Inter, -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   Pedigree line — sits below stats, separated by a full-
   container-width horizontal rule (border-top on the paragraph
   spans the full .container width, not just the 600px stats).
   ------------------------------------------------------------ */
.sub-proof__pedigree {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 0.5px solid var(--border);
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Firm names — emphasised in blue, weight 500, NOT links */
.sub-proof__firm {
  color: var(--blue);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .sub-proof {
    padding-block: 56px;
  }

  .sub-proof__header {
    margin-bottom: 32px;
  }

  /* Stack stats vertically — drop vertical dividers,
     use thin horizontal rules between items instead */
  .sub-proof__stats {
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 260px;
  }

  .sub-proof__stat {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    padding: 18px 0;
    width: 100%;
  }

  .sub-proof__stat:last-child {
    border-bottom: none;
  }

  .sub-proof__headline {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sub-proof {
    padding-block: 48px;
  }
}
