/* ============================================================
   MESH: Accrual Maturity Assessment quiz
   Scoped under .assess-page so it can't leak into the rest of the
   site's styles. Uses colors_and_type.css tokens, no hardcoded hex.
   ============================================================ */

.assess-page {
  background: var(--bg-1);
  min-height: 100vh;
  padding: 56px 0 96px;
  /* Stage-gauge zone colors, scoped to this page. Clean and vivid on
     purpose: the site's semantic tokens (--danger/--warning/--info/
     --success) are deliberately muted for body text and badges, but
     read as murky on a large dial. Stage 3 reuses the actual brand
     blue rather than a fifth new color. */
  --assess-gauge-1: #E5484D;
  --assess-gauge-2: #F2A93B;
  --assess-gauge-3: var(--brand);
  --assess-gauge-4: #1FA971;
}
.assess-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- progress ---------- */
.assess-progress { margin-bottom: 28px; }
.assess-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.assess-progress-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand);
}
.assess-progress-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
}
.assess-progress-count b { color: var(--fg-1); font-weight: 600; }
.assess-progress-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-1);
  overflow: hidden;
}
.assess-progress-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--brand);
  transition: width .4s cubic-bezier(.22,.9,.32,1);
}

/* ---------- card ---------- */
.assess-card {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 48px 56px;
}
.assess-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.assess-question {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: var(--tracking-snug);
  line-height: 1.3;
  color: var(--fg-1);
  margin: 0 0 28px;
}
.assess-sub {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.5;
  margin: 0 0 28px;
}
.assess-microcopy {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
  margin-top: 14px;
}
.assess-microcopy b { color: var(--fg-2); font-weight: 600; }
/* Instructional helper under the question heading (e.g. "Select all that
   apply."), above the first option. Negative top margin tightens it against
   the heading's 28px bottom margin so it reads as a subtitle, not a
   free-floating line. */
.assess-helper {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
  margin: -16px 0 22px;
}

/* ---------- pill-select (single choice, grid) ---------- */
.assess-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
/* Reuses .assess-field (gate screen's text input look) so the "Something
   else" follow-up field doesn't introduce a second input style. */
.assess-other-field { margin-top: 12px; }
.assess-pill {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--line-2);
  background: var(--bg-1);
  border-radius: var(--r-sm);
  padding: 17px 14px;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--fg-1);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.assess-pill:hover { border-color: var(--brand); }
.assess-pill:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.assess-pill.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* ---------- radio / multi-select list ---------- */
.assess-opt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.assess-opt {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  /* Buttons inherit the UA stylesheet's text-align:center, which centers
     wrapped option text so a multi-line option's first line is indented
     relative to a single-line option's. Force left so every option's text
     anchors at the same x regardless of whether it wraps. */
  text-align: left;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 17px 18px;
  background: var(--bg-1);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.assess-opt:hover { border-color: var(--brand); }
.assess-opt.selected { border-color: var(--brand); background: var(--sky); }
.assess-opt:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.assess-opt-mark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid var(--line-2);
  transition: border-color .15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assess-opt-mark.radio { border-radius: 50%; }
.assess-opt-mark.checkbox { border-radius: 5px; }
.assess-opt.selected .assess-opt-mark { border-color: var(--brand); }
.assess-opt.selected .assess-opt-mark.checkbox { background: var(--brand); }
.assess-opt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); display: block; }
.assess-opt-check { width: 10px; height: 10px; display: block; }
/* flex:1 + min-width:0 makes the text column own all the remaining width
   with a deterministic wrap point, so the mark stays fixed and the text's
   left edge is identical in every option, single- or multi-line. */
.assess-opt-text { flex: 1; min-width: 0; font-size: 14.5px; line-height: 1.45; font-weight: 500; color: var(--fg-1); }

/* ---------- slider ---------- */
.assess-slider-block { padding: 6px 2px 0; }
.assess-slider-readout {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}
.assess-slider-readout .num {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--brand-hover);
}
.assess-slider-readout .unit { font-size: 14px; color: var(--fg-3); font-weight: 600; }
/* Height is the real touch/drag hit-box: 44px to actually clear the
   standard minimum (Apple HIG and WCAG 2.5.5 both use 44px), not just
   approximate it. The visible 6px bar is drawn on the track
   pseudo-elements, not the input's own box, so the tappable area is
   much taller than what's on screen. */
