/* ============================================================
   stantscherenkow.com · /craft/ · shared visual system
   Editorial / luxury treatment carried over from the new
   agents specimen. Used by every page under /craft/.
   No page should redefine these classes; add a per-page
   modifier in inline <style> only when content demands it.
   ============================================================ */

/* ---------- TOKENS ----------
   Tokens mirror the locked v2 palette (v2.css). Re-declared here
   because /craft pages currently load only craft.css. If a future
   change links v2.css globally, drop this block.
   ----------
   Locked v2 tokens, identical to v2.css:
     --paper, --bone, --ivory, --ink, --ink-soft, --ink-mute,
     --rule, --fire, --steel, --ochre, --tier-1/2/3.
   Craft-local extension (not in v2):
     --ochre-deep, used only as the marker or accent color on the
     AI swim-lane (cf-scope, cf-split). Adds a deeper ochre tone so
     the "AI assists" column is visually distinct from the human
     and never-AI columns. If formalised, promote to v2 palette and
     remove from here.
   ---------- */
:root {
  --white:      #FFFFFF;
  --paper:      #F4EFE7;
  --bone:       #EDE8DB;
  --ivory:      #E8E1CF;
  --ink:        #111111;
  --ink-soft:   #404756;
  --ink-mute:   #707788;
  --rule:       #D4CFC3;
  --rule-soft:  rgba(244, 239, 231, 0.18);

  --fire:       #C94A1A;
  --steel:      #5C7C9F;
  --ochre:      #C9A227;
  --tier-1:     #A04040;
  --tier-2:     #5C1A1A;
  --tier-3:     #3A1010;

  /* Craft-local extension. See note above. */
  --ochre-deep: #A78216;

  --container:  1180px;
  --gutter:     48px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; }
h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

/* ---------- TOP RIBBON ---------- */
.cf-ribbon {
  background: var(--tier-2);
  color: var(--paper);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 0;
  text-align: center;
  position: relative;
  z-index: 60;
}
.cf-ribbon span { display: inline-block; margin: 0 24px; opacity: 0.9; }
@media (max-width: 680px) {
  .cf-ribbon span { margin: 0 10px; font-size: 10px; }
}

/* ---------- NAV ---------- */
.cf-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--gutter);
}
.cf-nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.cf-nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.cf-nav-right { display: flex; align-items: center; gap: 22px; }
.cf-nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
}
.cf-nav-link:hover { color: var(--tier-2); }
.cf-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper); background: var(--tier-2);
  padding: 9px 20px; text-decoration: none;
  transition: background 0.2s;
}
.cf-nav-cta:hover { background: var(--tier-3); }

/* ---------- HERO ---------- */
.cf-hero {
  background: var(--paper);
  padding: 96px var(--gutter) 80px;
}
.cf-hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}
.cf-hero-copy { min-width: 0; }
.cf-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tier-2);
  margin-bottom: 22px;
}
.cf-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: balance;
}
.cf-hero h1 em {
  font-style: italic;
  color: var(--tier-2);
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 500;
}
.cf-hero-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 50, "wght" 400;
  font-size: 1.2rem; line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 36px;
}
.cf-hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px 28px;
  margin: 28px 0 36px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cf-hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.cf-hero-meta .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cf-hero-meta .val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink);
}
.cf-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper); background: var(--tier-2);
  padding: 16px 32px; text-decoration: none;
  transition: background 0.2s;
}
.cf-btn:hover { background: var(--tier-3); }
.cf-btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  margin-left: 8px;
}
.cf-btn--ghost:hover { background: var(--ink); color: var(--paper); }
.cf-hero-art { margin: 0; }
.cf-hero-art img {
  width: 100%; height: auto;
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.16);
}

