/* ============================================================
   ACCULEAD — PAGES
   Consolidated component styles for every page.
   Loaded alongside shared.css (tokens + nav + footer + buttons).
   Replaces the old home.css and styles.css.
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   HERO (homepage)
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}
.hero-issue {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.hero-issue .meta { color: var(--ink); }
.hero-issue .meta-sep { display: inline-block; margin: 0 10px; color: var(--muted); }
.hero-issue-right { display: inline-flex; gap: 28px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .em {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent-2);
}
.hero h1 .under {
  position: relative;
  display: inline-block;
}
.hero h1 .under::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 10px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.85;
}
.hero-deck {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
  margin-bottom: 24px;
  max-width: 22ch;
}
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 36px;
}
.hero-subhead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 24px;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { justify-content: center; text-align: center; width: 100%; }
}

.hero-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-stat-card {
  padding: 28px 28px 28px 32px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  box-shadow: 0 1px 0 rgba(14,26,48,0.04), 0 20px 40px -24px rgba(14,26,48,0.12);
}
body[data-theme="operator"] .hero-stat-card,
body[data-theme="warm"] .hero-stat-card { background: var(--paper-2); }
.hero-stat-card .meta { margin-bottom: 12px; display: block; }
.hero-stat-card .num {
  font-family: var(--f-display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.hero-stat-card .note {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.hero-quote {
  padding: 24px 28px;
  border: 1px solid var(--rule);
  font-family: var(--f-editor);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.hero-quote .cite {
  display: block;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

body[data-hero="mono"] .hero-grid { grid-template-columns: 1fr; gap: 32px; }
body[data-hero="mono"] .hero-side { display: none; }
body[data-hero="mono"] .hero h1 { font-size: clamp(2.4rem, 10vw, 8rem); line-height: 1.02; max-width: 16ch; }
body[data-hero="split"] .hero h1 { font-size: clamp(3rem, 6vw, 5rem); }

/* Interior hero (non-homepage) — smaller display H1 + subhead */
.page-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 24px;
}
.page-hero h1 .em {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent-2);
}
.page-hero p.lede,
.page-hero .page-hero-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 28px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.page-hero-left { min-width: 0; }
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.about-hero-stats {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ─────────────────────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────────────────────── */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.trust-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
}
.trust-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 180px;
  line-height: 1.5;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink);
  opacity: 0.72;
}
.trust-items span { text-align: center; letter-spacing: -0.01em; }

/* ─────────────────────────────────────────────────────────────
   PROBLEM / pain section (homepage)
   ───────────────────────────────────────────────────────────── */
.problem h2 .slash { color: var(--accent); padding: 0 4px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.problem-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  position: relative;
  transition: transform .2s, border-color .2s;
}
body[data-theme="operator"] .problem-card,
body[data-theme="warm"] .problem-card { background: var(--paper-2); }
.problem-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.problem-card .num {
  font-family: var(--f-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.problem-card h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.problem-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.problem-card .tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: block;
}

/* ─────────────────────────────────────────────────────────────
   METHOD (homepage, ink section)
   ───────────────────────────────────────────────────────────── */
.method {
  background: var(--ink);
  color: var(--paper);
  padding: 128px 0;
}
.method .section-head h2 { color: var(--paper); }
.method .section-head p { color: rgba(245,239,230,0.7); }
.method-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule-ink);
  border-bottom: 1px solid var(--rule-ink);
}
.method-step {
  padding: 48px 40px;
  border-right: 1px solid var(--rule-ink);
  position: relative;
}
.method-step:last-child { border-right: none; }
.method-step .step-num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}
.method-step h3 {
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 16px;
}
.method-step p {
  color: rgba(245,239,230,0.7);
  font-size: 0.96rem;
  line-height: 1.65;
}
.method-step .step-k {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent);
  display: block;
  margin-top: 16px;
  font-size: 1.05rem;
}
.method-close {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}
.method-close p {
  color: rgba(245,239,230,0.82);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES (homepage)
   ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.service {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
body[data-theme="operator"] .service,
body[data-theme="warm"] .service { background: var(--paper-2); }
.service.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  grid-row: span 1;
  padding: 48px 40px;
}
.service.primary h3 { color: var(--paper); }
.service.primary .meta { color: var(--accent); }
.service:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(14,26,48,0.2); }