.assess-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 44px;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.assess-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-1);
}
.assess-slider::-moz-range-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-1);
}
.assess-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  margin-top: -8px; /* (track 6px - thumb 22px) / 2, centers thumb on the track */
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.assess-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand);
  cursor: pointer;
}
.assess-slider-scale { display: flex; justify-content: space-between; margin-top: 8px; }
.assess-slider-scale span { font-size: 11.5px; color: var(--fg-4); font-family: var(--font-mono); }

/* ---------- nav row ---------- */
.assess-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.assess-nav-row .btn:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; }

/* ---------- result + gate screen ---------- */
.assess-result-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.assess-result-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.assess-result-headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: var(--tracking-snug);
  color: var(--fg-1);
  margin: 0 0 28px;
}
.assess-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0 24px;
}
.assess-gauge {
  width: 232px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(14, 23, 48, 0.16));
}
.assess-gauge-tick {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  fill: var(--fg-3);
}
/* Crisp cut between zone colors, drawn on top at each internal
   boundary, rather than relying on a stroke-cap gap (see StageGauge's
   comment for why that approach broke). */
.assess-gauge-divider { stroke: #fff; stroke-width: 3; }
.assess-gauge-needle-wrap {
  transition: transform 1.1s cubic-bezier(.22,.9,.32,1);
}
/* A soft white halo under the needle keeps it legible crossing any of
   the four zone colors, instead of just relying on one dark tone. */
.assess-gauge-needle-halo { stroke: #fff; stroke-width: 7; }
.assess-gauge-needle { stroke: var(--ink-900); stroke-width: 3.5; }
.assess-gauge-pivot-ring { fill: #fff; stroke: var(--line-2); stroke-width: 1.5; }
.assess-gauge-pivot-dot { fill: var(--ink-900); }
.assess-gauge-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 6px;
}
.assess-result-teaser {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 22px;
}

/* Inline "what is APQC" trigger, sitting mid-sentence in the quartile
   teaser. The visible glyph (.assess-apqc-trigger) stays tiny so it
   doesn't disturb the sentence's line layout; the actual tap/click
   target is expanded to 44px via the ::after pseudo-element, which is
   absolutely positioned and centered on the glyph, so it overlaps
   neighboring text without pushing anything out of place. */
.assess-apqc-wrap { position: relative; display: inline-block; }
.assess-apqc-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  margin-left: 1px;
  padding: 0;
  border: none;
  background: none;
  color: var(--fg-4);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  vertical-align: super;
}
.assess-apqc-trigger:hover,
.assess-apqc-trigger:focus-visible { color: var(--brand); }
.assess-apqc-trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.assess-apqc-popover {
  --apqc-shift: 0px;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  width: 230px;
  max-width: calc(100vw - 24px);
  background: var(--ink-900);
  color: #fff;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  border-radius: var(--r-sm);
  padding: 10px 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(calc(-50% + var(--apqc-shift))) translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 20;
}
/* Lighter brand blue for contrast against the popover's dark --ink-900
   background (the base a{color:inherit} kit.css rule would render invisible
   here); underlined as the link affordance since nothing else in the
   popover is interactive. */
.assess-apqc-link {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: var(--blue-300);
  text-decoration: underline;
  font-weight: 500;
}
.assess-apqc-link:hover { color: #fff; }
.assess-apqc-link .ic { width: 12px; height: 12px; }
.assess-apqc-wrap:hover .assess-apqc-popover,
.assess-apqc-wrap:focus-within .assess-apqc-popover,
.assess-apqc-wrap.open .assess-apqc-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(calc(-50% + var(--apqc-shift))) translateY(0);
}
/* Higher specificity than the plain :hover rule above (two classes vs
   one), so a closing click wins over a cursor that hasn't moved yet. */
.assess-apqc-wrap.no-hover:hover .assess-apqc-popover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Flips to opening downward when there isn't enough clearance above the
   trigger (measured in JS, see the reposition() effect) -- otherwise
   the popover lands on top of the stage gauge, which always sits
   directly above the teaser paragraph the trigger lives in. */
.assess-apqc-wrap.open-down .assess-apqc-popover {
  bottom: auto;
  top: calc(100% + 8px);
  transform: translateX(calc(-50% + var(--apqc-shift))) translateY(-4px);
}
.assess-apqc-wrap.open-down:hover .assess-apqc-popover,
.assess-apqc-wrap.open-down:focus-within .assess-apqc-popover,
.assess-apqc-wrap.open-down.open .assess-apqc-popover {
  transform: translateX(calc(-50% + var(--apqc-shift))) translateY(0);
}
.assess-result-gate-copy {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 22px;
}
.assess-field-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.assess-field {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--fg-1);
  outline: none;
  transition: border-color .15s ease;
}
.assess-field:focus { border-color: var(--brand); }
.assess-field.invalid { border-color: var(--danger); }
.assess-gate-error {
  font-size: 13px;
  color: var(--danger);
  margin: 4px 0 0;
}
.assess-fine-print {
  font-size: 12px;
  color: var(--fg-4);
  margin-top: 14px;
  line-height: 1.5;
}
.assess-submit-btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ---------- confirmation ---------- */
.assess-confirm-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.assess-confirm-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: var(--tracking-snug);
  color: var(--fg-1);
}
.assess-confirm-body {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0 0 4px;
}
.assess-confirm-body b { color: var(--fg-1); }

