/* ============================================================================
   /ai-audit/frameworks — THE FRAMEWORK CATALOG
   ============================================================================
   WHAT THIS IS. The catalog page rebuilt on /ai-audit's design system. The old
   page was the last public page still on its own scheme: a #FCFAF7 ground, a
   #1a1f33 near-navy for headings and a #6A7178 muted grey that measures 4.47:1
   on warm paper and fails AA. Nothing here is invented — every value below is
   the audit page's, and the comment beside it names the token it came from.

   WHY A SEPARATE FILE AND A SEPARATE PREFIX. The .au-* system lives INLINE in
   resources/views/audit/index.blade.php, so it is not reachable from any other
   page; a second page can only redeclare it. Redeclaring .au-* from here would
   put two definitions of the same class in the codebase, and the next person to
   tune a button would fix one of them. So the primitives are renamed .fwx-*
   with a 1:1 mapping to their originals:

     .fwx-section       .au-section          .fwx-btn            .au-btn
     .fwx-container     .au-container        .fwx-btn--primary   .au-btn--primary
     .fwx-inset         .au-inset            .fwx-btn--outline   .au-btn--outline-teal
     .fwx-kicker        .au-kicker           .fwx-reveal         .au-reveal
     .fwx-intro         .au-section-intro    .fwx-tile           .au-xtile
     .fwx-stat          .au-stat-card        .fwx-cta            .au-founder-cta

   If those two systems are ever extracted into one shared stylesheet, this file
   becomes a rename and a delete rather than a rewrite.

   THE PALETTE is the homepage's, quoted from idh-2026.css :root and repeated
   here as literals for the same reason the audit page does it: that file is
   entirely .idh-scoped and would be inert on this page except for its weight.
   The token each value comes from is named in the comment — that is the seam to
   check when the palette next moves.
   ========================================================================== */

.fwx {
  --fwx-ink:       #101820;               /* --d-text      16.2:1 on paper */
  --fwx-body:      #3D444C;               /* --d-body       8.9:1 on paper */
  /* #5F666D, NOT #6A7178 — the value the old page used measured 4.95:1 on
     white and passed, then dropped to 4.47:1 on warm paper and failed. */
  --fwx-muted:     #5F666D;               /* --d-muted      5.3:1 on paper */
  --fwx-paper:     #F7F3EA;               /* --d-paper      the house ground */
  --fwx-band:      #F1EADD;               /* --d-paper-2    the deeper band  */
  --fwx-card:      #FFFFFF;               /* --d-card                        */
  --fwx-ink-band:  #0B1219;               /* --idh-band-dark  the hero ink   */
  --fwx-ink-card:  #16202B;               /* --idh-card-dark                 */
  /* ONE accent, two depths. The gold carries type on paper at 5.0:1; the amber
     is fill-only there (1.7:1) and is the accent on the ink band, where it
     measures 9.5:1. Never a third colour. */
  --fwx-gold:      #8A6A2F;               /* --idh-gold / --d-amber-ink      */
  --fwx-gold-h:    #75592A;               /* --idh-gold-hover                */
  --fwx-gold-wash: rgba(138,106,47,.12);  /* the outline-button hover wash   */
  --fwx-amber:     #E5B567;               /* --d-amber   fill only on paper  */
  --fwx-rule:      rgba(16,24,32,.12);    /* --d-rule                        */
  --fwx-rule-2:    rgba(16,24,32,.07);    /* --d-rule-2                      */
  --fwx-on-dark:   #F7F3EA;               /* --idh-on-dark   16.2:1 on ink   */
  --fwx-on-dark-2: rgba(240,229,210,.80); /* --idh-on-dark-2  9.6:1          */
  --fwx-on-dark-3: rgba(240,229,210,.62); /* --idh-on-dark-3  6.4:1          */
  /* Warm shadows. A neutral rgba(0,0,0,…) on warm paper reads as dirt — the
     rule every plate on the homepage already follows. */
  --fwx-shadow:    0 4px 24px rgba(38,28,16,.10);
  --fwx-shadow-lg: 0 12px 48px rgba(38,28,16,.16);
  --fwx-radius:    8px;
  --fwx-t:         .3s cubic-bezier(.4,0,.2,1);
}