/* ---------- SECTION SCAFFOLD ---------- */
.cf-band { padding: 96px var(--gutter); }
.cf-band--paper { background: var(--paper); }
.cf-band--bone { background: var(--bone); }
.cf-band--white { background: var(--white); }
.cf-band--ink { background: var(--ink); color: var(--paper); }
.cf-band--ox { background: var(--tier-2); color: var(--paper); }
.cf-inner { max-width: 940px; margin: 0 auto; }
.cf-inner--wide { max-width: var(--container); }

.cf-section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--tier-2);
  margin-bottom: 18px;
}
.cf-band--ink .cf-section-eyebrow,
.cf-band--ox .cf-section-eyebrow { color: var(--ochre); }

.cf-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 28ch;
  text-wrap: balance;
}
.cf-band--ink .cf-h2,
.cf-band--ox .cf-h2 { color: var(--paper); }

.cf-lead {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 400;
  font-size: 1.18rem; line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 40px;
}
.cf-band--ink .cf-lead,
.cf-band--ox .cf-lead { color: rgba(244, 239, 231, 0.78); }

.cf-prose p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 64ch;
}
.cf-band--ink .cf-prose p,
.cf-band--ox .cf-prose p { color: rgba(244, 239, 231, 0.82); }

/* ---------- DEFINITION CARD ---------- */
.cf-define {
  background: var(--white);
  padding: 36px 40px;
  border-left: 3px solid var(--tier-2);
  margin: 0 0 40px;
}
.cf-define p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem; line-height: 1.45;
  color: var(--ink);
  margin: 0 0 14px;
}
.cf-define p:last-child { margin: 0; }
.cf-define p strong { font-weight: 600; color: var(--tier-2); }

/* ---------- PREREQUISITES (4-up grid) ---------- */
.cf-prereq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cf-prereq {
  background: var(--white);
  padding: 28px 28px 30px;
  border-top: 2px solid var(--ochre);
}
.cf-prereq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--tier-2);
  margin-bottom: 12px;
}
.cf-prereq h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.18rem; line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
}
.cf-prereq p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- THE FULL PROCESS (numbered vertical) ---------- */
.cf-process { counter-reset: step; }
.cf-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.cf-step:last-child { border-bottom: 1px solid var(--rule); }
.cf-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-size: 56px; line-height: 0.95;
  color: var(--tier-2);
  letter-spacing: -0.02em;
}
.cf-step-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.4rem; line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.cf-step-body p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.02rem; line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 64ch;
}
.cf-step-body p:last-child { margin-bottom: 0; }
.cf-step-checks {
  margin: 14px 0 0;
  padding: 18px 22px;
  background: var(--bone);
  border-left: 2px solid var(--ochre);
}
.cf-step-checks .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tier-2);
  display: block; margin-bottom: 8px;
}
.cf-step-checks li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.96rem; line-height: 1.55;
  color: var(--ink-soft);
  padding: 6px 0 6px 18px;
  position: relative;
}
.cf-step-checks li::before {
  content: ""; position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--tier-2);
}

