/* ==========================================================================
   Cornerstone Agility — "The Working Blueprint" design system (v3 rebuild)
   --------------------------------------------------------------------------
   Concept: the firm's own metaphor — cornerstone, blueprint, architecture —
   rendered literally. Light "drafting paper" surfaces, one saturated brand
   blue doing all the color work, hairline rules with a cornerstone tick,
   halftone dot texture from the white-paper design system, and a dark
   blueprint-sheet hero where all the visual boldness is spent.

   Deliberately avoided (per brief §7): all-caps eyebrows on every heading,
   identical rounded soft-shadow cards, arrows appended to links, numbered
   markers on non-sequences, cream/terracotta/serif and near-black/acid trends.

   Typefaces (2): Archivo (display, expanded widths) + IBM Plex Sans (body/UI).
   Mobile-first: authored at 375px and enhanced upward.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Blueprint scale — built outward from the confirmed brand #162bc7 */
  --blueprint-50:  #eef1fc;
  --blueprint-100: #dde3fa;
  --blueprint-200: #bcc7f4;
  --blueprint-300: #93a3ec;
  --blueprint-400: #6379e1;
  --blueprint-500: #3a4fd6;
  --blueprint-600: #162bc7;   /* brand primary */
  --blueprint-700: #1223a0;
  --blueprint-800: #101e7e;
  --blueprint-900: #0e1a63;
  --blueprint-950: #080f3a;

  /* Secondary: slate grey scale (confirmed brand values), white, and black.
     100–300 are light tints derived from the same slate hue for surfaces/rules. */
  --slate-100: #e7ebef;
  --slate-200: #cfd7dd;
  --slate-300: #a3b1bd;
  --slate-400: #6d8196;   /* confirmed */
  --slate-500: #607386;   /* confirmed */
  --slate-600: #546475;   /* confirmed */
  --slate-700: #485664;   /* confirmed */
  --slate-800: #3c4854;   /* confirmed */
  --slate-850: #303943;   /* confirmed */
  --slate-900: #242b32;   /* confirmed */
  --slate-950: #181d21;   /* confirmed — brand black */
  --ink:       var(--slate-950);

  /* Paper surfaces */
  --paper:       #ffffff;
  --paper-shade: #f4f6f8;

  /* Accent colors (confirmed palette reset) — each with one job:
     PRIMARY cobalt #162bc7 = main buttons (white text) & brand surfaces;
                              on dark sections the CTA inverts to a white button
     azure    #0055FF = interactive accent: in-text links, focus rings,
                        dark-surface interactive moments
     copper   #D47A55 = light-surface cornerstone ticks & small highlights
     canary   #FFE600 = alerts, dark-surface ticks, micro-highlights (ink text)
     apricot  #FFB796 = secondary borders, tags, card backgrounds
     tealmint #00E5FF = success checkmarks & live indicators (marks only);
                        --signal is its text-safe deep for numerals/labels */
  --accent-azure:         #0055ff;
  --accent-copper:        #d47a55;
  --accent-canary:        #ffe600;
  --accent-apricot:       #ffb796;
  --accent-apricot-soft:  #fff3ec;
  --accent-teal:          #00e5ff;
  --signal:               #007c93;
  --signal-soft:          #e0fafd;

  /* Linework */
  --rule: var(--slate-200);

  /* Type */
  --font-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-display: clamp(2rem, 1rem + 4.4vw, 4.3rem);
  --fs-h1:      clamp(2rem, 1.4rem + 2.6vw, 3.2rem);
  --fs-h2:      clamp(1.55rem, 1.2rem + 1.6vw, 2.3rem);
  --fs-h3:      clamp(1.18rem, 1.05rem + 0.6vw, 1.45rem);
  --fs-lead:    clamp(1.04rem, 1rem + 0.35vw, 1.22rem);

  /* Layout */
  --maxw:      1140px;
  --maxw-text: 720px;
  --gutter:    clamp(20px, 5vw, 44px);
  --section-y: clamp(56px, 8.5vw, 104px);

  /* Shape — square-ish, drafting-sheet corners, not pillowy cards */
  --radius:    4px;
  --radius-lg: 8px;

  --ease: cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.98rem + 0.1vw, 1.06rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { padding-left: 1.2em; }
button, input, textarea, select { font: inherit; color: inherit; }

a { color: var(--accent-azure); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(0, 85, 255, 0.35); transition: color 0.15s var(--ease), text-decoration-color 0.15s var(--ease); }
a:hover { color: var(--blueprint-600); text-decoration-color: var(--blueprint-600); }

:focus-visible { outline: 3px solid var(--accent-azure); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-stretch: 115%; }