/* ── TYPE ────────────────────────────────────────────────────────────────
   The homepage's scale, at the audit page's weights: 450 on the display steps,
   because Fraunces is a variable face and 450 is a real instance on its axis.
   Half a step off 500, and it is the whole difference between "editorial" and
   "a bit bold" at 52px. The 300..700 range is on this page's font link. */
.fwx h1, .fwx h2, .fwx h3, .fwx h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-optical-sizing: auto;
  line-height: 1.1;
  color: var(--fwx-ink);
  text-wrap: balance;
}
.fwx h2 { font-size: clamp(34px, 4vw, 52px); font-weight: 450; letter-spacing: -.02em; }
.fwx h3 { font-size: clamp(21px, 1.6vw, 25px); font-weight: 500; letter-spacing: -.015em; line-height: 1.25; }
.fwx h4 { font-size: 1.15rem; font-weight: 500; letter-spacing: -.01em; line-height: 1.3; }
/* the accent word inside a headline: the gold, at the headline's own weight
   rather than a bolder one */
.fwx h2 em, .fwx h3 em { font-style: normal; font-weight: inherit; color: var(--fwx-gold); }

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.fwx-section   { padding: clamp(56px, 7vw, 96px) 0; }
.fwx-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
/* The alternating width rhythm: full-bleed sections against ones inset to 80%.
   Width only — no border, no shadow, no rounded panel. */
.fwx-inset     { width: 80%; margin-inline: auto; overflow: visible; }
@media (max-width: 1024px) { .fwx-inset { width: 90%; } }
@media (max-width: 640px)  { .fwx-inset { width: calc(100% - 28px); } }

