/* ===========================================================================
   CFE Métiers — Crypto reviews design system
   Editorial fintech · light · CFE navy + red · Fraunces / Hanken Grotesk
   =========================================================================== */

:root {
  --navy:        #16335c;
  --navy-700:    #1f4577;
  --navy-900:    #0e2243;
  --red:         #c8102e;
  --red-700:     #a50d26;
  --ink:         #16213a;
  --muted:       #5b6680;
  --line:        #e3e7ef;
  --bg:          #f5f7fb;
  --bg-2:        #eef2f9;
  --card:        #ffffff;
  --green:       #138a52;
  --amber:       #e8a020;
  --gold:        #f5a623;

  --shadow-sm:  0 1px 2px rgba(16,33,58,.06), 0 2px 6px rgba(16,33,58,.05);
  --shadow:     0 6px 18px rgba(16,33,58,.08), 0 2px 6px rgba(16,33,58,.05);
  --shadow-lg:  0 22px 50px -18px rgba(16,33,58,.30), 0 8px 20px rgba(16,33,58,.08);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -8%, #e9f0fe 0%, rgba(233,240,254,0) 60%),
    radial-gradient(900px 500px at -10% 4%, #fdeef0 0%, rgba(253,238,240,0) 55%),
    var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }

/* ----------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; gap: 18px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { height: 46px; width: auto; }
.brand b { font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 19px; letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14.5px;
  padding: 9px 14px; border-radius: 999px; transition: background .18s, color .18s;
}
.nav a:hover { background: var(--bg-2); color: var(--navy); }
.nav a.active { color: var(--red); }

/* crypto dropdown */
.nav .has-menu { position: relative; }
.nav .trigger { display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  color: var(--ink); font-weight: 600; font-size: 14.5px; padding: 9px 14px; border-radius: 999px; transition: background .18s, color .18s; }
.nav .trigger::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s; opacity: .55; }
.nav .has-menu:hover .trigger::after, .nav .has-menu:focus-within .trigger::after { transform: rotate(-135deg) translateY(1px); }
.nav .trigger:hover { background: var(--bg-2); color: var(--navy); }
.nav .trigger.active { color: var(--red); }
.nav .dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; width: 312px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 70; }
.nav .has-menu:hover .dropdown, .nav .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.nav .dropdown .dd-label { grid-column: 1 / -1; font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); padding: 8px 10px 3px; }
.nav .dropdown a { padding: 7px 10px; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 13.5px; }
.nav .dropdown a:hover { background: var(--bg-2); color: var(--navy); }
.nav .dropdown a.st-pend { color: #a06a00; }
.nav .dropdown a.st-warn { color: var(--red); }
.nav .dropdown a.dd-top { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; color: var(--navy); background: var(--bg-2); margin-bottom: 4px; padding: 10px 12px; }
.nav .dropdown a.dd-top::after { content: "→"; opacity: .45; }
.nav .dropdown a.dd-top:hover { background: #e4e9f3; color: var(--navy); }
@media (max-width: 920px) {
  .nav .has-menu { position: static; }
  .nav .dropdown { left: 12px; right: 12px; width: auto; grid-template-columns: 1fr 1fr; max-height: 64vh; overflow: auto; }
}

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 15.5px;
  padding: 13px 24px; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s, background .2s;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-cta {
  color: #fff;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-700) 100%);
  box-shadow: 0 10px 22px -8px rgba(200,16,46,.6);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(200,16,46,.66); }
.btn-navy { color: #fff; background: var(--navy); }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn-ghost { color: var(--navy); background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: #c9d3e6; }
.btn-block { display: flex; width: 100%; }

/* ----------------------------------------------------------------- hero */
.hero { padding: 58px 0 26px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
  background: #fff; border: 1px solid var(--line); padding: 7px 13px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-family: var(--display); font-weight: 600; color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -.02em;
  margin: 18px 0 0; max-width: 16ch;
}
.hero .lead { font-size: 1.16rem; color: var(--muted); max-width: 60ch; margin: 18px 0 0; }
.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  margin-top: 22px; font-size: 13.5px; color: var(--muted); font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

/* ----------------------------------------------------------------- verdict card */
.verdict {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; margin-top: 34px;
}
.verdict .v-main { padding: 30px 32px; }
.verdict .v-side {
  padding: 30px 32px; background: linear-gradient(170deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.verdict h2 { margin: 0 0 6px; font-family: var(--display); color: var(--navy); font-size: 1.5rem; font-weight: 600; }
.score-big { font-family: var(--display); font-weight: 600; font-size: 3.4rem; line-height: 1; }
.score-big small { font-size: 1.1rem; opacity: .6; font-family: var(--body); }
.v-side .label { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .75; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.v-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag {
  font-size: 12.5px; font-weight: 700; color: var(--navy);
  background: var(--bg-2); border-radius: 999px; padding: 6px 12px;
}

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 4px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.stat .k { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.stat .t { font-size: 12.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ----------------------------------------------------------------- layout w/ TOC */
.layout { display: grid; grid-template-columns: 230px 1fr; gap: 48px; padding: 46px 0 30px; align-items: start; }
.toc { position: sticky; top: 92px; }
.toc .t-title { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc a {
  display: block; text-decoration: none; color: var(--muted); font-weight: 600; font-size: 14px;
  padding: 7px 12px; border-left: 2px solid var(--line); transition: .18s;
}
.toc a:hover { color: var(--navy); border-color: var(--red); background: #fff; }

/* ----------------------------------------------------------------- article */
.article > section { scroll-margin-top: 90px; margin-bottom: 40px; }
.article h2 {
  font-family: var(--display); font-weight: 600; color: var(--navy);
  font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.01em; line-height: 1.12;
  margin: 0 0 16px; position: relative; padding-left: 18px;
}
.article h2::before {
  content: ""; position: absolute; left: 0; top: .18em; bottom: .18em; width: 5px;
  border-radius: 4px; background: linear-gradient(var(--red), var(--navy));
}
.article h3 { font-family: var(--display); font-weight: 600; color: var(--navy); font-size: 1.25rem; margin: 26px 0 10px; }
.article p { margin: 0 0 16px; color: #2a3650; }
.article p strong, .article li strong { color: var(--ink); }
.article figure { margin: 22px 0; }
.article figure img { border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow); }

/* feature cards */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 6px 0 4px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px;
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ic { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px;
  background: var(--bg-2); color: var(--navy); margin-bottom: 12px; }
.feature .ic svg { width: 20px; height: 20px; }
.feature h4 { margin: 0 0 6px; font-family: var(--body); font-weight: 800; color: var(--navy); font-size: 1.02rem; }
.feature p { margin: 0; font-size: .95rem; color: var(--muted); }

/* pros / cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pc { border-radius: var(--r); padding: 22px 24px; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-sm); }
.pc.pros { border-top: 4px solid var(--green); }
.pc.cons { border-top: 4px solid var(--red); }
.pc h4 { margin: 0 0 12px; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; gap: 9px; }
.pc.pros h4 { color: var(--green); }
.pc.cons h4 { color: var(--red); }
.pc ul { list-style: none; margin: 0; padding: 0; }
.pc li { position: relative; padding-left: 28px; margin-bottom: 11px; font-size: .96rem; color: #2a3650; }
.pc li::before { position: absolute; left: 0; top: -1px; font-weight: 800; }
.pc.pros li::before { content: "✓"; color: var(--green); }
.pc.cons li::before { content: "✕"; color: var(--red); }

/* steps */
.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 22px 20px 70px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 18px; width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: #fff; background: var(--navy);
}
.step b { color: var(--navy); }

/* inline CTA strip */
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; border-radius: var(--r-lg); padding: 26px 32px; margin: 30px 0; box-shadow: var(--shadow-lg);
}
.cta-strip .ct-txt { font-family: var(--display); font-size: 1.35rem; font-weight: 600; max-width: 30ch; }
.cta-strip .ct-txt span { color: #ffd0d6; }

/* ----------------------------------------------------------------- ranked list (listicle) */
.rankcard {
  display: grid; grid-template-columns: 92px 1.7fr 1fr; gap: 0; align-items: stretch;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden; margin-bottom: 20px;
  transition: transform .18s, box-shadow .2s;
}
.rankcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rankcard.top { border: 1.5px solid var(--navy); }
.rk-rank {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 14px;
}
.rk-rank .n { font-family: var(--display); font-weight: 600; font-size: 2.6rem; line-height: 1; }
.rk-rank .l { font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.rk-body { padding: 22px 26px; }
.rk-body h3 { margin: 0; font-family: var(--display); font-size: 1.45rem; color: var(--navy); font-weight: 600; }
.rk-badge { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.rk-body ul { list-style: none; margin: 12px 0 0; padding: 0; }
.rk-body li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: .94rem; color: #2a3650; }
.rk-body li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.rk-side {
  border-left: 1px solid var(--line); background: var(--bg);
  padding: 22px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center;
}
.rk-score { font-family: var(--display); font-weight: 600; font-size: 2.8rem; line-height: 1; color: var(--navy); }
.rk-score small { font-size: 1rem; color: var(--muted); font-family: var(--body); }
.rk-score-l { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: -8px; }

/* rating bars */
.bars { display: grid; gap: 10px; margin: 4px 0 0; }
.barrow { display: grid; grid-template-columns: 96px 1fr 44px; align-items: center; gap: 10px; font-size: 12.5px; }
.barrow .bl { font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-size: 11px; }
.track { height: 8px; background: var(--bg-2); border-radius: 99px; overflow: hidden; }
.fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--navy), var(--red)); }
.barrow .bv { font-family: var(--mono); font-weight: 700; color: var(--navy); text-align: right; }

/* detailed review block */
.review-detail { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 30px 34px; margin-bottom: 24px; }
.review-detail .rd-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.review-detail .rd-head .num { font-family: var(--display); font-weight: 600; font-size: 2.4rem; color: var(--red); line-height: 1; }
.review-detail .rd-head h3 { margin: 0; font-family: var(--display); color: var(--navy); font-size: 1.5rem; font-weight: 600; }
.review-detail .rd-sub { color: var(--muted); font-weight: 600; font-size: .96rem; }
.review-detail figure img { max-height: 280px; width: auto; }
.sub-label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 700; margin: 18px 0 8px; }

/* factors */
.factors { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.factor { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-sm); }
.factor h4 { margin: 0 0 8px; color: var(--navy); font-weight: 800; font-size: 1.05rem; }
.factor p { margin: 0; font-size: .94rem; color: var(--muted); }
.checklist { columns: 2; column-gap: 28px; }
.checklist li { margin-bottom: 8px; }

/* ----------------------------------------------------------------- you may also like */
.related { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 14px; }
.relcard {
  display: block; text-decoration: none; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s;
}
.relcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.relcard .e { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); }
.relcard h4 { margin: 8px 0 4px; font-family: var(--display); color: var(--navy); font-weight: 600; font-size: 1.2rem; }
.relcard p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ----------------------------------------------------------------- disclosure + footer */
.disclosure {
  font-size: 13px; color: var(--muted); background: var(--bg-2); border: 1px dashed #c9d3e6;
  border-radius: var(--r-sm); padding: 14px 18px; margin: 8px 0 0;
}
.site-footer { background: var(--navy-900); color: #c7d2e6; margin-top: 60px; }
.site-footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding: 48px 0 30px; }
.site-footer img { height: 50px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8aa0c4; margin: 0 0 14px; }
.site-footer a { color: #c7d2e6; text-decoration: none; display: block; padding: 5px 0; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.site-footer .copy { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; color: #8aa0c4; }

/* ----------------------------------------------------------------- regulatory badges & banners */
.badge-ok { display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:.03em; color:#0c6b3f;
  background:#e2f5ea; border:1px solid #b6e3c8; border-radius:999px; padding:5px 11px; }
.badge-warn { display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:.03em; color:#a50d26;
  background:#fde7ea; border:1px solid #f4c2cb; border-radius:999px; padding:5px 11px; }
.rankcard.flagged { border:1.5px solid #f0b8c1; }
.rankcard.flagged .rk-rank { background:linear-gradient(180deg,#9aa0ad 0%, #6b7180 100%); }
.rankcard.flagged .rk-body li::before { content:"•"; color:var(--muted); }
.rk-side .warn-pill { color:#a50d26; font-weight:800; font-size:12.5px; display:flex; gap:6px; align-items:center; justify-content:center; text-align:center; line-height:1.3; }
.rk-side .warn-pill svg { width:18px; height:18px; flex:none; }
.warn-banner, .note-ok { display:flex; gap:12px; align-items:flex-start; border-radius:var(--r-sm);
  padding:14px 18px; margin:0 0 16px; font-size:.95rem; }
.warn-banner { background:#fdeef0; border:1px solid #f4c2cb; border-left:4px solid var(--red); color:#7a1020; }
.note-ok { background:#e9f7ef; border:1px solid #bce4cd; border-left:4px solid var(--green); color:#0c5132; }
.warn-banner svg, .note-ok svg { flex:none; width:20px; height:20px; margin-top:2px; }
.warn-banner svg { color:var(--red); } .note-ok svg { color:var(--green); }
.warn-banner b { color:var(--red); } .note-ok b { color:var(--green); }
.badge-pending { display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:.03em; color:#8a5a00;
  background:#fff3d6; border:1px solid #f0d488; border-radius:999px; padding:5px 11px; }
.note-pending { display:flex; gap:12px; align-items:flex-start; border-radius:var(--r-sm); padding:14px 18px; margin:0 0 16px; font-size:.95rem;
  background:#fff8e8; border:1px solid #f0d488; border-left:4px solid var(--amber); color:#6e4e00; }
.note-pending svg { flex:none; width:20px; height:20px; margin-top:2px; color:var(--amber); }
.note-pending b { color:#8a5a00; }
.hero-head { display:flex; align-items:center; gap:18px; margin-top:18px; }
.logo-tile { width:62px; height:62px; border-radius:16px; display:grid; place-items:center; color:#fff;
  font-family:var(--display); font-weight:600; font-size:1.9rem; box-shadow:var(--shadow); flex:none; }
@media (max-width:560px){ .logo-tile{ width:52px; height:52px; font-size:1.55rem; } }

/* ----------------------------------------------------------------- reveal anim */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ----------------------------------------------------------------- responsive */
@media (max-width: 920px) {
  .layout { grid-template-columns: 1fr; gap: 0; }
  .toc { display: none; }
  .verdict { grid-template-columns: 1fr; }
  .features, .proscons, .factors, .related { grid-template-columns: 1fr; }
  .rankcard { grid-template-columns: 64px 1fr; }
  .rk-side { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); flex-direction: row; gap: 22px; }
  .rk-rank .n { font-size: 2rem; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 24px; }
  .checklist { columns: 1; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .brand b { display: none; }
  .cta-strip { padding: 22px; }
  .hero { padding: 38px 0 18px; }
}