/* ---------- Primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--shade { background: var(--paper-shade); }
.section--ink { background: var(--ink); color: var(--slate-300); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.measure { max-width: var(--maxw-text); }
.lead { font-size: var(--fs-lead); color: var(--slate-600); line-height: 1.6; }
.section--ink .lead { color: var(--slate-300); }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--blueprint-600); color: #fff; padding: 12px 18px; border-radius: var(--radius); text-decoration: none; transition: top 0.2s var(--ease); }
.skip-link:focus { top: 16px; color: #fff; }

/* Cornerstone rule — a hairline with a small filled square at its origin.
   The single recurring brand mark; used at section tops, not on every heading. */
.corner-rule {
  position: relative; height: 1px; background: var(--rule); border: 0; margin: 0 0 clamp(1.6rem, 3.5vw, 2.6rem);
}
.corner-rule::before { content: ""; position: absolute; left: 0; top: -3.5px; width: 8px; height: 8px; background: var(--accent-copper); }
.section--ink .corner-rule { background: rgba(255,255,255,0.16); }
.section--ink .corner-rule::before { background: var(--accent-canary); }

/* Figure label — small technical annotation used ONLY on genuine figures
   (metric plates, charts), in the manner of a drafting sheet. */
.fig-label {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500);
  font-variant-numeric: tabular-nums;
}

