/* ============================================================
   TestHub · Test Maturity Model (page-specific)
   Reskinned to the site design system. Loaded after pages.css.
   ============================================================ */

/* ---- page-scoped vertical compression (this page only) ---- */
.qcm-page.qcm-page { /* specificity anchor */ }
.qcm-page .section { padding: clamp(36px, 4.5vw, 56px) 0; }
.qcm-page .cta-strip { padding: clamp(36px, 4.5vw, 56px) 0; }
.qcm-page .section-head { margin-bottom: clamp(18px, 2.2vw, 24px); }
[data-screen-label="Confidence Model hero"] { padding: 96px 0 36px; }

/* extra compaction for the two light-content sections */
.qcm-page [data-screen-label="Capability pillars"],
.qcm-page [data-screen-label="Economics of trust"] { padding: clamp(28px, 3.5vw, 44px) 0; }
.qcm-page [data-screen-label="Capability pillars"] .section-head,
.qcm-page [data-screen-label="Economics of trust"] .section-head { margin-bottom: clamp(16px, 2vw, 22px); }

/* one-line section titles */
.qcm-page [data-screen-label="Capability pillars"] .section-head,
.qcm-page [data-screen-label="Economics of trust"] .section-head,
.qcm-page [data-screen-label="Outcomes"] .section-head { max-width: none; }
@media (min-width: 768px) {
  .qcm-page [data-screen-label="Capability pillars"] .section-title,
  .qcm-page [data-screen-label="Economics of trust"] .section-title,
  .qcm-page [data-screen-label="Outcomes"] .section-title { white-space: nowrap; }
  .qcm-page [data-screen-label="Economics of trust"] .section-title { font-size: clamp(24px, 3vw, 38px); }
}

/* ---- hero: copy column + live scorecard ---- */
.qcm-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
[data-screen-label="Confidence Model hero"] .page-eyebrow { white-space: nowrap; }
.qcm-hero-title { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; font-size: clamp(36px, 4.8vw, 64px); color: var(--ink); margin-top: 6px; }
.qcm-hero-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.qcm-hero-lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-mid); max-width: 34ch; margin-top: 18px; line-height: 1.6; }
.qcm-hero-meta { margin-top: 28px; display: flex; flex-wrap: nowrap; align-items: stretch; gap: 0; }
.qhm-item { position: relative; flex: 1 1 0; min-width: 0; padding: 0 22px; display: flex; flex-direction: column; }
.qhm-item:first-child { padding-left: 0; }
.qhm-item:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 1px; background: var(--line); }
.qhm-ic { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: color-mix(in oklab, var(--orange) 12%, transparent); border: 1px solid rgba(252,112,1,0.3); color: var(--orange); margin-bottom: 14px; }
.qcm-hero-meta b { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px; white-space: nowrap; }
.qhm-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-dim); line-height: 1.4; margin-top: auto; }

/* ---- scorecard panel ---- */
.scorecard {
  position: relative; background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  padding: 26px 26px 24px; box-shadow: var(--shadow);
}
.scorecard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(245,43,43,0.5), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.sc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sc-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim); }
.sc-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: 11px; color: var(--ring-red); text-transform: uppercase; letter-spacing: .12em; }
.sc-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ring-red); animation: scPulse 1.8s infinite; }
@keyframes scPulse { 0% { box-shadow: 0 0 0 0 rgba(245,43,43,0.55); } 70% { box-shadow: 0 0 0 8px rgba(245,43,43,0); } 100% { box-shadow: 0 0 0 0 rgba(245,43,43,0); } }