/* ---------- FACT-CHECK / RED FLAGS ---------- */
.cf-redflag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cf-redflag {
  padding: 24px 26px;
  background: var(--white);
  border-top: 2px solid var(--tier-2);
}
.cf-redflag .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tier-2);
  display: block; margin-bottom: 10px;
}
.cf-redflag .q {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 50, "wght" 500;
  font-size: 1.05rem; line-height: 1.4;
  color: var(--ink);
  margin: 0 0 10px;
}
.cf-redflag .a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- TACTICS / SECOND BRAIN TEASER ---------- */
.cf-tactics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cf-tactic {
  padding: 32px 32px 36px;
  background: var(--white);
  border-top: 2px solid var(--ink);
}
.cf-tactic.is-feature {
  background: var(--ink);
  color: var(--paper);
  border-top-color: var(--ochre);
  position: relative;
}
.cf-tactic.is-feature::after {
  content: "Second Brain · Stan's stack";
  position: absolute;
  top: 0; right: 0;
  padding: 5px 12px;
  background: var(--ochre);
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cf-tactic .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--tier-2);
  margin-bottom: 14px;
}
.cf-tactic.is-feature .meta { color: var(--ochre); }
.cf-tactic h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.25rem; line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}
.cf-tactic.is-feature h3 { color: var(--paper); }
.cf-tactic p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.98rem; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.cf-tactic.is-feature p { color: rgba(244, 239, 231, 0.82); }
.cf-tactic ul {
  margin: 0 0 4px; padding: 0;
}
.cf-tactic li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.94rem; line-height: 1.55;
  color: var(--ink-soft);
  padding: 6px 0 6px 18px;
  position: relative;
}
.cf-tactic li::before {
  content: ""; position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--tier-2);
}
.cf-tactic.is-feature li { color: rgba(244, 239, 231, 0.85); }
.cf-tactic.is-feature li::before { background: var(--ochre); }
.cf-tactic .stamp {
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.cf-tactic.is-feature .stamp { color: rgba(244, 239, 231, 0.55); }

/* ---------- PRODUCT PLACEHOLDERS ---------- */
.cf-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.cf-soon {
  padding: 26px 26px 28px;
  background: rgba(244, 239, 231, 0.06);
  border: 1px solid rgba(244, 239, 231, 0.2);
}
.cf-soon .stamp {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 14px;
  padding: 4px 8px;
  background: rgba(201, 162, 39, 0.12);
}
.cf-soon h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.18rem; line-height: 1.2;
  color: var(--paper);
  margin: 0 0 10px;
}
.cf-soon p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.96rem; line-height: 1.55;
  color: rgba(244, 239, 231, 0.7);
  margin: 0;
}

/* ---------- WHAT THIS IS NOT (link to comparison) ---------- */
.cf-not {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.cf-not-card {
  padding: 36px 40px;
  background: var(--bone);
  border-left: 3px solid var(--ink);
}
.cf-not-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.4rem; line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.cf-not-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.02rem; line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.cf-not-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tier-2); text-decoration: underline;
  text-underline-offset: 4px;
}
.cf-not-link:hover { color: var(--tier-3); }
.cf-not-trigger ul li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem; line-height: 1.55;
  color: var(--ink-soft);
  padding: 10px 0 10px 18px;
  position: relative;
  border-top: 1px solid var(--rule);
}
.cf-not-trigger ul li:last-child { border-bottom: 1px solid var(--rule); }
.cf-not-trigger ul li::before {
  content: ""; position: absolute;
  left: 0; top: 19px;
  width: 10px; height: 1px;
  background: var(--ink);
}
.cf-not-trigger .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tier-2);
  display: block; margin-bottom: 14px;
}

/* ---------- CTA BAND ---------- */
.cf-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cf-cta-inner .cf-section-eyebrow { color: var(--ochre); }
.cf-cta-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  color: var(--paper);
  margin: 0 0 20px;
  text-wrap: balance;
}
.cf-cta-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem; line-height: 1.5;
  color: rgba(244, 239, 231, 0.82);
  margin: 0 0 36px;
}
.cf-cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--paper); color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.cf-cta-btn:hover { background: var(--ochre); }
.cf-cta-fineprint {
  margin-top: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: rgba(244, 239, 231, 0.6);
  text-transform: uppercase;
}
.cf-cta-fineprint a {
  color: rgba(244, 239, 231, 0.85);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- DISCLAIMER (craft tier) ----------
   Lighter than Atlas Type 1. /craft is a non-Atlas section (parallel
   to /comparison), so the Atlas footer-disclaimer rule does not
   apply. Craft pages still touch professional-liability surface
   (lawyers, accountants, boards, self-read), so a single shared
   note is carried above every craft footer with a link to
   /engagement-boundary.
   ---------- */
.cf-disclaimer {
  background: var(--bone);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px var(--gutter);
}
.cf-disclaimer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.cf-disclaimer p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 80ch;
}
.cf-disclaimer a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.cf-disclaimer a:hover { color: var(--tier-2); }