@media (max-width: 560px) {
  .assess-page { padding: 32px 0 72px; }
  .assess-card { padding: 28px 22px; }
  .assess-pill-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .assess-question { font-size: 21px; }
}

/* ============================================================
   LANDING (pre-quiz intro). Scoped .al-*; tokens only, no new
   palette / type roles / spacing scale. Two-column editorial +
   product-visual hero, the same shape every other Mesh hero uses;
   the single bold element is .al-report, a real fragment of the
   two-page PDF. All .al-* class selectors are single-specificity
   and uniquely prefixed, so nothing here collides with .section /
   .cta / .hero spacing rules in kit.css.
   ============================================================ */
.al-page { background: var(--bg-0); }
/* Same container recipe as the nav and homepage hero (meshv6.css
   `body.meshv6home .nav .wrap` / `.meshv5 .hero-blue .wrap`): a
   min(100% - 96px, 1400px) box with NO inner padding, so the hero/band
   content-left edge rides the same outer edge as the nav logo at every width.
   A max-width + horizontal-padding recipe instead insets the text past the
   logo above a 1400px viewport (the reported misalignment). */
.al-wrap { width: min(100% - 96px, 1400px); max-width: none; margin: 0 auto; padding: 0; }

/* ---------- hero ---------- */
.al-hero { padding: var(--sp-9) 0 var(--sp-8); }
.al-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: var(--sp-8);
  align-items: center;
}
/* Deliberately larger than the site's 12px .eyebrow: these two section
   labels ("Accrual maturity assessment", "What you get") read as prominent
   kickers on the landing. Same class overrides .eyebrow (later in cascade,
   equal specificity). */
.al-eyebrow { font-size: var(--text-lg); margin-bottom: var(--sp-5); }
.al-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-snug);
  color: var(--ink-900);
  margin: 0;
  max-width: 16ch;
}
.al-lead {
  font-size: var(--text-xl);
  line-height: var(--leading-normal);
  color: var(--fg-2);
  margin: var(--sp-5) 0 0;
  max-width: 46ch;
}
.al-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
  flex-wrap: wrap;
}
.al-cost { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--fg-3); }

/* ---------- signature element: report preview ----------
   Small px + mono for data follow the site's own product-fragment
   miniature convention (kit.css .pf-* / .ce-* / .txc), which is
   also how the real PDF renders these two components. */
/* min-width:0 lets both grid children shrink below their content's
   intrinsic width when the hero stacks; without it the report card's stat
   row forces the column wider than a 390px viewport and clips the page. */
.al-hero-copy { min-width: 0; }
.al-hero-visual { display: flex; justify-content: center; min-width: 0; }
.al-report {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5);
  opacity: 0;
  transform: translateY(12px);
  animation: alReportRise .6s cubic-bezier(.2, .7, .2, 1) .08s forwards;
  /* Scales the whole card (padding, fonts, gaps, radii, everything inside)
     proportionally rather than just widening the box -- the same technique
     kit.css already uses to size up a faithful small mockup (.txc{zoom:1.18}),
     reused here instead of hand-tuning every internal px value. Reset to 1
     on mobile below, matching .txc's own mobile reset, since the card is
     already full-width there. */
  zoom: 1.2;
}
@keyframes alReportRise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .al-report { opacity: 1; transform: none; animation: none; }
}
.al-report-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-4);
}
.al-report-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fg-3);
}
.al-report-tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fg-3);
  border: 1px solid var(--line-1); border-radius: var(--r-pill); padding: 2px 8px;
}
.al-report-stats {
  display: flex;
  border-top: 0.75px solid var(--line-2);
  border-bottom: 0.75px solid var(--line-2);
  margin-bottom: var(--sp-4);
}
.al-report-stat {
  flex: 1; min-width: 0; padding: 9px 4px; text-align: center;
  border-left: 0.75px solid var(--line-1);
}
.al-report-stat:first-child { border-left: none; }
.al-report-stat-l {
  display: block; font-family: var(--font-mono); font-size: 8px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px;
}
.al-report-stat-v {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--ink-900);
}
.al-report-stat-v.accent { font-size: 12.5px; color: var(--blue-600); }
.al-report-scale { position: relative; padding-top: 15px; margin-bottom: var(--sp-5); }
/* value marker above the track; shares the marker's 38% offset so the label
   sits directly over the point (mirrors the PDF's "N days" scale label). */