.gauge-row { display: flex; align-items: center; gap: 22px; padding: 6px 0 18px; }
.gauge { position: relative; width: 132px; height: 132px; flex: 0 0 auto; }
.gauge svg { transform: rotate(-90deg); }
.gauge .track { stroke: var(--line-strong); }
.gauge .fill { stroke: url(#gaugeGrad); stroke-linecap: round; transition: stroke-dashoffset 0.7s cubic-bezier(0.16,1,0.3,1); }
.gauge .score { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.gauge .score b { font-family: var(--f-display); font-size: 34px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.gauge .score span { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; color: var(--ink-dim); text-transform: uppercase; }
.gauge-meta { min-width: 0; }
.gauge-meta .lvl-tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ring-red); }
.gauge-meta .lvl-name { font-family: var(--f-display); font-size: 22px; font-weight: 700; margin: 4px 0 7px; letter-spacing: -0.02em; line-height: 1.1; }
.gauge-meta .lvl-move { font-size: 13.5px; color: var(--ink-mid); line-height: 1.5; }

.sc-q { border-top: 1px solid var(--line); padding-top: 18px; display: flex; flex-direction: column; }
.sc-q-label { font-size: 13px; color: var(--ink-mid); margin-bottom: 12px; font-family: var(--f-mono); }
.sc-q-label b { color: var(--ink); font-weight: 600; }
.sc-q-text { display: block; margin-top: 6px; font-family: var(--f-display); font-weight: 600; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
.sc-opts { display: grid; gap: 8px; }
.sc-opt {
  display: flex; align-items: center; gap: 11px; width: 100%;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
  border-radius: var(--r); padding: 12px 14px; font-family: var(--f-body); font-size: 14.5px;
  text-align: left; cursor: pointer; transition: border-color .16s, background .16s, transform .16s;
}
.sc-opt:hover { border-color: var(--ring-red); transform: translateX(2px); }
.sc-opt[aria-pressed="true"] { border-color: var(--ring-red); background: color-mix(in oklab, var(--ring-red) 12%, transparent); }
.sc-opt .tick { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid var(--line-strong); flex: 0 0 auto; display: grid; place-items: center; }
.sc-opt[aria-pressed="true"] .tick { border-color: var(--ring-red); background: var(--ring-red); }
.sc-opt[aria-pressed="true"] .tick::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.sc-progress { display: flex; gap: 5px; margin-top: 16px; }
.sc-back { display: inline-flex; align-self: flex-end; align-items: center; gap: 8px; margin-top: 16px; min-height: 44px; background: color-mix(in oklab, var(--ring-red) 10%, transparent); border: 1px solid rgba(245,43,43,0.4); border-radius: 10px; padding: 11px 18px; font-family: var(--f-mono); font-size: 14px; color: var(--ring-red); cursor: pointer; transition: color .18s ease, border-color .18s ease, background .18s ease; }
.sc-back:hover { color: #fff; border-color: var(--ring-red); background: var(--ring-red); }
.sc-back span { font-size: 16px; line-height: 1; }
.sc-back[hidden] { display: none; }
.sc-progress i { height: 3px; flex: 1; border-radius: 2px; background: var(--line-strong); transition: background .3s; }
.sc-progress i.on { background: var(--grad); }
.sc-cta { margin-top: 16px; display: none; }
.sc-cta.show { display: grid; gap: 8px; }
.sc-cta .btn { width: 100%; justify-content: center; }

/* ---- maturity climb (rising staircase) ---- */
[data-screen-label="Maturity ladder"] .section-head { max-width: none; }
[data-screen-label="Maturity ladder"] .section-title { max-width: 820px; }
[data-screen-label="Maturity ladder"] .section-sub { max-width: 820px; font-size: 15px; line-height: 1.55; text-wrap: balance; }

.climb { position: relative; margin-top: 10px; }
.climb-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: stretch; }
.step { display: flex; flex-direction: column; min-width: 0; }
.step-rise { flex: 0 0 calc((5 - var(--i)) * 30px); }

/* number node sits on the rising line */
.step-node { display: flex; align-items: center; margin-bottom: 14px; }
.step-node b {
  font-family: var(--f-display); font-weight: 800; font-size: 21px; line-height: 1;
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; display: grid; place-items: center;
  color: var(--ink); background: var(--bg-2);
  border: 1.5px solid color-mix(in oklab, var(--ring-red) calc(var(--i) * 16%), var(--line-strong));
}
.step-node::after {
  content: ""; flex: 1; height: 2px; margin-left: 12px; border-radius: 2px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--ring-red) calc(20% + var(--i) * 14%), transparent), transparent);
}

.step-card {
  flex: 1; display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--r-lg); padding: 22px 22px 24px;
  border: 1px solid color-mix(in oklab, var(--ring-red) calc(var(--i) * 9%), var(--line));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-4px); }

.step--peak .step-card { box-shadow: 0 0 0 1px rgba(245,43,43,0.22), 0 26px 60px -32px rgba(245,43,43,0.55); }
.step--peak .step-node b { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 0 18px -2px rgba(245,43,43,0.7); }

.step-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--bg-2); color: var(--ring-red); margin-bottom: 16px; }
.step-ic svg { width: 23px; height: 23px; }
.step-name { font-family: var(--f-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); line-height: 1.15; }
.step-name span { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); margin-top: 6px; font-weight: 400; }

.step-facts { margin: 18px 0 0; display: flex; flex-direction: column; gap: 15px; flex: 1; }
.fact { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; }
.fact svg { width: 16px; height: 16px; margin-top: 2px; color: var(--ink-dim); }
.fact-help svg { color: var(--ring-red); }
.fact dt { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 4px; }
.fact-help dt { color: var(--ring-red); }
.fact dd { margin: 0; font-size: 13.5px; color: var(--ink-mid); line-height: 1.46; }
.fact-help dd { color: var(--ink); }

