@import url("tokens.css");

/* ===========================================================================
   RocketCore — site-v8-alt
   Layout system inherited from https://tropica.framer.website/ (measured, see
   design/references/tropica-harvest.md). Palette, type, copy, subject and all
   imagery replaced. No shadows anywhere, matching the donor's own census
   (9 shadowed elements on the whole donor page; zero on its cards).
   =========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--rc-paper);
  color: var(--rc-body);
  font-family: var(--rc-font-text);
  font-size: var(--rc-text);
  line-height: var(--rc-text-lh);
  font-weight: var(--rc-w-text);
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: `overflow-x: hidden` on body turns body into a scroll
     container and silently kills position:sticky (website-design pitfalls §1). */
  overflow-x: clip;
}
@supports not (overflow-x: clip) { body { overflow-x: hidden; } }

img, video { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--rc-font-display); font-weight: var(--rc-w-display); color: var(--rc-ink); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible { outline: 2px solid var(--rc-accent); outline-offset: 3px; border-radius: 2px; }
.on-ink :focus-visible, .hero :focus-visible { outline-color: #FFF; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--rc-ink); color: #FFF; padding: 12px 20px; border-radius: 0 0 var(--rc-r-media) 0;
}
.skip:focus { left: 0; }

/* ---------- grid ---------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--rc-max); margin: 0 auto; padding: 0 var(--rc-gutter); }
.band { position: relative; }
.band--tight { padding-block: var(--rc-pad-tight); }
.band--open  { padding-block: var(--rc-pad-open); }
.band--grey  { background: var(--rc-band); }
.band--ink   { background: var(--rc-ink); color: var(--rc-on-ink-body); }
.band--ink h1, .band--ink h2, .band--ink h3, .band--ink h4 { color: var(--rc-on-ink); }

/* ---------- type roles ---------------------------------------------------- */
.h1 { font-size: var(--rc-h1); line-height: var(--rc-h1-lh); letter-spacing: var(--rc-h1-ls); }
.h2 { font-size: var(--rc-h2); line-height: var(--rc-h2-lh); letter-spacing: var(--rc-h2-ls); }
.rowtitle { font-size: var(--rc-rowtitle); line-height: var(--rc-rowtitle-lh); letter-spacing: -.015em; }
.cardtitle { font-size: var(--rc-cardtitle); line-height: var(--rc-cardtitle-lh); }
.figure {
  font-family: var(--rc-font-display); font-weight: var(--rc-w-display);
  font-size: var(--rc-figure); line-height: var(--rc-figure-lh);
  letter-spacing: -.02em; color: var(--rc-ink);
  font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1;
}
.lead  { font-size: var(--rc-lead);  line-height: var(--rc-lead-lh); }
.small { font-size: var(--rc-small); line-height: var(--rc-small-lh); color: var(--rc-muted); }
.meta  { font-size: var(--rc-meta);  line-height: var(--rc-meta-lh); font-weight: var(--rc-w-medium); }
.label {
  font-size: var(--rc-label); line-height: var(--rc-label-lh);
  letter-spacing: var(--rc-label-ls); text-transform: uppercase;
  font-weight: var(--rc-w-medium);
}
.measure { max-width: var(--rc-measure); }

/* eyebrow chip — donor geometry: pill, tinted ground, 12px +0.10em uppercase */
.eyebrow {
  display: inline-block;
  font-size: var(--rc-eyebrow); line-height: var(--rc-eyebrow-lh);
  letter-spacing: var(--rc-eyebrow-ls); text-transform: uppercase;
  font-weight: var(--rc-w-medium); color: var(--rc-muted);
  background: var(--rc-band); border-radius: var(--rc-r-pill);
  padding: 9px 16px; margin-bottom: var(--rc-s4);
}
.band--grey .eyebrow { background: var(--rc-paper); }
.band--ink .eyebrow { background: rgba(255,255,255,.08); color: var(--rc-on-ink-muted); }

/* ---------- buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--rc-btn-h); padding: 0 30px;
  border-radius: var(--rc-r-pill); border: 0;
  font-family: var(--rc-font-text); font-size: 17px; font-weight: var(--rc-w-medium);
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease;
}
/* ACCENT PLACEMENT 1 of 3 — the primary CTA */
.btn--primary { background: var(--rc-accent); color: var(--rc-on-accent); }
.btn--primary:hover { background: var(--rc-accent-hover); }
/* not accent: the hero button on the dark band is white-on-ink, the donor's own
   treatment, and the header button is a ghost — neither is a 4th accent use. */