.al-report-markval {
  position: absolute; top: 0; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  letter-spacing: .03em; color: var(--blue-600); white-space: nowrap;
}
.al-report-track {
  position: relative; display: flex; height: 16px;
  border-radius: var(--r-xs); overflow: hidden; border: 1px solid var(--line-1);
}
.al-report-band { flex: 1; height: 100%; }
.al-report-band + .al-report-band { border-left: 1.5px solid #fff; }
/* Soft but legible quartile tints: each existing semantic color mixed into
   white (same idea as the *-bg tokens, a touch deeper so the four zones read
   as distinct instead of washing out). color-mix is already used in kit.css. */
.al-report-band.bad  { background: color-mix(in srgb, var(--danger) 14%, #fff); }
.al-report-band.warn { background: color-mix(in srgb, var(--warning) 16%, #fff); }
.al-report-band.okay { background: color-mix(in srgb, var(--info) 12%, #fff); }
.al-report-band.good { background: color-mix(in srgb, var(--success) 14%, #fff); }
.al-report-marker {
  position: absolute; top: 50%; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand);
  transform: translate(-50%, -50%); box-shadow: var(--shadow-sm);
}
.al-report-marker::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  transform: translate(-50%, -50%);
}
.al-report-scale-labels { display: flex; justify-content: space-between; margin-top: 8px; }
.al-report-scale-labels span {
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--fg-3);
}
.al-report-stages { display: flex; flex-direction: column; gap: 2px; }
.al-report-stage {
  display: flex; align-items: baseline; gap: var(--sp-3);
  padding: 7px 8px; border-radius: var(--r-xs);
}
.al-report-stage.current {
  background: var(--sky); border-left: 2px solid var(--brand); padding-left: 6px;
}
.al-report-stage-n {
  flex: none; width: 62px;
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  color: var(--fg-3); display: flex; flex-direction: column; gap: 1px;
}
.al-report-stage.current .al-report-stage-n { color: var(--blue-600); }
.al-report-stage-tag {
  font-family: var(--font-mono); font-weight: 400; font-size: 8px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--blue-600);
}
.al-report-stage-name { font-size: 11.5px; font-weight: 600; color: var(--fg-1); }

/* ---------- "what you get" band ---------- */
.al-band { background: var(--bg-1); border-top: 1px solid var(--line-1); padding: var(--sp-9) 0; }
.al-band-head { max-width: 620px; }
.al-h2 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-4xl);
  line-height: var(--leading-snug); letter-spacing: var(--tracking-snug);
  color: var(--ink-900); margin: var(--sp-4) 0 0;
}
.al-get-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6); margin-top: var(--sp-7);
}
/* reuses kit.css .fli / .tick / .ft / .fd verbatim */
.al-deliverable {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: var(--sp-7); padding-top: var(--sp-6);
  border-top: 1px solid var(--line-1);
  font-size: var(--text-base); color: var(--fg-2); line-height: var(--leading-normal);
}
.al-deliverable .ic { width: 18px; height: 18px; color: var(--brand); flex: none; }
.al-deliverable b { color: var(--fg-1); font-weight: 600; }
.al-band .al-cta-row { margin-top: var(--sp-7); }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .al-hero { padding: var(--sp-8) 0 var(--sp-7); }
  .al-hero-grid { grid-template-columns: minmax(0, 1fr); gap: var(--sp-7); }
  .al-hero-visual { order: 2; }
  .al-h1 { font-size: var(--text-4xl); max-width: 20ch; }
  .al-get-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .al-band { padding: var(--sp-8) 0; }
}
@media (max-width: 560px) {
  .al-wrap { width: min(100% - 48px, 1400px); }
  .al-h1 { font-size: var(--text-3xl); }
  .al-lead { font-size: var(--text-lg); }
  .al-report { max-width: none; zoom: 1; }
  .al-cta-row .btn { width: 100%; justify-content: center; }
  .al-cost { width: 100%; }
}