.fwx-kicker {
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .28em; line-height: 1.2;
  text-transform: uppercase; font-feature-settings: "kern" 1;
  color: var(--fwx-gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.fwx-kicker--center { justify-content: center; }
.fwx-kicker--light  { color: var(--fwx-amber); }

.fwx-intro    { text-align: center; margin-bottom: clamp(34px, 4vw, 52px); }
.fwx-intro h2 { margin-bottom: 0; }
/* A HAIRLINE, NOT A BAR. 34x1 with a 20px gap above and no radius, drawn on the
   h2 so no section has to add markup for it. A 3px bar is a graphic under the
   headline; a 1px rule is typographic, which is what an editorial header uses. */
.fwx-intro h2::after {
  content: ''; display: block; width: 34px; height: 1px;
  background: var(--fwx-gold); margin: 20px auto 18px;
}
.fwx-intro p {
  margin: 0 auto; max-width: 68ch; color: rgba(16,24,32,.78);
  /* The clamp's middle term needs the CONSTANT — a bare vw resolves to 15.1px
     at 1440 and the clamp floors at 16, parking every desktop on the mobile
     size. That trap is written up in idh-type-2026.css; this is the fixed form. */
  font-size: clamp(16px, 13.6px + .48vw, 22px);
  font-weight: 500; line-height: 1.5; letter-spacing: -.01em;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.fwx-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--fwx-radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--fwx-t);
  text-decoration: none !important; white-space: nowrap;
}
/* The label on the gold is #FFFFFF (5.03:1) and not the cream, which is 4.45:1
   and under AA. That arithmetic is section 12 of idh-2026.css. */
.fwx-btn--primary { background: var(--fwx-gold); color: #fff; border-color: var(--fwx-gold); }
.fwx-btn--primary:hover {
  background: var(--fwx-gold-h); border-color: var(--fwx-gold-h); color: #fff;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(138,106,47,.35);
}
.fwx-btn--outline { background: transparent; color: var(--fwx-gold); border-color: var(--fwx-gold); }
/* The colour has to be declared on the hover rule, not left to inherit: the
   theme's global a:hover carries the same specificity, so without it the label
   flips to the theme orange mid-hover. */
.fwx-btn--outline:hover { background: var(--fwx-gold); border-color: var(--fwx-gold); color: #fff; }
.fwx-btn--ghost {
  background: transparent; color: var(--fwx-on-dark);
  border-color: rgba(247,243,234,.45);
}
.fwx-btn--ghost:hover {
  background: rgba(247,243,234,.10); border-color: rgba(247,243,234,.75);
  color: #fff;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────────── */
.fwx-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fwx-reveal.visible { opacity: 1; transform: none; }
.fwx-reveal-d1 { transition-delay: .1s; }
.fwx-reveal-d2 { transition-delay: .2s; }
.fwx-reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .fwx-reveal { opacity: 1; transform: none; transition: none; }
}

/* ══ AT A GLANCE ═══════════════════════════════════════════════════════
   Four counts, and every one of them is counted from config/frameworks.php at
   render time rather than typed. A hand-typed "30+ frameworks" over a list of
   29 is the smallest possible version of the exact failure this firm sells
   against, and it goes stale the first time an entry is added. */
.fwx-glance      { background: var(--fwx-card); }
.fwx-glance__grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fwx-stat {
  background: var(--fwx-card); border: 1px solid var(--fwx-rule);
  border-radius: 12px; padding: 0 0 22px; overflow: hidden;
  transition: transform var(--fwx-t), box-shadow var(--fwx-t);
}
.fwx-stat:hover  { transform: translateY(-4px); box-shadow: var(--fwx-shadow); }
.fwx-stat__bar   { height: 4px; background: var(--fwx-gold); }
.fwx-stat__inner { padding: 22px 22px 0; }
.fwx-stat__n {
  font-family: 'Fraunces', Georgia, serif; font-size: 2.6rem; font-weight: 700;
  color: var(--fwx-ink); line-height: 1; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.fwx-stat__t { margin: 0 0 6px; font-size: 17px; font-weight: 600; color: var(--fwx-ink); }
.fwx-stat__d { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--fwx-muted); }
@media (max-width: 900px) { .fwx-glance__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fwx-glance__grid { grid-template-columns: 1fr; } }

/* ══ HOW TO READ THIS CATALOG ══════════════════════════════════════════
   Two cards, one per engagement type, both rendered off
   config/frameworks.php's own 'engagement_types' — never off a list of
   framework names held in the template. */
.fwx-read       { background: var(--fwx-band); }
.fwx-read__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fwx-read__card {
  background: var(--fwx-card); border: 1px solid var(--fwx-rule);
  border-radius: 14px; padding: 28px 28px 26px;
  box-shadow: 0 20px 44px -34px rgba(38,28,16,.34);
}
/* The readiness card is the one carrying a boundary we must not blur, so it is
   the one with the accent edge — the visual weight follows the caveat. */
.fwx-read__card--flag { border-left: 3px solid var(--fwx-gold); }
.fwx-read__label {
  display: inline-block; margin-bottom: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fwx-gold); border: 1px solid rgba(138,106,47,.35);
  border-radius: 4px; padding: 3px 9px;
}
.fwx-read__card h3 { margin: 0 0 10px; }
.fwx-read__card p  { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--fwx-body); }
.fwx-read__card p + p { margin-top: 10px; }
.fwx-read__count { font-size: 13.5px; color: var(--fwx-muted); margin-top: 14px !important; }
@media (max-width: 760px) { .fwx-read__grid { grid-template-columns: 1fr; } }

/* ══ THE CATALOG ═══════════════════════════════════════════════════════ */
.fwx-cat { background: var(--fwx-paper); }

/* ---- the filter bar --------------------------------------------------
   29 entries is past the point where a visitor scans a page for the one that
   binds them, so the list is filterable. It is progressive: the markup is the
   complete list, the filter only hides rows, and with JS off every entry is
   still on the page and still crawlable. */
.fwx-tools {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  justify-content: space-between;
  margin-bottom: 26px; padding-bottom: 22px;
  border-bottom: 1px solid var(--fwx-rule);
}
.fwx-search { position: relative; flex: 1 1 260px; max-width: 340px; }
.fwx-search i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--fwx-muted); pointer-events: none;
}
.fwx-search input {
  width: 100%; height: 44px; padding: 0 14px 0 36px;
  font-family: 'Inter', system-ui, sans-serif; font-size: 15px; color: var(--fwx-ink);
  background: var(--fwx-card); border: 1px solid var(--fwx-rule);
  border-radius: 999px; outline: none;
  transition: border-color var(--fwx-t), box-shadow var(--fwx-t);
}
.fwx-search input::placeholder { color: var(--fwx-muted); }
.fwx-search input:focus {
  border-color: var(--fwx-gold); box-shadow: 0 0 0 3px rgba(138,106,47,.15);
}
.fwx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fwx-chip {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px; font-weight: 600; color: var(--fwx-body);
  background: var(--fwx-card); border: 1px solid var(--fwx-rule);
  border-radius: 999px; padding: 8px 15px; cursor: pointer;
  transition: all var(--fwx-t);
}
.fwx-chip:hover { border-color: rgba(138,106,47,.45); color: var(--fwx-gold); }
.fwx-chip[aria-pressed="true"] {
  background: var(--fwx-gold); border-color: var(--fwx-gold); color: #fff;
}
.fwx-chip__n { opacity: .6; margin-left: 5px; font-variant-numeric: tabular-nums; }
.fwx-empty {
  display: none; margin: 30px 0 0; text-align: center;
  font-size: 16px; color: var(--fwx-muted);
}
.fwx-empty.on { display: block; }