.btn--light { background: #FFF; color: var(--rc-ink); }
.btn--light:hover { background: #EDEBE7; }
.btn--ghost {
  background: transparent; color: inherit;
  box-shadow: inset 0 0 0 1px currentColor; min-height: 42px; padding: 0 20px; font-size: 15px;
}
.btn--ink { background: var(--rc-ink); color: #FFF; min-height: 46px; font-size: 15px; }
.btn--ink:hover { background: #24262B; }

/* ---------- header -------------------------------------------------------- */
/* donor: 84px tall, padding 24px 65px, transparent over the hero */
.site-header {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  padding: 24px 0; color: #FFF;
}
.header-inner { display: flex; align-items: center; gap: var(--rc-s4); }
.logo { display: block; line-height: 0; }
.logo img { width: var(--rc-mark-w); height: auto; filter: brightness(0) invert(1); }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: var(--rc-s5); }
.site-nav a { font-size: 15px; text-decoration: none; opacity: .82; transition: opacity .18s ease; }
.site-nav a:hover { opacity: 1; }
@media (max-width: 900px) { .site-nav { display: none; } .site-header { padding: 16px 0; } }

/* ---------- language switcher (v10.3, 2026-08-27) -------------------------
   Text trigger after the ghost CTA — "EN ▾" on the EN pages, "ES ▾" on es/ —
   opening a small menu with both languages as words. No flags. */
.langsw { position: relative; flex: 0 0 auto; }
.langsw__btn {
  display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 10px;
  border: 0; border-radius: 999px; background: transparent; color: inherit; cursor: pointer;
  font: inherit; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; opacity: .82;
  transition: opacity .18s ease, background .18s ease;
}
.langsw__btn:hover, .langsw__btn:focus-visible, .langsw.is-open .langsw__btn { opacity: 1; background: rgba(255,255,255,.12); }
.langsw__chev { display: block; transition: transform .18s ease; }
.langsw.is-open .langsw__chev { transform: rotate(180deg); }
.langsw__menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 150px; margin: 0; padding: 6px;
  list-style: none; background: var(--rc-paper); color: var(--rc-ink);
  border: 1px solid var(--rc-hairline); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(19,20,23,.18); z-index: 30;
}
.langsw__menu[hidden] { display: none; }
.langsw__opt {
  display: flex; align-items: center; padding: 8px 10px; border-radius: 8px;
  font-size: 15px; text-decoration: none; color: var(--rc-ink); white-space: nowrap;
}
.langsw__opt:hover, .langsw__opt:focus-visible { background: var(--rc-band); }
.langsw__opt[aria-current] { color: var(--rc-muted); }
.langsw__opt[aria-current]::after { content: "\2713"; margin-left: auto; padding-left: 14px; font-size: 13px; }
/* the footer language line is the same switch as plain text */
.footer-lang [aria-current] { opacity: .55; }

@media (max-width: 900px) {
  /* nav hidden: the CTA + switcher sit at the right edge */
  .site-header .btn--ghost { margin-left: auto; min-height: 38px; padding: 0 14px; font-size: 14px; white-space: nowrap; }
  .header-inner { gap: var(--rc-s2); }
  .header-inner .logo img { width: 132px; }
}
@media (max-width: 420px) {
  .header-inner { gap: 10px; }
  .header-inner .logo img { width: 112px; }
  .site-header .btn--ghost { padding: 0 12px; font-size: 13px; }
  .langsw__btn { padding: 0 8px; }
}

/* ---------- §1 hero — donor band 1: 100vh, full-bleed media, type on the
   empty dark left third ---------------------------------------------------- */
.hero { min-height: 100svh; display: flex; align-items: flex-end; color: #FFF; background: var(--rc-ink); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* v4 — text-anchored scrim (BUILD-LOG §v4). ONE mechanism for all three hero
   variants, desktop and mobile alike: a soft radial ink vignette anchored on
   the hero text block (darkest at --rc-scrim-pos, six stops falling off to
   fully clear — no banding, no hard edge) plus a light top band that keeps
   the header nav readable without darkening the rest of the frame. Every
   number is a custom property (tokens.css :root + its 900px block set the
   shared defaults); a variant page overrides only the properties, never this
   rule, so "per-variant" means "different --rc-scrim-* values," nothing else. */
/* v6 — scrim tuning (BUILD-LOG §v6). Every stop's alpha is now the authored
   value TIMES a master gain, --rc-scrim-gain, default 1 via the calc()
   fallback — no gain var set anywhere means no visual change. The tuning
   panel (index-{a,b,c}.html, ?tune only) is the only thing that ever sets
   --rc-scrim-gain, on documentElement. --rc-scrim-size (the ellipse extent)
   is exposed to the same panel too, but directly — it is a two-token
   percentage pair, not a single scalar, so the panel reads the authored
   value and writes a scaled replacement rather than folding a gain into it
   with calc(). */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(var(--rc-scrim-size) at var(--rc-scrim-pos),
      rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-0) * var(--rc-scrim-gain, 1)))   0%,
      rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-1) * var(--rc-scrim-gain, 1)))  20%,
      rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-2) * var(--rc-scrim-gain, 1)))  40%,
      rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-3) * var(--rc-scrim-gain, 1)))  60%,
      rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-4) * var(--rc-scrim-gain, 1)))  80%,
      rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-5) * var(--rc-scrim-gain, 1))) 100%),
    linear-gradient(180deg, rgba(var(--rc-scrim-rgb), calc(var(--rc-scrim-top) * var(--rc-scrim-gain, 1))) 0%, rgba(var(--rc-scrim-rgb),0) 22%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: var(--rc-pad-open); padding-top: 180px; }