.climb-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* connecting ascending line (drawn by JS at desktop width) */
.climb-track { position: relative; }
.step { position: relative; z-index: 1; }
.climb-line { position: absolute; left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
.climb-line path { transition: opacity .3s ease; }

@media (max-width: 1024px) {
  .climb-track { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .step-rise { flex-basis: 0; }
  .step:nth-of-type(3n+1) .step-rise { flex-basis: 40px; }
  .step:nth-of-type(3n+2) .step-rise { flex-basis: 20px; }
  .step:nth-of-type(3n+3) .step-rise { flex-basis: 0; }
  .step--peak .step-card { box-shadow: none; border-color: color-mix(in oklab, var(--ring-red) 45%, var(--line)); }
}
@media (max-width: 620px) {
  .climb-track { grid-template-columns: 1fr; row-gap: 18px; }
  .step-rise,
  .step:nth-of-type(3n+1) .step-rise,
  .step:nth-of-type(3n+2) .step-rise { display: none; }
}

/* ---- result breakdown (per-dimension bars in the scorecard) ---- */
.sc-breakdown { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
.sc-breakdown[hidden] { display: none; }
.scb-head { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 13px; }
.scb-rows { display: flex; flex-direction: column; gap: 11px; }
.scb-row { display: grid; grid-template-columns: 1fr 84px auto; align-items: center; gap: 12px; }
.scb-label { font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 8px; min-width: 0; line-height: 1.25; }
.scb-tag { font-family: var(--f-mono); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; color: var(--ring-red); border: 1px solid rgba(245,43,43,0.4); border-radius: 5px; padding: 2px 6px; white-space: nowrap; flex: 0 0 auto; }
.scb-track { height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; border: 1px solid var(--line); }
.scb-track i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 999px; transition: width .65s cubic-bezier(.16,1,.3,1); }
.scb-val { font-family: var(--f-mono); font-size: 12px; color: var(--ink-mid); white-space: nowrap; }
.scb-val small { color: var(--ink-dim); }
@media (max-width: 420px) {
  .scb-row { grid-template-columns: 1fr auto; }
  .scb-track { grid-column: 1 / -1; order: 3; }
}

/* ---- specialist API focus (bento) ---- */
.qcm-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.qcm-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 30px; transition: transform .35s ease, border-color .35s ease; }
.qcm-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.qcm-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.qcm-card-head .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; flex: 0 0 auto; color: var(--ring-red); }
.qcm-card-head h3 { font-family: var(--f-display); font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.flist { list-style: none; display: grid; gap: 16px; align-content: center; flex: 1; }
.flist li { display: flex; gap: 11px; font-size: 15px; color: var(--ink-mid); line-height: 1.5; }
.flist li::before { content: "\2192"; color: var(--ring-red); font-family: var(--f-mono); flex: 0 0 auto; }
.owasp { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; counter-reset: o; align-content: center; flex: 1; }
.owasp li { font-family: var(--f-mono); font-size: 13px; color: var(--ink-mid); display: flex; gap: 9px; line-height: 1.4; counter-increment: o; }
.owasp li::before { content: counter(o, decimal-leading-zero); color: var(--ring-red); flex: 0 0 auto; }

/* ---- capability pillars ---- */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pillar { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 20px 20px; transition: border-color .18s, transform .18s; }
.pillar:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.pillar .pn { font-family: var(--f-mono); font-size: 11px; color: var(--ink-dim); letter-spacing: .12em; }
.pillar h3 { font-family: var(--f-display); font-size: 19px; font-weight: 700; margin: 6px 0 10px; letter-spacing: -0.01em; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.pillar ul { list-style: none; display: grid; gap: 7px; }
.pillar li { font-size: 13.5px; color: var(--ink-mid); line-height: 1.4; padding-left: 16px; position: relative; }
.pillar li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 2px; background: var(--ring-red); opacity: .8; }

/* ---- economics of trust (split) ---- */
.qcm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.panel { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 28px; }
.panel > h3 { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 12px; }
.cost-list { list-style: none; display: grid; gap: 0; }
.cost-list li { display: flex; align-items: center; gap: 13px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-mid); }
.cost-list li:first-child { border-top: 0; }
.cost-list .cic { width: 32px; height: 32px; border-radius: 9px; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ring-red); flex: 0 0 auto; }
.cost-list .plus { margin-left: auto; font-family: var(--f-mono); color: var(--ink-dim); font-size: 15px; }
.ev-list { list-style: none; display: grid; gap: 8px; align-content: start; }
.ev-list li { display: flex; align-items: center; gap: 13px; padding: 11px 15px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); font-size: 14.5px; color: var(--ink); }
.ev-list .eic { color: var(--orange); flex: 0 0 auto; }
.ev-list li:last-child .eic { color: var(--ring-red); }
.panel-ev > h3 { color: var(--ring-red); }