/* ---------- FOOTER ---------- */
.cf-footer {
  background: var(--ink); color: var(--paper);
  padding: 42px var(--gutter);
  border-top: 1px solid rgba(244, 239, 231, 0.12);
}
.cf-footer-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.cf-footer a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.55);
  text-decoration: none;
}
.cf-footer a:hover { color: var(--paper); }
.cf-footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.cf-footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(244, 239, 231, 0.32);
}

/* ---------- HUB-SPECIFIC GRID (used by /craft/index) ---------- */
.cf-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.cf-hub-card {
  display: block;
  padding: 30px 30px 32px;
  background: var(--white);
  border-top: 3px solid var(--tier-2);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cf-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}
.cf-hub-card .index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-bottom: 14px;
  display: flex; justify-content: space-between;
}
.cf-hub-card .index .pair {
  color: var(--tier-2);
}
.cf-hub-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.32rem; line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.cf-hub-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.cf-hub-card .go {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tier-2);
}

/* ============================================================
   AI-FOR-X SCAFFOLDING
   Used by /craft/ai-for-* pages. Built for fast scanning:
   oversized numerals, swim-lane scope diagrams, split workflow
   cards, figure slots that read as part of the layout.
   ============================================================ */

/* ---------- SCOPE GRID (HUMAN / AI / NEVER) ---------- */
.cf-scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  margin: 0 0 32px;
}
.cf-scope-cell {
  position: relative;
  padding: 36px 32px 40px;
  background: var(--white);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: flex; flex-direction: column;
  min-height: 320px;
}
.cf-scope-cell.is-human { background: var(--white); }
.cf-scope-cell.is-ai { background: var(--bone); }
.cf-scope-cell.is-never { background: var(--ink); color: var(--paper); }
.cf-scope-cell .marker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--tier-2);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cf-scope-cell.is-ai .marker { color: var(--ochre-deep); }
.cf-scope-cell.is-never .marker { color: var(--ochre); }
.cf-scope-cell .marker .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--tier-2); display: inline-block;
}
.cf-scope-cell.is-ai .marker .dot { background: var(--ochre-deep); }
.cf-scope-cell.is-never .marker .dot { background: var(--ochre); }
.cf-scope-cell h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 96, "SOFT" 50, "wght" 600;
  font-size: 1.4rem; line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
}
.cf-scope-cell.is-never h3 { color: var(--paper); }
.cf-scope-cell ul {
  margin: 0; padding: 0; list-style: none;
}
.cf-scope-cell li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.96rem; line-height: 1.55;
  color: var(--ink-soft);
  padding: 8px 0 8px 18px;
  position: relative;
  border-top: 1px solid var(--rule);
}
.cf-scope-cell li:first-child { border-top: 0; padding-top: 4px; }
.cf-scope-cell.is-never li {
  color: rgba(244, 239, 231, 0.85);
  border-top-color: rgba(244, 239, 231, 0.18);
}
.cf-scope-cell li::before {
  content: ""; position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 1px;
  background: var(--tier-2);
}
.cf-scope-cell.is-ai li::before { background: var(--ochre-deep); }
.cf-scope-cell.is-never li::before { background: var(--ochre); }
.cf-scope-cell .stamp {
  margin-top: auto; padding-top: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cf-scope-cell.is-never .stamp { color: rgba(244, 239, 231, 0.55); }

/* ---------- STAT ROW (oversized numerals) ---------- */
.cf-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.cf-stat {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
}
.cf-stat:last-child { border-right: 0; }
.cf-stat .num {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-size: clamp(48px, 6vw, 80px); line-height: 0.95;
  color: var(--tier-2);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cf-stat .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.cf-stat .sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 50, "wght" 400;
  font-size: 14px; line-height: 1.4;
  color: var(--ink-soft);
  max-width: 26ch;
}

/* ---------- SPLIT WORKFLOW STEP (HUMAN | AI columns) ---------- */
.cf-split {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.cf-split:last-of-type { border-bottom: 1px solid var(--rule); }
.cf-split-num {
  padding: 28px 0 28px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-size: 48px; line-height: 1;
  color: var(--tier-2);
}
.cf-split-col {
  padding: 28px 28px 28px 0;
  border-left: 1px solid var(--rule);
  padding-left: 28px;
}
.cf-split-col.is-human { background: var(--white); }
.cf-split-col.is-ai { background: var(--bone); }
.cf-split-col .head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.cf-split-col.is-human .head { color: var(--tier-2); }
.cf-split-col.is-ai .head { color: var(--ochre-deep); }
.cf-split-col .head .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; display: inline-block;
}
.cf-split-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 60, "SOFT" 50, "wght" 600;
  font-size: 1.15rem; line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}