.service h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service.primary h3 { font-size: 2.2rem; }
.service p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.service.primary p { color: rgba(245,239,230,0.78); }
.service .svc-arrow {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.service.primary .svc-arrow { color: var(--accent); }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  color: var(--muted);
}
.service.primary .service-tags span {
  border-color: rgba(255,255,255,0.2);
  color: rgba(245,239,230,0.7);
}

/* ─────────────────────────────────────────────────────────────
   PROOF
   ───────────────────────────────────────────────────────────── */
.proof {
  background: var(--paper-2);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.proof-item { border-left: 2px solid var(--accent); padding-left: 24px; }
.proof-item .num {
  font-family: var(--f-display);
  font-size: 3.2rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.proof-item .who {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.proof-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────
   INDUSTRIES
   ───────────────────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ind-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  position: relative;
  cursor: pointer;
  transition: all .2s;
  display: flex; flex-direction: column;
}
body[data-theme="operator"] .ind-card,
body[data-theme="warm"] .ind-card { background: var(--paper-2); }
.ind-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.ind-card .ind-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.ind-card h3 { font-family: var(--f-display); font-size: 1.8rem; line-height: 1; }
.ind-card .ind-no {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.ind-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; margin-bottom: 20px; }
.ind-card .tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.ind-card .tags span {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 8px;
  background: var(--paper);
  border-radius: 2px;
}
.industries-also {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ─────────────────────────────────────────────────────────────
   BOOK FEATURE (homepage + free-book)
   ───────────────────────────────────────────────────────────── */
.book-feature {
  padding: 128px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.book-feature h2 { color: var(--paper); }
.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.book-visual { position: relative; display: flex; justify-content: center; }
.book-cover {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 2 / 3;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.35),
    0 8px 16px rgba(0,0,0,0.2);
  transform: rotate(-2deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  background: #1B2A4A;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.book-cover:hover { transform: rotate(0deg) translateY(-4px); }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(closest-side, rgba(232,134,58,0.15), transparent 70%);
  z-index: 0;
}
.book-content h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.book-content h2 .em {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent);
}
.book-content p.lede {
  font-size: 1.1rem;
  color: rgba(245,239,230,0.78);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 54ch;
}
.book-toc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-ink);
  margin-bottom: 32px;
  border: 1px solid var(--rule-ink);
}
.book-toc div { background: var(--ink); padding: 16px 20px; }
.book-toc .chapter-num {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.book-toc .chapter-title {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--paper);
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS (homepage)
   ───────────────────────────────────────────────────────────── */
.testimonials { padding: 128px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.quote-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform .2s;
}
body[data-theme="operator"] .quote-card,
body[data-theme="warm"] .quote-card { background: var(--paper-2); }
.quote-card:hover { transform: translateY(-2px); }
.quote-card.featured { background: var(--paper-2); grid-row: span 1; }
.quote-card .mark {
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 12px;
}
.quote-card .body {
  font-family: var(--f-editor);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.quote-card.featured .body { font-size: 1.45rem; }
.quote-card .who {
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-card .who-initials {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.quote-card .who-name {
  font-weight: 600; font-size: 0.92rem; color: var(--ink);
  display: block; line-height: 1.3;
}
.quote-card .who-title {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: block; line-height: 1.3;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────
   FINAL CTA (homepage + generic)
   ───────────────────────────────────────────────────────────── */
.final-cta {
  padding: 160px 0;
  background: var(--paper-2);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.final-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 14ch;
  margin-left: auto; margin-right: auto;
}
.final-cta h2 .em {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent-2);
}
.final-cta p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.final-cta .ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.final-cta .founder-note {
  display: inline-flex;
  align-items: center; gap: 14px;
  margin-top: 48px;
  padding: 16px 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.final-cta .founder-note img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper);
}

/* ─────────────────────────────────────────────────────────────
   FRACTIONAL CMO PAGE
   ───────────────────────────────────────────────────────────── */
.fcmo-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
  margin-top: 32px;
}
.fcmo-signs {
  list-style: none;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--rule);
}
body[data-theme="operator"] .fcmo-signs,
body[data-theme="warm"] .fcmo-signs { background: var(--paper-2); }
.fcmo-signs li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
}
.fcmo-signs li:last-child { border-bottom: none; }
.fcmo-signs li::before {
  content: "";
  position: absolute;
  left: 0; top: 24px;
  width: 16px; height: 1px;
  background: var(--accent);
}
.fcmo-signs-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}