.hero .h1 { color: #FFF; max-width: 15ch; }
.hero-sub { color: rgba(255,255,255,.86); max-width: 46ch; margin-top: var(--rc-s4); }
.hero-cta { margin-top: var(--rc-s5); display: flex; flex-direction: column; align-items: flex-start; gap: var(--rc-s3); }
.hero-micro { color: rgba(255,255,255,.74); max-width: 50ch; font-size: var(--rc-small); line-height: var(--rc-small-lh); }
/* the donor's bottom-left social-proof row, rebuilt WITHOUT avatars or stars:
   four verifiable facts instead of invented proof */
.trust {
  display: flex; flex-wrap: wrap; gap: var(--rc-s2) var(--rc-s5);
  margin-top: var(--rc-s7); padding-top: var(--rc-s3);
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: var(--rc-meta); font-weight: var(--rc-w-medium);
  color: rgba(255,255,255,.80); letter-spacing: .01em;
}
@media (max-width: 900px) {
  .hero-inner { padding-top: 140px; }
  .trust { gap: var(--rc-s1) var(--rc-s3); margin-top: var(--rc-s5); }
  .hero-cta .btn { width: 100%; }
}

/* ---------- §2 the decision — donor band 2: centred, word-by-word blur ----- */
.centred { text-align: center; display: flex; flex-direction: column; align-items: center; }
.prose { max-width: var(--rc-prose); }
.manifesto {
  font-family: var(--rc-font-display); font-weight: var(--rc-w-display);
  font-size: var(--rc-manifesto); line-height: var(--rc-manifesto-lh);
  letter-spacing: var(--rc-manifesto-ls); color: var(--rc-ink);
  margin-top: var(--rc-s5);
}
.manifesto .w { display: inline-block; will-change: filter, opacity; }
.closing { margin-top: var(--rc-s5); font-size: var(--rc-lead); line-height: var(--rc-lead-lh); color: var(--rc-muted); }
.band--ink .closing { color: var(--rc-on-ink-muted); }

/* ---------- section heads ------------------------------------------------- */
.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--rc-s5); margin-bottom: var(--rc-s7); }
.sechead__intro { margin-top: var(--rc-s3); max-width: 56ch; }
@media (max-width: 900px) { .sechead { flex-direction: column; align-items: flex-start; margin-bottom: var(--rc-s5); } }