/* ---- one family --------------------------------------------------- */
.fwx-group + .fwx-group { margin-top: clamp(34px, 4vw, 52px); }
.fwx-group[hidden] { display: none; }
.fwx-ghead {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--fwx-rule-2);
}
.fwx-ghead h3 { margin: 0; }
.fwx-ghead__n {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--fwx-gold); background: rgba(138,106,47,.10);
  border-radius: 999px; padding: 3px 10px; font-variant-numeric: tabular-nums;
}
.fwx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 16px; }

/* ---- one entry ------------------------------------------------------
   A card and not a pill, for all 29. The old page split them into ten cards
   and nineteen name-only pills, which meant the nineteen carried no region, no
   instrument type and no line of scope — and a reader looking for "the thing
   that binds me in Quebec" had no way to tell from the page whether Law 25 was
   the entry they wanted. Core is now a mark on the card, not a separate class
   of presentation. */
.fwx-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--fwx-card); border: 1px solid var(--fwx-rule);
  border-radius: 12px; padding: 18px 20px 20px;
  text-decoration: none !important;
  transition: transform var(--fwx-t), border-color var(--fwx-t), box-shadow var(--fwx-t);
}
.fwx-card:hover {
  transform: translateY(-3px); border-color: rgba(138,106,47,.45);
  box-shadow: var(--fwx-shadow);
}
.fwx-card[hidden] { display: none; }
.fwx-card__top {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 9px;
}
.fwx-card__region {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fwx-muted);
}
.fwx-card__kind {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--fwx-muted); opacity: .85;
}
.fwx-card__kind::before { content: '·'; margin-right: 8px; }
.fwx-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px; font-weight: 600; letter-spacing: -.012em; line-height: 1.22;
  color: var(--fwx-ink); margin-bottom: 7px;
}
.fwx-card:hover .fwx-card__name { color: var(--fwx-gold); }
.fwx-card__blurb {
  font-size: 14px; line-height: 1.55; color: var(--fwx-body); margin: 0 0 14px;
}
.fwx-card__foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 12px; border-top: 1px solid var(--fwx-rule-2);
}
.fwx-card__go {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--fwx-gold);
}
.fwx-card__go span { transition: margin-left var(--fwx-t); margin-left: 4px; }
.fwx-card:hover .fwx-card__go span { margin-left: 9px; }
/* The engagement mark. Never test for a framework NAME to decide this — it is
   read off 'engagement_type', so the next certification scheme we add is one
   config value and not an edit here. */
.fwx-eng {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--fwx-gold); border: 1px solid rgba(138,106,47,.35);
  border-radius: 3px; padding: 2px 6px; line-height: 1.5; white-space: nowrap;
}
.fwx-core {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fwx-gold); background: rgba(138,106,47,.10);
  border-radius: 3px; padding: 3px 7px;
}
/* Core sits top-right and the name must not run under it. */
.fwx-card--core .fwx-card__name { padding-right: 54px; }

/* ══ WHAT EACH PAGE GIVES YOU ══════════════════════════════════════════
   The audit page's numbered tiles: three warm grounds and one ink, with the
   numeral bleeding off the top edge as texture rather than as a label. */