.short-answer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.short-answer-grid h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.short-answer-grid p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.bio-callout {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--rule);
}
body[data-theme="operator"] .bio-callout,
body[data-theme="warm"] .bio-callout { background: var(--paper-2); }
.bio-callout img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.bio-callout .name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.bio-callout .title {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.bio-callout p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.stats-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
}
.stats-bar .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}
.stats-bar .stat {
  border-left: 1px solid var(--rule-ink);
  padding-left: 24px;
}
.stats-bar .stat:first-child { border-left: 0; padding-left: 0; }
.stats-bar .stat .stat-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 14px;
}
.stats-bar .stat .stat-label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245,239,230,0.78);
  line-height: 1.5;
  max-width: 34ch;
  margin: 0;
}

.comparison {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.compare-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.compare-card {
  padding: 36px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
body[data-theme="operator"] .compare-card,
body[data-theme="warm"] .compare-card { background: var(--paper-2); }
.compare-card.highlighted { background: var(--ink); color: var(--paper); }
.compare-card .compare-header {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.compare-card.highlighted .compare-header {
  color: var(--paper);
  border-bottom-color: var(--rule-ink);
}
.compare-card .compare-item {
  padding: 10px 0 10px 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  position: relative;
}
.compare-card.highlighted .compare-item { color: rgba(245,239,230,0.82); }
.compare-card .compare-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.compare-card.highlighted .compare-item::before { background: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   FAQ (native details/summary)
   ───────────────────────────────────────────────────────────── */
.faq-section {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
}
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 0;
  font-family: var(--f-display);
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  transition: color .15s;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent-2);
  transition: transform .2s;
}
.faq-item[open] > summary::after {
  content: "–";
}
.faq-item > summary:hover { color: var(--accent-2); }
.faq-item > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-item .faq-answer {
  padding: 0 0 28px 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 68ch;
}
.faq-item .faq-answer p { margin-bottom: 12px; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────────────
   CTA BANNER + CTA ALT (interior)
   ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 16px;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.cta-banner h2 .em {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent);
}
.cta-banner p {
  color: rgba(245,239,230,0.72);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto 28px;
}
.cta-banner .ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.cta-alt {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.cta-alt h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.cta-alt p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 28px;
}
.cta-alt .ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ─────────────────────────────────────────────────────────────
   BOOK STRIP (interior CTA)
   ───────────────────────────────────────────────────────────── */
.book-strip {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}
.book-strip-inner {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 32px;
  align-items: center;
}
.book-strip-cover {
  width: 96px;
  height: auto;
  box-shadow: 0 12px 24px -12px rgba(14,26,48,0.3);
}
.book-strip-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
  display: block;
}
.book-strip-heading {
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.book-strip-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 60ch;
}
.book-strip-cta {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.book-strip-cta:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────────── */
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.about-hero-stats .about-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-hero-stats .about-stat-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
}
.about-hero-stats .about-stat-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28ch;
  display: block;
}