/* Section heading group */
.headgroup { max-width: 760px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.headgroup h2 { font-size: var(--fs-h2); }
.headgroup p { margin-top: 0.9rem; font-size: var(--fs-lead); color: var(--slate-600); }
.section--ink .headgroup p { color: var(--slate-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.99rem; line-height: 1;
  min-height: 48px; padding: 0.85em 1.5em;
  border-radius: var(--radius); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.btn--primary { background: var(--blueprint-600); color: #fff; }
.btn--primary:hover { background: var(--blueprint-700); color: #fff; box-shadow: 0 6px 18px -8px rgba(22,43,199,0.55); }
.btn--outline { background: transparent; color: var(--blueprint-700); border-color: var(--slate-300); }
.btn--outline:hover { border-color: var(--blueprint-600); color: var(--blueprint-700); background: var(--blueprint-50); }
.btn--light { background: #fff; color: var(--blueprint-800); }
.btn--light:hover { background: var(--blueprint-50); color: var(--blueprint-900); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn--lg { min-height: 52px; padding: 1em 1.8em; font-size: 1.02rem; }

/* ---------- Header / navigation ----------
   Solid white header (no backdrop-filter: it creates a containing block that
   breaks position:fixed drawers). Drawer lives as a sibling of the header. */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--rule); box-shadow: 0 1px 2px rgba(16,20,43,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.nav__logo { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav__logo img { height: 34px; width: auto; }
.nav__right { display: flex; align-items: center; gap: 0.5rem; }

.nav__toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px; margin-right: -10px;
  background: transparent; border: 0; cursor: pointer; border-radius: var(--radius);
}
.nav__toggle span { display: block; height: 2px; width: 100%; background: var(--ink); transition: transform 0.28s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu { display: none; }
.nav__actions { display: none; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: 72px 0 0 0; z-index: 99;
  background: var(--paper);
  padding: 10px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.nav__drawer.is-open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .nav__drawer { transition: none; } }
.drawer-list { list-style: none; padding: 0; margin: 0; }
.drawer-list > li { border-bottom: 1px solid var(--slate-100); }
.drawer-list a { display: block; padding: 14px 2px; text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1.05rem; }
.drawer-list a:hover { color: var(--blueprint-700); }
.drawer-group__label { display: block; padding: 16px 2px 4px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-500); }
.drawer-sub { list-style: none; padding: 0 0 8px; margin: 0; }
.drawer-sub a { padding: 9px 2px; font-weight: 400; color: var(--slate-600); font-size: 0.98rem; }
.nav__drawer .btn { margin-top: 22px; width: 100%; }
body.nav-open { overflow: hidden; }

/* Desktop nav */
@media (min-width: 1024px) {
  .nav__toggle { display: none; }
  .nav__drawer { display: none; }
  .nav__right { gap: 1.1rem; }
  .nav__menu { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
  .nav__menu > li { position: relative; }
  .nav__menu > li > a {
    display: inline-flex; align-items: center; gap: 0.3em;
    padding: 0.55rem 0.8rem; border-radius: var(--radius);
    color: var(--slate-700); font-weight: 500; font-size: 0.97rem; text-decoration: none;
  }
  .nav__menu > li > a:hover { color: var(--blueprint-700); background: var(--blueprint-50); }
  .nav__menu .caret { width: 9px; height: 9px; opacity: 0.55; }
  .nav__sub {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 260px; background: var(--paper); border: 1px solid var(--rule);
    border-top: 2px solid var(--blueprint-600);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 18px 40px -18px rgba(16,20,43,0.28);
    padding: 8px; list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
  }
  .nav__menu > li:hover .nav__sub, .nav__menu > li:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__sub::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
  .nav__sub a { display: block; padding: 9px 11px; border-radius: var(--radius); color: var(--slate-700); font-weight: 500; font-size: 0.94rem; line-height: 1.35; text-decoration: none; }
  .nav__sub a small { display: block; color: var(--slate-500); font-weight: 400; font-size: 0.8rem; }
  .nav__sub a:hover { background: var(--blueprint-50); color: var(--blueprint-700); }
  .nav__actions { display: inline-flex; }
}

/* ---------- Hero — the blueprint sheet ----------
   The one place visual boldness is spent: a deep blue field with soft
   layered glows (industry-standard treatment) inside a hairline drafting
   frame with corner ticks. No pattern textures. */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(1100px 640px at 82% -18%, rgba(74, 96, 226, 0.55) 0%, rgba(74, 96, 226, 0) 58%),
    radial-gradient(760px 520px at -6% 112%, rgba(38, 58, 200, 0.4) 0%, rgba(38, 58, 200, 0) 62%),
    linear-gradient(168deg, var(--blueprint-800) 0%, var(--blueprint-900) 52%, var(--blueprint-950) 100%);
  color: #fff;
  padding-block: clamp(20px, 4vw, 44px);
}
.hero__sheet {            /* hairline frame with drafting corner ticks */
  position: relative;
  border: 1px solid rgba(255,255,255,0.22);
  padding: clamp(30px, 7vw, 84px) clamp(20px, 5vw, 72px);
}
.hero__sheet::before, .hero__sheet::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
}
.hero__sheet::before { top: -1px; left: -1px; border-top: 2px solid #fff; border-left: 2px solid #fff; }
.hero__sheet::after { bottom: -1px; right: -1px; border-bottom: 2px solid #fff; border-right: 2px solid #fff; }
.hero__plate {            /* drafting title block, top edge of the sheet */
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blueprint-200);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.hero__plate::before { content: ""; width: 8px; height: 8px; background: var(--accent-canary); }
.hero h1 {
  color: #fff;
  font-size: var(--fs-display);
  font-stretch: 100%;   /* fits "Unrecognizable." at 375px; widens upscreen */
  font-weight: 800;
  line-height: 1.04;
  max-width: 16ch;
}
@media (min-width: 700px) { .hero h1 { font-stretch: 118%; line-height: 1.02; } }
.hero__sub { margin-top: 1.3rem; max-width: 560px; font-size: var(--fs-lead); color: var(--blueprint-100); line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.9rem; }
.hero__trust {
  margin-top: clamp(1.6rem, 4vw, 2.4rem); padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.92rem; color: var(--blueprint-200); max-width: 560px;
}
.hero__trust strong { color: #fff; font-weight: 600; }

/* ---------- Proof band — figure plates ----------
   Metrics rendered as drafting figures: hairline-ruled plates, tabular
   numerals, a genuine figure label on each. Real text, never an image. */
.proof { border-block: 1px solid var(--rule); background: var(--paper); }
.proof__grid { display: grid; grid-template-columns: 1fr; }
.proof__item {
  padding: clamp(1.4rem, 3.5vw, 2rem) 0.25rem;
  border-bottom: 1px solid var(--rule);
}
.proof__item:last-child { border-bottom: 0; }
.proof__num {
  font-family: var(--font-display); font-stretch: 110%; font-weight: 800;
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.3rem); line-height: 1;
  color: var(--blueprint-600); font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.proof__num .unit { font-size: 0.55em; font-weight: 700; }
.proof__label { margin-top: 0.55rem; color: var(--slate-600); font-size: 0.95rem; line-height: 1.45; max-width: 30ch; }
.proof__item .fig-label { display: block; margin-bottom: 0.7rem; }
.proof__item--signal .proof__num { color: var(--signal); }
@media (min-width: 700px) {
  .proof__grid { grid-template-columns: repeat(2, 1fr); gap: 0 clamp(2rem, 4vw, 3.5rem); }
  .proof__item:nth-last-child(2) { border-bottom: 0; }
}
@media (min-width: 1024px) {
  .proof__grid { grid-template-columns: repeat(4, 1fr); }
  .proof__item { border-bottom: 0; border-right: 1px solid var(--rule); padding-inline: clamp(1.2rem, 2.5vw, 2rem); }
  .proof__item:first-child { padding-left: 0.25rem; }
  .proof__item:last-child { border-right: 0; }
}

/* Guaranteed-to-run badge — the only use of signal green besides its plate */
.badge-guaranteed {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.8rem; font-weight: 600; color: var(--signal);
  background: var(--signal-soft); border: 1px solid rgba(0,229,255,0.45);
  padding: 0.35em 0.75em; border-radius: var(--radius);
}
.badge-guaranteed::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-teal); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--slate-400); padding-block: clamp(2.8rem, 6vw, 4rem) 1.8rem; }
.site-footer a { color: var(--slate-300); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--accent-azure); }
.footer-top { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 320px; font-size: 0.94rem; color: var(--slate-400); }
.footer-contact { margin-top: 1.2rem; display: grid; gap: 0.35rem; font-size: 0.92rem; }
.footer-contact span { color: var(--slate-500); }
.footer-cols { display: grid; gap: 1.8rem; grid-template-columns: 1fr 1fr; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.94rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); display: grid; place-items: center; transition: border-color 0.16s var(--ease), background 0.16s var(--ease); }
.footer-social a:hover { border-color: var(--blueprint-400); background: rgba(22,43,199,0.25); text-decoration: none; }
.footer-social svg { width: 17px; height: 17px; fill: var(--slate-300); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.85rem; color: var(--slate-500); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.1rem; }
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.2fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ==========================================================================
   Design pass — the signature moment: "Unrecognizable." resolves.
   One orchestrated entrance; everything else on the page stays still.
   ========================================================================== */
.heroX {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(1100px 640px at 82% -18%, rgba(74, 96, 226, 0.5) 0%, rgba(74, 96, 226, 0) 58%),
    radial-gradient(760px 520px at 6% 110%, rgba(255, 183, 150, 0.14) 0%, rgba(255, 183, 150, 0) 58%),
    radial-gradient(640px 460px at 96% 30%, rgba(0, 229, 255, 0.12) 0%, rgba(0, 229, 255, 0) 60%),
    linear-gradient(168deg, var(--blueprint-600) 0%, #101d86 48%, #0b1147 100%);
  color: #fff;
  padding-block: clamp(72px, 14vw, 150px) clamp(56px, 9vw, 104px);
}
.heroX__dots {              /* the medium: data resolving into form, then gone */
  position: absolute; inset: -6%; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.55) 1.4px, transparent 1.8px);
  background-size: 19px 19px;
  mask-image: radial-gradient(120% 100% at 60% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 100% at 60% 30%, #000 30%, transparent 80%);
  opacity: 0;
  animation: hxDots 1.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s both;
}
.heroX .container { position: relative; z-index: 1; }
.heroX__h { display: block; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.heroX__kick {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 78, 'wght' 500;
  font-size: clamp(1.5rem, 4.6vw, 2.9rem);
  color: var(--blueprint-200);
  margin-bottom: 0.25em;
}
.heroX__word {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 105, 'wght' 800;
  font-size: clamp(2.05rem, 8.6vw, 6.6rem);
  line-height: 1.02;
  animation: hxResolve 1.25s cubic-bezier(0.2, 0.7, 0.15, 1) 0.15s both;
  will-change: font-variation-settings, filter, opacity;
}
.heroX__tail {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 96, 'wght' 700;
  font-size: clamp(1.55rem, 4.9vw, 3.4rem);
  margin-top: 0.28em;
}
.heroX__after {             /* everything after the word: one grouped, late entrance */
  animation: hxAfter 0.7s ease-out 1.05s both;
}
.heroX__sub { margin-top: 1.5rem; max-width: 34em; font-size: var(--fs-lead); color: var(--blueprint-100); line-height: 1.6; }
.heroX__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.9rem; }
.heroX__proof {
  margin-top: clamp(1.8rem, 5vw, 2.8rem); padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 0.95rem; color: var(--blueprint-200); max-width: 34em;
}
.heroX__proof strong { color: #fff; font-weight: 600; }

@keyframes hxResolve {
  0%   { font-variation-settings: 'wdth' 62, 'wght' 200; opacity: 0.12; filter: blur(14px); letter-spacing: 0.06em; }
  55%  { opacity: 0.85; filter: blur(3px); }
  100% { font-variation-settings: 'wdth' 105, 'wght' 800; opacity: 1; filter: blur(0); letter-spacing: -0.02em; }
}
@keyframes hxDots {
  0%   { opacity: 0.5; transform: scale(1.12); }
  70%  { opacity: 0.22; }
  100% { opacity: 0; transform: none; }
}
@keyframes hxAfter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .heroX__word, .heroX__after, .heroX__dots { animation: none !important; }
  .heroX__dots { opacity: 0; }
}

/* ==========================================================================
   Design pass v2 — vivid cobalt field, the halftone form, new section species
   ========================================================================== */
/* "The Ascent" — thin rising paths converging on one destination; six
   unlabeled waypoints (the Blueprint steps). Draws itself in once. */
.asc {
  position: absolute; z-index: 0; pointer-events: none;
  right: -4%; bottom: -4%;
  width: clamp(340px, 54vw, 700px); height: auto;
}
.asc__p {
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: ascDraw 1.7s cubic-bezier(0.3, 0.6, 0.2, 1) 0.25s forwards;
}
.asc__p--faint { animation-delay: 0.45s; }
.asc__nodes { opacity: 0; animation: ascNodes 0.6s ease-out 1.5s forwards; }
@keyframes ascDraw { to { stroke-dashoffset: 0; } }
@keyframes ascNodes { to { opacity: 1; } }
@media (max-width: 700px) {
  .asc { right: -16%; bottom: -2%; width: 108vw; opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) {
  .asc__p { animation: none; stroke-dashoffset: 0; }
  .asc__nodes { animation: none; opacity: 1; }
}

/* ---------- Pull statement: centered, coupled to the logo ledger below ---------- */
.band-pull { text-align: center; padding-block: clamp(3.6rem, 8.5vw, 6.5rem) clamp(1.6rem, 3.5vw, 2.4rem); }
.band-pull h2 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 96, 'wght' 700;
  font-size: clamp(1.5rem, 4.2vw, 2.7rem);
  line-height: 1.22; letter-spacing: -0.02em;
  max-width: 30ch; margin-inline: auto; color: var(--ink);
  text-wrap: balance;
}
.band-ledger--coupled { border-top: 0; }

/* ---------- Logo ledger: full-bleed, borderless, quiet ---------- */
.band-ledger {
  border-block: 1px solid var(--rule);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  background: var(--paper);
}
.ledger-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.6rem, 4vw, 3.2rem) clamp(2rem, 5vw, 3.6rem);
}
.ledger-row img {
  max-height: 34px; width: auto; max-width: 138px; object-fit: contain;
  filter: grayscale(1); opacity: 0.72;
  transition: filter 0.18s var(--ease), opacity 0.18s var(--ease);
}
.ledger-row img:hover { filter: none; opacity: 1; }
.ledger-row .ledger-mark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--slate-600);
}
.ledger-row .ledger-mark img { max-height: 24px; }

