/* Uptimia marketing — dark in-hero proof strip (.proof-strip), shared.
   Faithful port of the dark hero proof band from uptime-monitoring-v1-hero-alt3.html.
   Every selector is scoped under `.hero-a3 .proof-strip` so it (a) wins over the shared
   white-band rules `.proof-cell`/`.proof-lbl`/`.proof-num` in base.css/components.css via
   higher specificity, and (b) never leaks into the (now-removed) white `.trusted-band`.
   The `text-align:left` / `margin-top:0` overrides neutralise the two leaking white-band
   defaults. The MARKUP is templates/website/blocks/proof-strip.html.twig, included by every
   marketing page — cells 1-2 are page-specific, cells 3-4 are fixed there. Depends on dark
   tokens in tokens.css. */

.hero-a3 .proof-strip{margin-top:40px;border-top:1px solid var(--dark-line-2);padding-top:28px;display:grid;grid-template-columns:repeat(4,1fr)}
.hero-a3 .proof-strip .proof-cell{padding:2px 26px;border-left:1px solid var(--dark-line-2);text-align:left}
.hero-a3 .proof-strip .proof-cell:first-child{border-left:0;padding-left:0}
.hero-a3 .proof-strip .proof-lbl{margin-top:0;font-size:10.5px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--dark-soft);white-space:nowrap}
.hero-a3 .proof-strip .proof-num{margin-top:8px;font-family:var(--display);font-weight:600;font-size:clamp(23px,2.2vw,30px);letter-spacing:-.02em;line-height:1;color:var(--dark-ink);font-variant-numeric:tabular-nums}
.hero-a3 .proof-strip .proof-num .plus,.hero-a3 .proof-strip .proof-num .unit{color:var(--accent-bright);font-weight:600}
/* Word units ("90 days", "10 min") need a gap; single-character ones ("50M", "30s") must not have one. */
.hero-a3 .proof-strip .proof-num .unit.u-word{margin-left:.22em}

@media (max-width:980px){
  .hero-a3 .proof-strip{margin-top:32px;grid-template-columns:1fr 1fr;row-gap:24px}
  .hero-a3 .proof-strip .proof-cell:nth-child(odd){border-left:0;padding-left:0}
}
@media (max-width:560px){
  .hero-a3 .proof-strip .proof-cell{padding:2px 16px}
  .hero-a3 .proof-strip .proof-lbl{font-size:9.5px}
  .hero-a3 .proof-strip .proof-num{font-size:21px}
}