.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.tom-headshot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}
.bio-body h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.bio-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.bio-credentials {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.bio-credentials .cred-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bio-credentials .cred-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.bio-credentials .cred-value {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
  display: block;
}
.bio-credentials .cred-value a { color: var(--accent-2); border-bottom: 1px solid var(--accent); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.result-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
body[data-theme="operator"] .result-card,
body[data-theme="warm"] .result-card { background: var(--paper-2); }
.result-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.result-card .result-type {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  display: block;
}
.result-card .result-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.result-card .result-headline {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

.thinking-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.pillar { padding: 8px 0 8px 28px; border-left: 2px solid var(--accent); }
.pillar .num {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 14px;
  display: block;
}
.pillar h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   PRICING PAGE
   ───────────────────────────────────────────────────────────── */
.pricing-value {
  padding: 96px 0;
}
.pricing-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.pricing-value-card {
  padding: 40px 32px;
  background: var(--white);
}
body[data-theme="operator"] .pricing-value-card,
body[data-theme="warm"] .pricing-value-card { background: var(--paper-2); }
.pricing-value-card .num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 16px;
  display: block;
}
.pricing-value-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.pricing-value-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-section { padding: 96px 0; background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
.pricing-tier {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
}
body[data-theme="operator"] .pricing-tier,
body[data-theme="warm"] .pricing-tier { background: var(--paper-2); }
.pricing-tier-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pricing-tier-header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.pricing-tier-featured .pricing-tier-header { border-bottom-color: var(--rule-ink); }
.pricing-tier-header h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 16px;
}
.pricing-tier-featured .pricing-tier-header h3 { color: var(--paper); }
.pricing-tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--f-display);
  color: var(--ink);
}
.pricing-tier-featured .pricing-tier-price { color: var(--paper); }
.pricing-dollar {
  font-size: 1.4rem;
  color: var(--accent-2);
  margin-right: 4px;
  font-family: var(--f-editor);
  font-style: italic;
}
.pricing-tier-featured .pricing-dollar { color: var(--accent); }
.pricing-num {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing-num-custom { font-size: clamp(2rem, 3.2vw, 2.6rem); }
.pricing-period {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: 4px;
}
.pricing-tier-featured .pricing-period { color: rgba(245,239,230,0.7); }
.pricing-tier-desc {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 24px;
}
.pricing-tier-featured .pricing-tier-desc { color: rgba(245,239,230,0.8); }
.pricing-tier-list {
  list-style: none;
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
}
.pricing-tier-list li {
  padding: 10px 0 10px 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.pricing-tier-list li:last-child { border-bottom: 0; }
.pricing-tier-featured .pricing-tier-list li {
  color: rgba(245,239,230,0.82);
  border-bottom-color: var(--rule-ink);
}
.pricing-tier-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.pricing-tier-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  font-weight: 600;
}
.pricing-tier-btn { align-self: stretch; justify-content: center; text-align: center; }

.pricing-inline-quote {
  padding: 64px 0;
  text-align: center;
}
.pricing-inline-quote blockquote {
  font-family: var(--f-editor);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 32ch;
  margin: 0 auto 20px;
}
.pricing-inline-quote cite {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ─────────────────────────────────────────────────────────────
   FREE BOOK PAGE
   ───────────────────────────────────────────────────────────── */
.book-page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--rule);
}
.book-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.book-hero-grid h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.book-hero-grid h1 .em {
  font-family: var(--f-editor);
  font-style: italic;
  color: var(--accent-2);
}
.book-hero-grid .lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 28px;
}
.book-bullets {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--rule);
}
.book-bullets li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  position: relative;
}
.book-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 24px;
  width: 16px; height: 1px;
  background: var(--accent);
}
.book-hero-who {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.6;
}
.book-hero-who strong {
  color: var(--ink);
  font-weight: 600;
}
.book-cover-wrap {
  max-width: 360px;
  margin: 0 auto;
  transform: rotate(-2deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 40px 80px rgba(14,26,48,0.22), 0 8px 16px rgba(14,26,48,0.12);
  aspect-ratio: 2 / 3;
  overflow: hidden;
}
.book-cover-wrap:hover { transform: rotate(0deg) scale(1.02); }
.book-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.book-form-section { padding: 96px 0; background: var(--paper-2); border-bottom: 1px solid var(--rule); }
.book-form-wrap { max-width: 620px; margin: 0 auto; }
.book-form-card,
.book-thankyou {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 20px 40px -24px rgba(14,26,48,0.1);
}
.book-form-intro { margin-bottom: 28px; }
.book-form-intro h2 {
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
}
.book-form-sub {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.book-form { display: flex; flex-direction: column; gap: 20px; }
.book-form-row { display: flex; flex-direction: column; gap: 8px; }
.book-form-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-form-input {
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color .15s;
}
.book-form-input:focus {
  outline: none;
  border-color: var(--accent);
}
.book-form-input.has-error { border-color: #B91C1C; }
.book-form-input.has-error:focus { border-color: #B91C1C; }
.book-form-error {
  display: block;
  font-family: var(--f-body);
  font-size: 0.82rem;
  color: #B91C1C;
  line-height: 1.4;
}
.book-form-alert {
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: #B91C1C;
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.3);
  border-radius: 2px;
  line-height: 1.5;
}
.book-form-alert a { color: #B91C1C; text-decoration: underline; }
.book-form-row-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.book-form-row-check .book-form-error { flex-basis: 100%; margin-left: 26px; }
.book-form-check-label {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
.book-form-check {
  margin-top: 3px;
  accent-color: var(--accent);
}
.book-form-submit { align-self: flex-start; }
.book-form-privacy {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}
.book-thankyou { text-align: center; }
.book-thankyou h2 {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.book-thankyou-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.book-download-btn { margin-bottom: 20px; }
.book-thankyou-next {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 20px;
}
.book-thankyou-link {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.book-inside { padding: 96px 0; }
.book-inside h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.book-chapters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.book-chapter {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
}
.book-chapter:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--rule); padding-left: 0; }
.book-chapter:nth-child(even) { padding-left: 32px; }
.book-chapter-num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent-2);
}
.book-chapter h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
}
.book-chapter p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 6px;
}

.book-author { padding: 96px 0; background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.book-author-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.book-author-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.book-author h2 {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.book-author-title {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  display: block;
}
.book-author p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.book-author-link {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
}

/* ─────────────────────────────────────────────────────────────
   RESOURCES PAGE
   ───────────────────────────────────────────────────────────── */
.resource-section { padding: 96px 0; }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s;
  position: relative;
}
body[data-theme="operator"] .resource-card,
body[data-theme="warm"] .resource-card { background: var(--paper-2); }
.resource-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.resource-card-icon {
  width: 48px; height: 48px;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.resource-card-icon svg { width: 100%; height: 100%; }
.resource-card .num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: 18px;
  display: block;
}
.resource-card h2 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.resource-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.resource-card-link {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  position: relative;
  transition: color .15s;
}
.resource-card-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--accent);
  transition: background .15s;
}
.resource-card-link:hover { color: var(--accent-2); }
.resource-card-link:hover::after { background: var(--accent-2); }
.resource-card-badge {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 2px;
}
.resource-notify-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resource-notify-form input {
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 2px;
}
.resource-notify-form input:focus { outline: none; border-color: var(--accent); }
.resource-notify-form button {
  padding: 12px 18px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.resource-notify-form button:hover {
  background: var(--accent-2);
  color: var(--paper);
  border-color: var(--accent-2);
}
.resource-notify-thankyou {
  margin-top: 8px;
  padding: 16px 18px;
  background: rgba(232, 134, 58, 0.08);
  border: 1px solid rgba(232, 134, 58, 0.35);
  border-radius: 2px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.resource-notify-thankyou p { margin: 0; }
.resource-notify-thankyou strong { color: var(--accent-2); }

/* ─────────────────────────────────────────────────────────────
   BLOG INDEX
   ───────────────────────────────────────────────────────────── */
.blog-index { padding: 96px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.blog-card {
  padding: 40px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  transition: background .2s;
}
.blog-card:hover { background: var(--paper-2); }
.blog-category {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  display: inline-block;
}
.blog-card h2 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.blog-card h2 a { color: var(--ink); transition: color .15s; }
.blog-card h2 a:hover { color: var(--accent-2); }
.blog-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.blog-read-more {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  min-height: 44px;
}
.blog-book-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
}
.blog-book-cta-inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.blog-book-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 16px;
}
.blog-book-cta p {
  color: rgba(245,239,230,0.78);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────────────────────────
   BLOG ARTICLE
   ───────────────────────────────────────────────────────────── */
.article-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--rule);
}
.article-hero .eyebrow { margin-bottom: 24px; }
.article-hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
  margin-bottom: 24px;
}
.article-hero-sub {
  font-family: var(--f-editor);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.article-meta-photo {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.article-meta-name { font-weight: 600; color: var(--ink); }
.article-meta-sep { color: var(--rule); }

.article-body { padding: 72px 0 96px; }
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content p {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.article-content h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 48px 0 20px;
}
.article-content h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 14px;
}
.article-content a {
  color: var(--accent-2);
  border-bottom: 1px solid var(--accent);
  transition: color .15s, border-color .15s;
}
.article-content a:hover { color: var(--ink); border-color: var(--ink); }

.article-key-takeaways {
  background: var(--paper-2);
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  margin-bottom: 40px;
}
.article-key-takeaways .label,
.article-key-takeaways .eyebrow {
  margin-bottom: 10px;
  display: block;
}
.article-key-takeaways p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0;
}