/* ---------- Stat band: the numbers, seen ---------- */
.band-stat {
  background: linear-gradient(170deg, #101d86 0%, #0b1147 100%);
  color: #fff;
  padding-block: clamp(3.6rem, 9vw, 6.5rem);
}
.band-stat__grid { display: grid; gap: clamp(2.2rem, 6vw, 2.8rem); grid-template-columns: 1fr; }
@media (min-width: 820px) { .band-stat__grid { grid-template-columns: repeat(3, 1fr); } }
.stat-x { border-left: 2px solid rgba(255,255,255,0.25); padding-left: clamp(1rem, 2.5vw, 1.6rem); }
.stat-x__num {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 62, 'wght' 760;
  font-size: clamp(4.2rem, 15vw, 7.5rem);
  line-height: 0.92; letter-spacing: -0.01em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-x__num .u { font-size: 0.45em; font-variation-settings: 'wdth' 80, 'wght' 700; }
.stat-x__label { margin-top: 0.7rem; color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 24ch; }
.stat-x--pulse .stat-x__num { color: var(--accent-teal); }
.stat-x--pulse { border-left-color: rgba(0,229,255,0.5); }

/* Blanket scroll-reveal removed: the hero entrance is the only page-load motion. */

/* ---------- Pass 2: section vocabulary for the rest of the page ---------- */
.headgroup--statement h2 {
  font-variation-settings: 'wdth' 96, 'wght' 700;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.14; letter-spacing: -0.02em; max-width: 24ch;
}
/* Full-bleed split: the image runs to the viewport edge */
.feature--bleed .feature__media img { border: 0; border-radius: 0; aspect-ratio: 3 / 2; }
@media (max-width: 859px) {
  .feature--bleed .feature__media { margin-inline: calc(-1 * var(--gutter)); }
}
@media (min-width: 860px) {
  .feature--bleed .feature__media { margin-left: calc(50% - 50vw); }
  .feature--bleed .feature__media img { min-height: 440px; height: 100%; object-fit: cover; aspect-ratio: auto; }
  .feature--bleed.feature--reverse .feature__media { margin-left: 0; margin-right: calc(50% - 50vw); }
}
/* The interrupt: the closing band breaks the boundary above the footer */
.pad-b-deep { padding-bottom: clamp(8rem, 15vw, 11rem) !important; }
.pull-up { background: transparent !important; padding-block: 0 clamp(2.5rem, 5vw, 4rem) !important; margin-top: clamp(-6rem, -9vw, -4rem); position: relative; z-index: 2; }

/* ==========================================================================
   Interior page components
   ========================================================================== */

/* ---------- Page hero (compact dark band) ---------- */
.pagehero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -30%, rgba(74, 96, 226, 0.5) 0%, rgba(74, 96, 226, 0) 60%),
    linear-gradient(168deg, var(--blueprint-800) 0%, var(--blueprint-900) 55%, var(--blueprint-950) 100%);
  color: #fff;
  padding-block: clamp(44px, 7vw, 88px);
}
.pagehero h1 { color: #fff; font-size: var(--fs-h1); max-width: 22ch; margin-top: 0.9rem; }
.pagehero__sub { margin-top: 1rem; max-width: 600px; font-size: var(--fs-lead); color: var(--blueprint-100); line-height: 1.6; }
.pagehero .hero__cta { margin-top: 1.7rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5em; font-size: 0.84rem; color: var(--blueprint-200); }
.breadcrumbs a { color: var(--blueprint-100); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs span { opacity: 0.55; }

/* ---------- Layout helpers ---------- */
.grid-2 { display: grid; gap: clamp(1.4rem, 4vw, 3rem); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 700px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.split-head { display: grid; gap: 1.2rem; align-items: end; margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
@media (min-width: 820px) { .split-head { grid-template-columns: 1fr auto; } }

/* ---------- Feature split (image + body) ---------- */
.feature { display: grid; gap: clamp(1.8rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
.feature__media img { width: 100%; border: 1px solid var(--rule); border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4 / 3; }
.feature__body h2 { font-size: var(--fs-h2); }
.feature__body > p { margin-top: 1rem; color: var(--slate-600); }
.feature__body .btn { margin-top: 1.5rem; }
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--reverse .feature__media { order: 2; }
}

/* ---------- Client logo wall (real text, indexable, accessible) ---------- */
.logowall { display: grid; gap: 0.8rem; grid-template-columns: repeat(2, 1fr); }
.logowall__item {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 74px; padding: 0.9rem 1rem;
  border: 1px solid var(--rule); border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.01em; color: var(--slate-600);
  transition: border-color 0.16s var(--ease), color 0.16s var(--ease);
}
.logowall__item:hover { border-color: var(--slate-400); color: var(--ink); }
.logowall__item { gap: 0.55rem; }
.logowall__item img {
  max-height: 38px; width: auto; max-width: 92%; object-fit: contain;
  filter: grayscale(1); opacity: 0.82;
  transition: filter 0.18s var(--ease), opacity 0.18s var(--ease);
}
.logowall__item--mark img { max-height: 26px; }
.logowall__item:hover img { filter: none; opacity: 1; }
.logowall__sector { grid-column: 1 / -1; margin: 0.8rem 0 0.1rem; }
.logowall__sector:first-child { margin-top: 0; }
@media (min-width: 640px) { .logowall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logowall { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Service / generic index cards (hairline, no soft-shadow clones) ---------- */
.svc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--paper);
  text-decoration: none; color: inherit;
  transition: border-color 0.18s var(--ease);
}
.svc-card::before {          /* cornerstone tick, reveals on hover */
  content: ""; position: absolute; top: -1px; left: -1px; width: 10px; height: 10px;
  background: var(--accent-copper); opacity: 0; transition: opacity 0.18s var(--ease);
}
.svc-card:hover { border-color: var(--slate-400); }
.svc-card:hover::before { opacity: 1; }
.svc-card h3 { font-size: 1.22rem; }
.svc-card__tag { font-family: var(--font-display); font-weight: 600; color: var(--blueprint-700); margin-top: 0.35rem; font-size: 0.98rem; }
.svc-card p { color: var(--slate-600); font-size: 0.96rem; margin-top: 0.7rem; flex-grow: 1; }
.svc-card .svc-card__go { margin-top: 1.1rem; font-weight: 600; color: var(--accent-azure); font-size: 0.94rem; }

/* ---------- Blueprint step sequence (numbered: it IS a sequence) ---------- */
.stepseq { counter-reset: step; display: grid; gap: 0.9rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .stepseq { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .stepseq { grid-template-columns: repeat(3, 1fr); } }
.stepseq__item {
  position: relative; border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.4rem 1.4rem; background: var(--paper);
}
.stepseq__item::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--accent-copper); letter-spacing: 0.06em;
  display: block; margin-bottom: 0.6rem;
}
.stepseq__item h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.stepseq__item p { color: var(--slate-600); font-size: 0.95rem; }

/* ---------- Training schedule ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.chip {
  font-size: 0.88rem; font-weight: 600; padding: 0.5em 1em; border-radius: var(--radius);
  border: 1px solid var(--rule); background: var(--paper); color: var(--slate-600); cursor: pointer;
  transition: all 0.15s var(--ease); min-height: 44px;
}
.chip:hover { border-color: var(--blueprint-400); color: var(--blueprint-700); }
.chip.is-active { background: var(--blueprint-600); color: #fff; border-color: var(--blueprint-600); }

.sessions { display: grid; gap: 0.8rem; }
.session {
  display: grid; gap: 0.7rem; align-items: center;
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.15rem 1.3rem; background: var(--paper);
  grid-template-columns: 1fr;
}
.session--open { border-left: 3px solid var(--blueprint-600); }
.session--request { border-left: 3px solid var(--slate-200); }
.session__course { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; }
.session__course a { color: var(--ink); text-decoration: none; }
.session__course a:hover { color: var(--blueprint-700); text-decoration: underline; }
.session__meta { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; font-size: 0.9rem; color: var(--slate-600); }
.session__meta strong { color: var(--ink); font-weight: 600; }
.session__price { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.session__cta { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
@media (min-width: 900px) {
  .session { grid-template-columns: 1.6fr 1.8fr auto auto; }
}

/* ---------- Alerts & notes ---------- */
.alert {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--accent-canary); color: var(--ink);
  border-radius: var(--radius); padding: 0.85rem 1.1rem;
  font-size: 0.93rem; font-weight: 500;
}
.note { font-size: 0.86rem; color: var(--slate-500); }

/* ---------- Tags (apricot) ---------- */
.tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: #7a3f22; background: var(--accent-apricot-soft);
  border: 1px solid var(--accent-apricot);
  padding: 0.28em 0.7em; border-radius: var(--radius);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }

/* ---------- Quotes ---------- */
.quote-lead {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 1rem + 1.4vw, 1.8rem); line-height: 1.4;
  letter-spacing: -0.01em; color: var(--ink); max-width: 800px;
}
.quote-lead::before { content: "\201C"; color: var(--accent-copper); }
.quote-lead::after { content: "\201D"; color: var(--accent-copper); }
.quote-who { margin-top: 1rem; font-size: 0.95rem; color: var(--slate-600); }
.quote-who strong { color: var(--ink); }
.quote-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .quote-grid { grid-template-columns: 1fr 1fr 1fr; } }
.quote-card { border-left: 2px solid var(--blueprint-200); padding-left: 1.1rem; }
.quote-card blockquote { font-size: 0.97rem; color: var(--slate-700); line-height: 1.6; }
.quote-card figcaption { margin-top: 0.7rem; font-size: 0.86rem; font-weight: 600; color: var(--slate-500); }
.endorser-row { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .endorser-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .endorser-row { grid-template-columns: repeat(5, 1fr); } }
.endorser {
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.endorser strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.endorser span { display: block; margin-top: 0.25rem; font-size: 0.83rem; color: var(--slate-500); line-height: 1.4; }

/* ---------- Metric bars (case study chart) ---------- */
.bars { display: grid; gap: 1.1rem; max-width: 640px; }
.bar__label { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--slate-600); margin-bottom: 0.35rem; }
.bar__label strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.bar__track { height: 12px; background: var(--slate-100); border-radius: 3px; overflow: hidden; }
.bar__fill { height: 100%; background: var(--blueprint-600); border-radius: 3px; }