.cf-split-col p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.96rem; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- FIGURE SLOTS (placeholder visuals) ----------
   Hidden by default until real assets land. The dashed-border
   placeholder treatment was reading as a broken image, so the
   default rule sets display:none. Markup stays in the HTML so
   the swap is one rule change once the v2 visuals are produced
   per DECISION-ATLAS-VISUAL-ASSET-PIPELINE / craft section.

   To re-enable globally, change `.cf-figure { display: none; }`
   back to the editorial treatment commented below. To enable a
   single page early, use `.cf-figure.is-ready` on that figure
   and the rule below renders it normally.
   ---------- */
.cf-figure { display: none; }

.cf-figure.is-ready {
  display: flex;
  margin: 28px 0;
  background: var(--bone);
  position: relative;
  aspect-ratio: 16/7;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cf-figure.is-ready img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-figure.is-ready .cf-figure-stamp {
  position: absolute; top: 14px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(244, 239, 231, 0.85);
  padding: 4px 8px;
}
.cf-figure.is-ready .cf-figure-caption {
  position: absolute; bottom: 14px; left: 18px; right: 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem; line-height: 1.45;
  color: var(--ink-soft);
  background: rgba(244, 239, 231, 0.92);
  padding: 8px 12px;
  max-width: 56ch;
}
.cf-figure--portrait.is-ready { aspect-ratio: 4/5; }
.cf-figure--square.is-ready { aspect-ratio: 1/1; }

/* ---------- BIG PULL CALLOUT (single-line scan anchor) ---------- */
.cf-pull {
  margin: 36px 0;
  padding: 36px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.cf-pull p {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 600;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--tier-2);
  margin: 0;
  max-width: 28ch;
  text-wrap: balance;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .cf-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cf-prereq-grid { grid-template-columns: 1fr; }
  .cf-redflag-grid { grid-template-columns: 1fr; }
  .cf-tactics { grid-template-columns: 1fr; }
  .cf-not { grid-template-columns: 1fr; }
  .cf-scope { grid-template-columns: 1fr; }
  .cf-scope-cell { min-height: 0; }
  .cf-split { grid-template-columns: 64px 1fr; }
  .cf-split-col.is-ai { grid-column: 2; border-top: 1px solid var(--rule); }
}
@media (max-width: 680px) {
  :root { --gutter: 24px; }
  .cf-hero { padding: 64px 24px 56px; }
  .cf-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .cf-band { padding: 64px var(--gutter); }
  .cf-step { grid-template-columns: 1fr; gap: 12px; }
  .cf-step-num { font-size: 40px; }
  .cf-define { padding: 26px 24px; }
  .cf-not-card { padding: 26px 24px; }
  .cf-stat { padding: 28px 20px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .cf-stat:last-child { border-bottom: 0; }
  .cf-split-num { padding: 16px 0 0 0; font-size: 32px; }
  .cf-split-col { padding: 16px 16px 24px 16px; }
  .cf-figure { aspect-ratio: 4/3; }
}