.article-toc {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
}
.article-toc-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-bottom: 0;
}
.article-toc a {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  position: relative;
  transition: color .15s;
}
.article-toc a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 8px;
  height: 1px;
  background: var(--rule);
  transition: background .15s, height .15s;
}
.article-toc a:hover { color: var(--accent-2); }
.article-toc a:hover::after { background: var(--accent); height: 2px; }

.article-cta-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  margin: 40px 0;
  align-items: center;
}
.article-cta-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 12px 24px -12px rgba(14,26,48,0.3);
}
.article-cta-text h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.article-cta-text p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.article-cta-link {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.article-author-bio {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
}
.article-author-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
}
.article-author-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.article-author-title {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 12px;
}
.article-author-title a {
  color: var(--accent-2);
  border-bottom: 1px solid var(--accent);
}
.article-author-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.article-book-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
}
.article-book-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  color: var(--paper);
  margin-bottom: 14px;
  max-width: 20ch;
  margin-left: auto; margin-right: auto;
}
.article-book-cta p {
  color: rgba(245,239,230,0.78);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.related-articles { padding: 96px 0; border-top: 1px solid var(--rule); }
.related-articles h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
body[data-theme="operator"] .related-card,
body[data-theme="warm"] .related-card { background: var(--paper-2); }
.related-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.related-card .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  display: block;
}
.related-card h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.related-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.related-card-link {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-top: auto;
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION (generic, used on multiple pages)
   ───────────────────────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 54ch;
  margin: 0 auto 28px;
}
.cta-section .micro {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────────
   404 / PRIVACY PAGES
   ───────────────────────────────────────────────────────────── */
.error-section { padding: 120px 0 96px; text-align: center; }
.error-section .big {
  font-family: var(--f-display);
  font-size: clamp(6rem, 14vw, 10rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.error-section h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.error-section p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 32px;
}
.error-section .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.legal-section { padding: 96px 0 80px; }
.legal-section .wrap-narrow { max-width: 720px; }
.legal-section .eyebrow { margin-bottom: 24px; }
.legal-section h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal-section .updated {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal-body p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-body h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 36px 0 12px;
}
.legal-body a { color: var(--accent-2); font-weight: 600; border-bottom: 1px solid var(--accent); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .problem-grid, .services-grid,
  .industries-grid, .testimonials-grid,
  .proof-grid, .book-grid, .method-diagram,
  .book-toc, .trust-items,
  .fcmo-hero-grid, .short-answer-grid,
  .compare-grid-full, .pricing-value-grid, .pricing-tiers,
  .page-hero-grid,
  .about-hero-stats, .bio-grid, .results-grid,
  .thinking-pillars, .resource-grid,
  .blog-grid, .related-grid,
  .book-hero-grid, .book-chapters, .book-author-grid,
  .stats-bar .stats-row,
  .article-cta-card, .article-author-bio,
  .book-strip-inner, .bio-credentials,
  .method-close {
    grid-template-columns: 1fr;
  }
  .method-close { gap: 24px; text-align: left; }
  .method-close .btn { justify-self: start; }
  .method-step { border-right: none; border-bottom: 1px solid var(--rule-ink); }
  .method-step:last-child { border-bottom: none; }
  .trust-inner { grid-template-columns: 1fr; gap: 16px; }
  .book-chapter:nth-child(odd),
  .book-chapter:nth-child(even) {
    padding-left: 0; padding-right: 0;
    border-right: none;
  }
  .book-strip-inner { text-align: center; }
  .book-strip-cover { margin: 0 auto; }
  .article-author-bio, .article-cta-card {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .article-content p { font-size: 1.02rem; }
  .book-form-card, .book-thankyou { padding: 32px 24px; }
}

/* ─────────────────────────────────────────────────────────────
   Nav dropdown (needed for interior pages)
   ───────────────────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s;
  cursor: pointer;
  background: none; border: 0;
  font-family: inherit;
}
.nav-dropdown-trigger:hover { color: var(--accent-2); }
.nav-dropdown-arrow { transition: transform .2s; margin-top: 2px; }
.nav-dropdown[aria-expanded="true"] .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  box-shadow: 0 20px 40px -12px rgba(14,26,48,0.16);
  z-index: 70;
}
.nav-dropdown[aria-expanded="true"] .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: var(--paper-2);
  color: var(--accent-2);
}
.nav-coming-soon {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  z-index: 999;
}
.skip-link:focus {
  left: 10px; top: 10px;
}

/* Hero animation */
.hero-animate { opacity: 0; transform: translateY(12px); transition: opacity .6s, transform .6s; }
.hero-animate.hero-animate-in { opacity: 1; transform: none; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }

/* Respect user's reduced-motion preference: show everything instantly,
   skip transitions/animations, disable smooth scroll. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .hero-animate,
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   ADDENDUM — editorial theme coverage for orphan selectors
   ───────────────────────────────────────────────────────────── */

/* page-hero single-column variant (pricing / resources / blog hero) */
.page-hero-grid.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

/* Eyebrow modifier for light backgrounds (parity with .on-ink) */
.eyebrow.on-paper { color: var(--muted); }

/* Shared btn-row (used on 404 + cta-alt) */
.btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* FCMO hero column hints (grid parent handles layout) */
.fcmo-hero-left { min-width: 0; }
.fcmo-hero-right { min-width: 0; }

/* Short Answer section */
.short-answer {
  padding: 96px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.short-answer-left { min-width: 0; }
.short-answer-right { min-width: 0; }
.short-answer-right p { margin-bottom: 16px; }

/* Testimonial strip */
.testimonial-strip {
  padding: 80px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testimonial-strip-inner {
  max-width: 820px;
  text-align: center;
}
.testimonial-strip blockquote {
  font-family: var(--f-editor);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-strip cite {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-style: normal;
  display: block;
}
.testimonial-strip cite strong {
  color: var(--ink);
  font-weight: 600;
}

/* CTA banner inner + sub */
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta-banner-sub {
  color: rgba(245,239,230,0.72);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 auto;
}

/* FAQ helpers */
.faq-q-text { display: inline-block; }
/* The CSS renders a "+" / "−" via ::after, so hide the span fallback */
.faq-toggle { display: none; }
.faq-cta {
  max-width: 860px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.faq-cta p { color: var(--ink-soft); font-size: 0.98rem; }
.faq-cta a {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

/* About page section wrappers */
.bio-section {
  padding: 96px 0;
  background: var(--paper);
}
.bio-title {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 24px;
}
.results {
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.results .section-head h2,
.results h2 { color: var(--paper); }
.results .section-head p,
.results .section-head .eyebrow { color: rgba(245,239,230,0.72); }
.thinking {
  padding: 96px 0;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}

/* Pricing footnote */
.pricing-footnote {
  margin-top: 24px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Free book page — hero column hints + intro */
.book-hero-left { min-width: 0; }
.book-hero-right { min-width: 0; }
.book-hero-intro {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 54ch;
}

/* Blog index section */
.blog-index-section {
  padding: 80px 0 96px;
}

/* Legal (privacy) page — HTML uses .legal-wrap + .legal-updated */
.legal-section .legal-wrap { max-width: 720px; margin: 0 auto; }
.legal-updated {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 40px;
}

/* 404 error layout */
.error-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.error-code {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-2);
  margin-bottom: 16px;
}

/* Homepage hero column (index.html) */
.hero-left { min-width: 0; }

/* Bio-callout image class parity */
.bio-callout-img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* Responsive tweaks for new layouts — the 900px rule above collapses grids;
   these refine stats + testimonial typography at smaller viewports */
@media (max-width: 900px) {
  .stats-bar .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule-ink); padding-top: 24px; }
  .stats-bar .stat:first-child { border-top: 0; padding-top: 0; }
}
@media (max-width: 640px) {
  .testimonial-strip blockquote { font-size: 1.25rem; }
  .cta-banner h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .error-code { font-size: clamp(3rem, 14vw, 5rem); }
}