/* ---------- Insights cards ---------- */
.insight-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .insight-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .insight-grid { grid-template-columns: repeat(3, 1fr); } }
.insight-card {
  display: flex; flex-direction: column; border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.4rem; background: var(--paper);
  transition: border-color 0.18s var(--ease);
}
.insight-card:hover { border-color: var(--slate-400); }
.insight-card__type {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--blueprint-700); margin-bottom: 0.7rem;
}
.insight-card h3 { font-size: 1.15rem; line-height: 1.3; }
.insight-card h3 a { color: var(--ink); text-decoration: none; }
.insight-card h3 a:hover { color: var(--blueprint-700); text-decoration: underline; }
.insight-card p { color: var(--slate-600); font-size: 0.94rem; margin-top: 0.6rem; flex-grow: 1; }
.insight-card__meta { margin-top: 1rem; font-size: 0.83rem; color: var(--slate-500); }

/* ---------- Books ---------- */
.book-row { display: grid; gap: clamp(1.6rem, 4vw, 2.6rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .book-row { grid-template-columns: repeat(3, 1fr); } }
.book { display: flex; flex-direction: column; }
.book__cover { margin-bottom: 1.2rem; }
.book__cover img { width: 100%; max-width: 250px; filter: drop-shadow(0 18px 28px rgba(16,20,43,0.28)); }
.book__typo {
  aspect-ratio: 2 / 3; max-width: 250px; width: 100%;
  border-radius: 4px 10px 10px 4px; padding: 1.4rem 1.2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 18px 28px rgba(16,20,43,0.28);
  color: #fff; font-family: var(--font-display);
}
.book__typo--indigo { background: linear-gradient(160deg, var(--blueprint-700), var(--blueprint-950)); }
.book__typo--slate { background: linear-gradient(160deg, var(--slate-700), var(--slate-950)); }
.book__typo--plum { background: linear-gradient(160deg, #6a2f8f 0%, #43227e 55%, #1c1550 100%); }
.book__typo .strike {
  position: relative; white-space: nowrap;
}
.book__typo .strike::after {          /* taped-over word, like the printed cover */
  content: ""; position: absolute; left: -3%; right: -3%; top: 42%; height: 0.42em;
  background: rgba(60, 130, 246, 0.85); transform: rotate(-2deg); border-radius: 2px;
}
.book__typo .t { font-weight: 700; font-size: 1.25rem; line-height: 1.15; letter-spacing: -0.01em; }
.book__typo .a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.book h3 { font-size: 1.2rem; }
.book p { color: var(--slate-600); font-size: 0.95rem; margin-top: 0.6rem; }
.book .btn { margin-top: 1.1rem; align-self: flex-start; }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card {
  display: flex; flex-direction: column; border: 1px solid var(--rule);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color 0.18s var(--ease);
}
.team-card:hover { border-color: var(--slate-400); }
.team-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%; }
.team-card__body { padding: 1.3rem 1.4rem 1.5rem; }
.team-card h3 { font-size: 1.25rem; }
.team-card .role { color: var(--blueprint-700); font-weight: 600; font-size: 0.92rem; margin-top: 0.25rem; }
.team-card p { color: var(--slate-600); font-size: 0.94rem; margin-top: 0.7rem; }
.headshot { width: 100%; max-width: 380px; border-radius: var(--radius-lg); border: 1px solid var(--rule); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.05rem; max-width: 560px; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--slate-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.8em 0.95em; border-radius: var(--radius);
  border: 1.5px solid var(--slate-200); background: var(--paper); color: var(--ink);
  min-height: 48px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent-azure); box-shadow: 0 0 0 3px rgba(0,85,255,0.15);
}
.form-success {
  display: none; padding: 0.95rem 1.15rem; border-radius: var(--radius);
  background: var(--signal-soft); color: var(--signal); font-weight: 500;
  border: 1px solid rgba(0,229,255,0.5);
}
.form-success.is-visible { display: block; }

/* ---------- Definition rows (course facts, engagement phases) ---------- */
.facts { display: grid; gap: 0; border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.facts__row { display: grid; grid-template-columns: 1fr; gap: 0.15rem; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--rule); background: var(--paper); }
.facts__row:last-child { border-bottom: 0; }
.facts__row dt { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--slate-500); }
.facts__row dd { margin: 0; color: var(--ink); font-weight: 500; }
@media (min-width: 640px) { .facts__row { grid-template-columns: 220px 1fr; align-items: baseline; } }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.65rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--slate-700); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.33em; width: 1.05rem; height: 1.05rem;
  background: var(--signal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 18.2 3.3 11.95l1.4-1.4 4.85 4.85L19.3 5.65l1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.55 18.2 3.3 11.95l1.4-1.4 4.85 4.85L19.3 5.65l1.4 1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.section--ink .checklist li { color: var(--slate-300); }
.section--ink .checklist li::before { background: var(--accent-teal); }

/* ---------- Live Humanitix calendar embed ---------- */
.live-cal {
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  background: var(--paper); padding: clamp(0.6rem, 2vw, 1.2rem);
}
.live-cal iframe { display: block; width: 100%; border: 0; min-height: 620px; }

/* ---------- Lede media (wide opener image under a section headgroup) ---------- */
.lede-media { margin: 0 0 clamp(1.6rem, 4vw, 2.4rem); }
.lede-media img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border: 1px solid var(--rule); border-radius: var(--radius-lg); }