.fwx-inside        { background: var(--fwx-band); }
.fwx-tiles         { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.fwx-tile {
  position: relative; overflow: hidden;
  border: 1px solid var(--fwx-rule-2); border-radius: 18px;
  padding: 21px; min-height: 168px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 20px 44px -34px rgba(38,28,16,.34);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fwx-tile:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -34px rgba(38,28,16,.5); }
.fwx-tile__n {
  position: absolute; top: -6px; right: 16px; pointer-events: none;
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: clamp(46px, 5vw, 58px); line-height: 1;
  color: var(--tkn, rgba(138,106,47,.20)); font-variant-numeric: tabular-nums;
}
.fwx-tile__t {
  position: relative; margin: 0 0 6px;
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: clamp(17px, 1.9vw, 20px); line-height: 1.24; letter-spacing: -.01em;
  color: var(--fwx-ink);
}
.fwx-tile__d { position: relative; margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--fwx-body); }
.fwx-tile--sand  { background: #F3E9D8; --tkn: rgba(138,106,47,.22); }
.fwx-tile--cream { background: #FAF4E8; --tkn: rgba(138,106,47,.18); }
.fwx-tile--amber { background: #FBF0DA; --tkn: rgba(138,106,47,.24); }
.fwx-tile--ink {
  background: linear-gradient(155deg, var(--fwx-ink-card), var(--fwx-ink-band));
  border-color: rgba(229,181,103,.22); --tkn: rgba(229,181,103,.24);
}
.fwx-tile--ink .fwx-tile__t { color: var(--fwx-on-dark); }   /* 16.2:1 on the band */
.fwx-tile--ink .fwx-tile__d { color: var(--fwx-on-dark-2); } /*  9.6:1             */
@media (max-width: 1000px) { .fwx-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .fwx-tiles { grid-template-columns: 1fr; } }

.fwx-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-top: clamp(18px, 2vw, 26px);
}
.fwx-foot p { margin: 0; max-width: 68ch; font-size: 15px; line-height: 1.6; color: var(--fwx-muted); }

/* ══ THE BOUNDARY NOTE ═════════════════════════════════════════════════
   Stated in place rather than implied. A list of 29 statutes is the one place
   a reader is most likely to mistake scoping copy for legal advice. */
.fwx-note   { background: var(--fwx-paper); padding-bottom: clamp(40px, 5vw, 64px); }
.fwx-note__inner {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  background: var(--fwx-card); border: 1px solid var(--fwx-rule);
  border-left: 3px solid var(--fwx-gold);
  border-radius: 12px; padding: 22px 26px;
}
.fwx-note__icon { font-size: 20px; color: var(--fwx-gold); line-height: 1.4; }
.fwx-note__inner p { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--fwx-body); }
.fwx-note__inner p + p { margin-top: 9px; }
@media (max-width: 560px) {
  .fwx-note__inner { grid-template-columns: 1fr; }
  .fwx-note__icon  { display: none; }
}

/* ══ CLOSING CTA ═══════════════════════════════════════════════════════
   The audit page's closing band: a photograph at low opacity under a warm
   radial and a vertical ink wash, so the copy's ground stays even from top to
   bottom whatever the photograph is doing under it. */
.fwx-cta {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--fwx-ink-band);
}
.fwx-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: url('/assets/custom_image/frameworks-cta-scoping-table.jpg') center / cover no-repeat;
  opacity: .34;
}
.fwx-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(52% 46% at 78% 12%, rgba(229,181,103,.13) 0%, rgba(229,181,103,0) 68%),
    linear-gradient(180deg, rgba(11,18,25,.62) 0%, rgba(11,18,25,.80) 46%, rgba(11,18,25,.94) 100%);
}
.fwx-cta__inner { max-width: 720px; }
.fwx-cta h2 { color: var(--fwx-on-dark); }
/* On the ink band the two accent depths swap: the fill amber carries type here
   (9.5:1) where the type gold would not (2.6:1). */
.fwx-cta h2 em { color: var(--fwx-amber); }
.fwx-cta p {
  margin: 16px 0 0; max-width: 60ch;
  font-size: 17px; line-height: 1.6; color: var(--fwx-on-dark-2);
}
.fwx-cta__acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.fwx-cta__trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px;
  padding-top: 20px; border-top: 1px solid rgba(247,243,234,.14);
}
.fwx-cta__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px; font-weight: 600; color: var(--fwx-on-dark-3);
}
.fwx-cta__trust i { color: var(--fwx-amber); font-size: 13px; }

/* ── The hero's jump row lands on these; clear the fixed header. ─────── */
#fw-catalog, #fw-read, #fw-inside, #fw-ask { scroll-margin-top: 96px; }