/* ---------- §6 the alternative — donor stat cards, at 2-up ---------------- */
.figs { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--rc-s3); }
.fig { background: var(--rc-band); border-radius: var(--rc-r-card); padding: var(--rc-s5); }
.band--grey .fig { background: var(--rc-paper); }
.fig .label { color: var(--rc-muted); }
.fig .figure { margin: var(--rc-s4) 0 var(--rc-s3); font-size: var(--rc-figure); line-height: var(--rc-figure-lh); color: var(--rc-ink); }
.fig p { font-size: var(--rc-small); line-height: var(--rc-small-lh); color: var(--rc-muted); }
@media (max-width: 900px) { .figs { grid-template-columns: 1fr; } }

/* ---------- §7 pricing — the same card shell, media slot replaced by the
   price panel. Growth carries the 1.5px ink border + the navy chip. --------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--rc-s3); align-items: start; }
.tier { background: var(--rc-paper); border-radius: var(--rc-r-card); padding: var(--rc-card-pad); position: relative; }
.tier--featured { box-shadow: inset 0 0 0 1.5px var(--rc-ink); }
/* ACCENT PLACEMENT 2 of 3 — the "Most popular" chip */
.tier__chip {
  position: absolute; top: -14px; left: var(--rc-s4);
  background: var(--rc-accent); color: var(--rc-on-accent);
  font-size: var(--rc-eyebrow); letter-spacing: var(--rc-eyebrow-ls); text-transform: uppercase;
  font-weight: var(--rc-w-medium); border-radius: var(--rc-r-pill); padding: 6px 14px;
}
.tier__panel {
  background: var(--rc-band); border-radius: var(--rc-r-media);
  padding: var(--rc-s6) var(--rc-s4) var(--rc-s5);
  display: flex; flex-direction: column; gap: var(--rc-s1);
}
.tier__price { display: flex; align-items: baseline; gap: 6px; }
.tier__per { font-size: var(--rc-small); color: var(--rc-muted); }
.tier__body { padding: var(--rc-s4) var(--rc-s3) var(--rc-s3); }
.tier__body p { font-size: var(--rc-small); line-height: var(--rc-small-lh); color: var(--rc-body); }
.pricing-notes { margin-top: var(--rc-s5); display: grid; gap: var(--rc-s1); }
@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; gap: var(--rc-s4); }
  .tier--featured { order: -1; }   /* brand-foundation: mobile stacks Growth first */
}

/* ---------- §8 terms — three plain cards + the mid-page CTA --------------- */
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--rc-s3); }
.note { background: var(--rc-band); border-radius: var(--rc-r-card); padding: var(--rc-s5); font-size: var(--rc-lead); line-height: var(--rc-lead-lh); color: var(--rc-ink); }
.note b { font-weight: var(--rc-w-medium); }
@media (max-width: 900px) { .notes { grid-template-columns: 1fr; } }


/* ---------- §11 questions — donor FAQ: two columns, ~45/55 --------------- */
.faq { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: var(--rc-s7); align-items: start; }
.faq__item { border-bottom: 1px solid var(--rc-hairline); }
.faq__item:first-child { border-top: 1px solid var(--rc-hairline); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: var(--rc-s3);
  padding: var(--rc-s4) 0; font-family: var(--rc-font-display); font-weight: var(--rc-w-display);
  font-size: var(--rc-cardtitle); line-height: var(--rc-cardtitle-lh); color: var(--rc-ink);
}
.faq__mark { flex: 0 0 auto; width: 20px; height: 20px; position: relative; }
.faq__mark::before, .faq__mark::after { content: ""; position: absolute; background: var(--rc-ink); transition: transform .25s var(--rc-reveal-ease); }
.faq__mark::before { inset: 9px 0 auto 0; height: 2px; }
.faq__mark::after  { inset: 0 9px auto auto; width: 2px; height: 20px; }
.faq__q[aria-expanded="true"] .faq__mark::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--rc-reveal-ease); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: var(--rc-s4); max-width: 60ch; }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; gap: var(--rc-s5); } }