/* ---------- Article prose ---------- */
.prose { max-width: var(--maxw-text); font-size: 1.06rem; line-height: 1.75; color: var(--slate-700); }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: clamp(1.4rem, 1.15rem + 1.2vw, 1.85rem); margin-top: 2.4rem; color: var(--ink); }
.prose h3 { font-size: 1.25rem; margin-top: 1.9rem; }
.prose blockquote { border-left: 2px solid var(--accent-copper); padding-left: 1.2rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li + li { margin-top: 0.45rem; }
.byline { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--rule); }
.byline__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--blueprint-600); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
}
.byline strong { display: block; color: var(--ink); }
.byline span { font-size: 0.86rem; color: var(--slate-500); }

/* ---------- Conversion band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(700px 420px at 50% -30%, rgba(74, 96, 226, 0.55) 0%, rgba(74, 96, 226, 0) 60%),
    linear-gradient(168deg, var(--blueprint-700) 0%, var(--blueprint-900) 60%, var(--blueprint-950) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 4.4rem) clamp(1.4rem, 5vw, 3.5rem);
}
.cta-band h2 { color: #fff; font-size: var(--fs-h2); }
.cta-band p { margin: 0.9rem auto 0; max-width: 560px; color: var(--blueprint-100); font-size: var(--fs-lead); }
.cta-band .hero__cta { justify-content: center; margin-top: 1.8rem; }

/* ---------- Demo toast (stub links for not-yet-built pages) ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%);
  z-index: 300; background: var(--ink); color: #fff; font-size: 0.92rem; font-weight: 500;
  padding: 0.8rem 1.2rem; border-radius: var(--radius); border-left: 3px solid var(--blueprint-400);
  box-shadow: 0 18px 40px -14px rgba(16,20,43,0.5);
  display: flex; align-items: center; gap: 0.6rem; max-width: calc(100vw - 32px);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); opacity: 0;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