/* ---- outcomes ---- */
.outcomes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.outcome { display: flex; flex-direction: column; padding: 22px 20px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); transition: border-color .18s, transform .18s; }
.outcome:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.outcome .oic { color: var(--ring-red); margin-bottom: 13px; }
.outcome h4 { font-family: var(--f-display); font-size: 15px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .outcomes { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .rung-body { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 820px) {
  .qcm-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .scorecard { max-width: 540px; margin-left: auto; margin-right: auto; width: 100%; }
}
@media (max-width: 760px) {
  .qcm-bento { grid-template-columns: 1fr; }
  .qcm-split { grid-template-columns: 1fr; }
  .rung-detail { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
}
@media (max-width: 560px) {
  .owasp { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .qcm-hero-meta { gap: 0; }
  .qhm-item { padding: 0 14px; }
}

/* ============================================================
   Elevation + appeal pass (this page, dark theme lift)
   ============================================================ */
.qcm-page { --surface: #1C1C21; --surface-2: #232329; }

.qcm-page .step-card,
.qcm-page .pillar,
.qcm-page .panel,
.qcm-page .scorecard { box-shadow: 0 1px 0 rgba(255,255,255,0.045) inset, 0 20px 44px -28px rgba(0,0,0,0.85); }
html[data-theme="light"] .qcm-page .step-card,
html[data-theme="light"] .qcm-page .pillar,
html[data-theme="light"] .qcm-page .panel,
html[data-theme="light"] .qcm-page .scorecard { box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 22px 48px -30px rgba(40,20,10,0.28); }

/* current-level highlight (set after the quiz finishes) */
.step-card { position: relative; }
.step.is-current .step-card { border-color: var(--ring-red); box-shadow: 0 0 0 1px var(--ring-red), 0 24px 50px -26px rgba(245,43,43,0.55); }
.step.is-current .step-node b { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 0 18px -2px rgba(245,43,43,0.7); }
.step.is-current .step-card::before { content: "Your level"; position: absolute; top: -10px; left: 22px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 4px 9px; border-radius: 6px; box-shadow: 0 6px 16px -6px rgba(245,43,43,0.7); }

/* ---- outcomes: one divided strip (distinct from the card grids) ---- */
.outcomes { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); overflow: hidden; box-shadow: 0 1px 0 rgba(255,255,255,0.045) inset, 0 20px 44px -28px rgba(0,0,0,0.85); }
html[data-theme="light"] .outcomes { box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 22px 48px -30px rgba(40,20,10,0.28); }
.outcome { flex: 1 1 0; min-width: 170px; flex-direction: row; align-items: center; gap: 13px; padding: 22px 22px; border: 0; border-left: 1px solid var(--line); border-radius: 0; background: transparent; transition: background .2s ease; }
.outcome:first-child { border-left: 0; }
.outcome:hover { transform: none; border-color: var(--line); background: color-mix(in oklab, var(--ring-red) 5%, transparent); }
.outcome .oic { margin-bottom: 0; flex: 0 0 auto; }
.outcome h4 { font-size: 14px; }
@media (max-width: 860px) {
  .outcome { flex: 1 1 40%; border-left: 0; border-top: 1px solid var(--line); }
  .outcome:first-child, .outcome:nth-child(2) { border-top: 0; }
}
@media (max-width: 480px) {
  .outcome { flex: 1 1 100%; border-top: 1px solid var(--line); }
  .outcome:nth-child(2) { border-top: 1px solid var(--line); }
  .outcome:first-child { border-top: 0; }
}

/* ---- "The six levels" section: ~10% tighter vertically ---- */
.qcm-page [data-screen-label="Maturity ladder"] { padding-top: clamp(28px, 3.6vw, 46px); padding-bottom: clamp(28px, 3.6vw, 46px); }
.qcm-page [data-screen-label="Maturity ladder"] .section-head { margin-bottom: clamp(14px, 1.7vw, 19px); }
[data-screen-label="Maturity ladder"] .climb { margin-top: 4px; }
[data-screen-label="Maturity ladder"] .step-card { padding-top: 17px; padding-bottom: 18px; }
[data-screen-label="Maturity ladder"] .step-node { margin-bottom: 9px; }
[data-screen-label="Maturity ladder"] .step-ic { margin-bottom: 11px; }
[data-screen-label="Maturity ladder"] .step-facts { margin-top: 13px; gap: 10px; }
@media (max-width: 1024px) {
  .climb-track { row-gap: 22px; }
  .step:nth-of-type(3n+1) .step-rise { flex-basis: 26px; }
  .step:nth-of-type(3n+2) .step-rise { flex-basis: 13px; }
}
@media (max-width: 620px) { .climb-track { row-gap: 13px; } }