/* ---------- §12 + §13 the ask and the form ------------------------------- */
.ask { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: var(--rc-s7); align-items: start; }
.form { background: var(--rc-band); border-radius: var(--rc-r-card); padding: var(--rc-s6); display: grid; gap: var(--rc-s4); }
.field { display: grid; gap: var(--rc-s1); }
.field label { font-size: var(--rc-meta); font-weight: var(--rc-w-medium); color: var(--rc-ink); }
.field input {
  font-family: var(--rc-font-text); font-size: var(--rc-small); color: var(--rc-ink);
  background: var(--rc-paper); border: 1px solid var(--rc-hairline);
  border-radius: var(--rc-r-media); padding: 14px 16px; min-height: 52px;
}
.field input::placeholder { color: #A2A5A9; }
.field input:invalid:not(:placeholder-shown) { border-color: #B4534E; }
.form .btn { width: 100%; }
.form__micro, .form__note { font-size: var(--rc-meta); line-height: 1.5; color: var(--rc-muted); }
@media (max-width: 900px) { .ask { grid-template-columns: 1fr; gap: var(--rc-s5); } .form { padding: var(--rc-s4); } }

/* ---------- footer — donor band 10: dark, over a full-bleed image --------- */
.site-footer { position: relative; background: var(--rc-ink); color: var(--rc-on-ink-body); overflow: hidden; padding-block: var(--rc-pad-open); }
.footer-inner { position: relative; z-index: 2; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--rc-s5); flex-wrap: wrap; }
.footer-tag { color: #FFF; max-width: 18ch; }
.footer-nav { display: flex; gap: var(--rc-s5); flex-wrap: wrap; }
.footer-nav a { font-size: 15px; text-decoration: none; opacity: .82; }
.footer-nav a:hover { opacity: 1; }
.footer-meta { margin-top: var(--rc-s8); padding-top: var(--rc-s4); border-top: 1px solid var(--rc-on-ink-hair); display: flex; justify-content: space-between; gap: var(--rc-s4); flex-wrap: wrap; font-size: var(--rc-meta); color: var(--rc-on-ink-muted); }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
@media (max-width: 900px) { .footer-meta { margin-top: var(--rc-s6); } }

/* ---------- bracketed placeholders — visible on purpose ------------------ */
.ph {
  background: var(--rc-fill); color: var(--rc-ink);
  border: 1px dashed #B9B5AE; border-radius: 4px;
  padding: 1px 7px; font-size: .92em; font-weight: var(--rc-w-medium);
  white-space: nowrap;
}
.band--ink .ph, .hero .ph, .site-footer .ph { background: rgba(255,255,255,.10); color: #FFF; border-color: rgba(255,255,255,.34); }

/* ---------- mobile sticky bar -------------------------------------------- */
/* ACCENT PLACEMENT 3 of 3 */
.sticky { display: none; }
@media (max-width: 900px) {
  .sticky {
    display: flex; gap: var(--rc-s2); align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px var(--rc-gutter) calc(10px + env(safe-area-inset-bottom));
    background: var(--rc-paper); border-top: 1px solid var(--rc-hairline);
    transform: translateY(110%); transition: transform .3s var(--rc-reveal-ease);
  }
  .sticky.is-on { transform: translateY(0); }
  .sticky .btn--primary { flex: 1; }
  .sticky__call { font-size: var(--rc-meta); color: var(--rc-muted); text-decoration: none; white-space: nowrap; }
  body { padding-bottom: 0; }
  main { padding-bottom: 76px; }
}

/* ===========================================================================
   MOTION
   The donor's entire reveal vocabulary is blur(12px)+opacity -> blur(0)+1.
   Reveals are gated on `html.js` so that with JavaScript off NOTHING is ever
   hidden, and a 2.5s failsafe un-hides everything if the observer never fires.
   =========================================================================== */
.js .reveal { opacity: 0; filter: blur(var(--rc-blur)); will-change: filter, opacity; }
.js .reveal.is-in {
  opacity: 1; filter: blur(0);
  transition: opacity var(--rc-reveal-dur) var(--rc-reveal-ease),
              filter  var(--rc-reveal-dur) var(--rc-reveal-ease);
  transition-delay: var(--d, 0ms);
}
.js .manifesto .w { opacity: .18; filter: blur(var(--rc-blur)); }
.js .hero-word { opacity: 0; filter: blur(var(--rc-blur)); display: inline-block; }
.js .hero-word.is-in {
  opacity: 1; filter: blur(0);
  transition: opacity 900ms var(--rc-reveal-ease), filter 900ms var(--rc-reveal-ease);
  transition-delay: var(--d, 0ms);
}

/* ---------- reduced motion: branch BEFORE construction ------------------- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in,
  .js .hero-word, .js .hero-word.is-in,
  .js .manifesto .w {
    opacity: 1 !important; filter: none !important;
    transition: none !important; will-change: auto;
  }
  .sticky { transition: none; }
  .faq__a { transition: none; }
  .faq__mark::before, .faq__mark::after { transition: none; }
  * { scroll-behavior: auto !important; }
}


/* --- fixes found by looking at the screenshots ---------------------------- */

/* The hero plate is art-directed with an empty dark LEFT THIRD for the H1.
   A 390px portrait viewport crops that third away, so mobile needs its own
   crop AND its own scrim tuning. v4: both now live in tokens.css's 900px
   :root block (--rc-scrim-* mobile defaults) plus each page's own <style>
   overrides, feeding the ONE .hero-media::after rule above — nothing
   mobile-specific is hardcoded here anymore. Per-variant object-position is
   still set inline in each index-*.html. */

/* the bracketed phone placeholder was wide enough to wrap the sticky button
   onto two lines at 390px */
@media (max-width: 900px) {
  .sticky .btn--primary { flex: 0 0 auto; white-space: nowrap; padding: 0 22px; }
  .sticky__call { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; text-align: right; }
  .sticky .ph { font-size: 11px; padding: 1px 5px; }
}

/* ===========================================================================
   V2 — the five sections added in Eduardo's feedback round (2026-08-23).
   Every geometry number below was RE-MEASURED live on the donor the same day
   (probe3), not read off the earlier harvest table — which was wrong about
   the numbered-row band being dark. Palette, type, copy and content are
   RocketCore's, as everywhere else on this page.
   =========================================================================== */

/* ---- 1. STAT CARDS — donor band 3 ---------------------------------------
   measured: card 328x234, #F7F7F7, radius 10px, padding 24px, flex column
   gap 42px; figure 56/400 count-up; grid 4 x 330.5px, gap 20px.           */
.stats {
  align-self: stretch;              /* it lives inside .centred (a flex column) */
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
  margin-top: var(--rc-s7); text-align: left;
}
.stat {
  background: var(--rc-band); border-radius: var(--rc-r-media);
  padding: var(--rc-s3); min-height: 234px;
  display: flex; flex-direction: column; gap: var(--rc-s5);
}
.band--grey .stat { background: var(--rc-paper); }
.stat__label { color: var(--rc-muted); }
.stat__fig {
  display: flex; align-items: baseline; gap: 2px;
  /* the figure sits directly under the label so all four share a baseline;
     the CAPTION takes the slack. Driving it from the figure made the row
     ragged whenever a caption ran to two lines. */
}
.stat__cap { margin-top: auto; }
.stat__unit { font-family: var(--rc-font-display); font-weight: var(--rc-w-display); font-size: var(--rc-figure); line-height: var(--rc-figure-lh); color: var(--rc-ink); }
.stat__cap { padding-top: var(--rc-s3); font-size: var(--rc-small); line-height: var(--rc-small-lh); color: var(--rc-muted); }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--rc-s2); margin-top: var(--rc-s5); }
  .stat { min-height: 0; gap: var(--rc-s3); padding: var(--rc-s3) var(--rc-s2); }
}

/* ---- STAT CARDS ON THE INK BAND (Figma A-2 "04 Who Runs It", synced
   2026-08-27). No "card on dark" precedent existed, so the card reuses the
   band's own surface + hairline tokens: white @ 8% fill, the 14% white
   hairline already used by .footer-meta and the ink-band dividers. Label, caption
   and unit swap to the on-ink roles; the figure goes white like the other
   headings on an ink band.                                                */
.band--ink .stat { background: rgba(255,255,255,.08); border: 1px solid var(--rc-on-ink-hair); }
.band--ink .stat__label,
.band--ink .stat__cap   { color: var(--rc-on-ink-muted); }
.band--ink .figure,
.band--ink .stat__unit  { color: var(--rc-on-ink); }

/* ---- 2. OUR EXPERTISE — donor band 5 -----------------------------------
   measured: band padding 100px 65px (WHITE on the donor); row 1382x284 with
   padding 65px 0; three 454px columns at gap 10px; [nn] 14/500 with a 24px
   gap to a 38px title; the capability list is a flex column at gap 14px.  */
.xrows { margin-top: var(--rc-s7); border-top: 1px solid var(--rc-hairline); }
.xrow {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
  padding: var(--rc-pad-tight) 0; border-bottom: 1px solid var(--rc-hairline);
  align-items: start;
}
.xrow__head { display: flex; align-items: baseline; gap: var(--rc-s3); }
.xrow__n { font-size: var(--rc-meta); font-weight: var(--rc-w-medium); color: var(--rc-muted); font-variant-numeric: tabular-nums; flex: 0 0 auto; }
.xrow__title { color: var(--rc-ink); }
.xrow__body { font-size: var(--rc-lead); line-height: var(--rc-lead-lh); color: var(--rc-body); max-width: 44ch; }
.xrow__list { display: flex; flex-direction: column; gap: 14px; }
.xrow__list li { font-size: var(--rc-lead); line-height: 1.3; color: var(--rc-muted); text-align: right; }
@media (max-width: 900px) {
  .xrow { grid-template-columns: 1fr; gap: var(--rc-s3); padding: var(--rc-s5) 0; }
  .xrow__list li { text-align: left; font-size: var(--rc-small); }
  .xrow__body { max-width: none; }
}

/* ---- 5. FULL-SCREEN CLOSING — donor band 10 ----------------------------
   measured: 1512x900 (100vh), inner padding 100px 50px 50px, a 700px
   content column centred in the viewport at gap 24px, over a full-bleed
   dark photograph. The button is white-on-ink (as the hero's is), so the
   Ink Navy accent stays at exactly three placements.                      */
.finale {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  background: var(--rc-ink); color: #FFF; overflow: hidden;
  padding-block: var(--rc-pad-open) 50px;
}
.finale__media { position: absolute; inset: 0; }
.finale__media img { width: 100%; height: 100%; object-fit: cover; opacity: .68; }
.finale__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,20,23,.62) 0%, rgba(19,20,23,.52) 45%, rgba(19,20,23,.86) 100%);
}
.finale__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--rc-s3);
}
.finale__h { color: #FFF; max-width: 14ch; }
.finale__sub { color: rgba(255,255,255,.84); max-width: 46ch; font-size: var(--rc-lead); line-height: var(--rc-lead-lh); margin-top: var(--rc-s1); }
.finale .btn { margin-top: var(--rc-s3); }
@media (max-width: 900px) { .finale .btn { width: 100%; max-width: 340px; } }

/* ---- footer wordmark (the tagline moved to the closing screen) --------- */
.footer-logo img { opacity: .92; }
@media (max-width: 900px) { .footer-top { gap: var(--rc-s4); } }

/* ---- a ghost button on paper ------------------------------------------ */
.btn--ghost-ink { color: var(--rc-muted); box-shadow: inset 0 0 0 1px var(--rc-hairline); cursor: default; }

/* A bracket inside a heading must not be set at heading size — [DRAFT COPY]
   at 48px read as the headline. Found by looking at the screenshots. */
.h1 .ph, .h2 .ph, .rowtitle .ph {
  font-size: 15px; letter-spacing: .01em; vertical-align: middle;
  position: relative; top: -.12em; font-weight: var(--rc-w-medium);
  font-family: var(--rc-font-text);
}

/* ---- placeholders that are a whole sentence need to wrap --------------- */
.ph--block { white-space: normal; display: inline; }

/* ---- REVIEW TOOL: the hero option switcher. Not part of the design. ---- */
.heroswitch {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; align-items: center; gap: 4px;
  background: rgba(19,20,23,.88); color: #FFF;
  border-radius: var(--rc-r-pill); padding: 6px 8px 6px 14px;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: var(--rc-w-medium);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.heroswitch__t { opacity: .55; margin-right: 4px; }
.heroswitch a {
  text-decoration: none; color: rgba(255,255,255,.62);
  padding: 4px 9px; border-radius: var(--rc-r-pill); line-height: 1;
}
.heroswitch a:hover { color: #FFF; background: rgba(255,255,255,.12); }
.heroswitch a[aria-current="page"] { color: var(--rc-ink); background: #FFF; }
.heroswitch__all { opacity: .55; }
@media (max-width: 900px) { .heroswitch { display: none; } }
@media print { .heroswitch { display: none; } }
