/* =================================================================
   JUMO HEALTH — UNIFIED STYLE SYSTEM
   Version 1.0 | May 2026

   Single source of truth for all Jumo website pages.
   Replaces per-page <style> blocks with one shared stylesheet.

   Architecture:
   1. CSS Custom Properties (Design Tokens)
   2. Reset & Base
   3. Typography
   4. Layout — Sections
   5. Navigation — Breadcrumb & Logo Bar
   6. Buttons — CTA System
   7. Annotations (dev/design reference)
   8. Shared Components
   9. Page-Specific Components
   10. Responsive Overrides
   ================================================================= */

/* =================================================================
   1. DESIGN TOKENS
   ================================================================= */
:root {
  /* ---- Brand Palette ---- */
  --jumo-blue:        #117FC3;   /* Primary Blue */
  --jumo-charcoal:    #383939;   /* Dark Charcoal */
  --jumo-gray:        #A7A9AC;   /* Medium Gray */
  --jumo-deep-blue:   #0066B3;   /* Deep Blue / CORE accent */
  --jumo-light-gray:  #CCCCCC;   /* Light Gray */
  --jumo-navy:        #003870;   /* Navy */
  --jumo-accent:      #CCDB2F;   /* Lime Accent (sparingly) */

  /* ---- Product Colors ---- */
  --core-color:       #0066B3;
  --prism-color:      #117FC3;

  /* ---- Surface Colors ---- */
  --bg-body:          #f8f9fb;
  --bg-white:         #ffffff;
  --bg-light:         #f8fafc;
  --bg-muted:         #f1f5f9;
  --bg-hero:          var(--jumo-navy);
  --bg-dark:          #0a1e33;
  --bg-darker:        #0f172a;   /* Slate-900 — NOT USED; standardised to --bg-dark */
  --bg-navy:          var(--jumo-navy);

  /* ---- Text Colors ---- */
  --text-body:        var(--jumo-charcoal);
  --text-heading:     #0a0a0a;
  --text-paragraph:   #475569;
  --text-secondary:   #64748b;
  --text-muted:       #94a3b8;
  --text-on-dark:     #e2e8f0;
  --text-on-dark-sub: #cbd5e1;
  --text-on-dark-dim: rgba(255,255,255,0.5);
  --text-on-hero:     rgba(255,255,255,0.7);

  /* ---- Border Colors ---- */
  --border-default:   #e2e8f0;
  --border-blue-soft: rgba(17,127,195,0.15);
  --border-blue-med:  rgba(17,127,195,0.2);
  --border-blue-strong: rgba(17,127,195,0.25);
  --border-white-soft: rgba(255,255,255,0.1);
  --border-white-med:  rgba(255,255,255,0.15);

  /* ---- Accent Surfaces ---- */
  --surface-blue-faint:  rgba(17,127,195,0.04);
  --surface-blue-light:  rgba(17,127,195,0.06);
  --surface-blue-medium: rgba(17,127,195,0.08);
  --surface-blue-strong: rgba(17,127,195,0.12);
  --surface-accent-faint: rgba(204,219,47,0.04);
  --surface-accent-light: rgba(204,219,47,0.06);

  /* ---- Derived Colors ---- */
  --prism-stage-num:  #4da8da;
  --prism-stage-label:#7ec8e3;
  --core-stage-num:   var(--jumo-blue);
  --core-stage-label: var(--core-color);
  --accent-heading:   #e6eda3;   /* Accent text on dark bg */
  --blue-heading-dark: #7ec8e3;  /* Blue text on dark bg */

  /* ---- Spacing ---- */
  --section-padding:     44px 40px;
  --section-hero-padding: 56px 40px 48px;
  --section-cta-padding:  48px 40px;
  --section-human-padding: 40px 40px;
  --max-width:           960px;
  --max-width-text:      720px;

  /* ---- Typography ---- */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --h1-size:  48px;
  --h2-size:  32px;
  --h3-size:  22px;
  --h4-size:  16px;
  --p-size:   17px;
  --lead-size: 19px;
  --small-size: 16px;

  /* ---- Radii ---- */
  --radius-sm:  6px;
  --radius-md:  8px;
  --radius-lg:  10px;
  --radius-xl:  12px;
  --radius-2xl: 16px;
  --radius-pill: 20px;

  /* ---- Transitions ---- */
  --transition-fast: 0.15s ease;
  --transition-med:  0.2s ease;
}


/* =================================================================
   2. RESET & BASE
   ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-family);
  background: var(--bg-body);
  color: var(--text-body);
}


/* =================================================================
   3. TYPOGRAPHY
   ================================================================= */
h1 {
  font-size: var(--h1-size);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-heading);
}

h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text-heading);
}

h4 {
  font-size: var(--h4-size);
  font-weight: 700;
  color: var(--jumo-charcoal);
  margin-bottom: 8px;
}

p {
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--text-paragraph);
  margin-bottom: 14px;
  max-width: var(--max-width-text);
}

.lead {
  font-size: var(--lead-size);
  line-height: 1.55;
  color: #334155;
  margin-bottom: 18px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* Dark-section typography overrides — unified selector list */
.dark h2, .core-dark h2, .prism-dark h2, .charcoal h2,
.navy h2, .human h2, .hero h2, .cta-final h2          { color: white; }

.dark h3, .core-dark h3, .prism-dark h3, .charcoal h3  { color: white; }

.dark p, .core-dark p, .prism-dark p, .charcoal p,
.navy p                                                  { color: var(--text-on-dark-sub); }

.dark .lead, .core-dark .lead, .prism-dark .lead,
.charcoal .lead, .navy .lead                             { color: var(--text-on-dark); }

.hero p                           { color: var(--text-on-hero); margin: 0 auto 16px; }
.cta-final p                      { color: var(--text-on-hero); margin: 0 auto 16px; }
.hero h1                          { color: white; }


/* =================================================================
   4. LAYOUT — SECTIONS
   ================================================================= */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-default);
}

.section.hero {
  background: var(--bg-hero);
  color: white;
  text-align: center;
  padding: var(--section-hero-padding);
}

/* Standardised dark sections — all use --bg-dark (#0a1e33) */
.section.dark       { background: var(--bg-dark); color: var(--text-on-dark); }
.section.core-dark  { background: var(--jumo-navy); color: var(--text-on-dark); }
.section.prism-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section.charcoal   { background: var(--bg-dark); color: var(--text-on-dark); }
.section.navy       { background: var(--jumo-navy); color: var(--text-on-dark); }
.section.light      { background: var(--bg-light); }

.section.human {
  background: var(--jumo-navy);
  color: white;
  text-align: center;
  padding: var(--section-human-padding);
  border-bottom: none;
}

.section.cta-final {
  background: var(--jumo-navy);
  color: white;
  text-align: center;
  padding: var(--section-cta-padding);
}


/* =================================================================
   5. NAVIGATION — BREADCRUMB & LOGO BAR
   ================================================================= */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 40px;
  font-size: 12px;
  color: var(--jumo-gray);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-default);
}
.breadcrumb a { color: var(--jumo-blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.logo-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 40px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-bar .logo-icon { width: 28px; height: 28px; }
.logo-bar .logo-text {
  font-size: 18px; font-weight: 700; letter-spacing: -0.5px;
}
.logo-bar .logo-text .jumo   { color: var(--jumo-blue); }
.logo-bar .logo-text .health { color: var(--jumo-charcoal); }


/* =================================================================
   6. BUTTONS — CTA SYSTEM
   ================================================================= */
.cta-group {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
}
.hero .cta-group,
.cta-final .cta-group { justify-content: center; }

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-med), border-color var(--transition-med);
}

.cta.primary              { background: var(--jumo-blue); color: white; }
.cta.primary:hover        { background: var(--jumo-deep-blue); }
.cta.accent               { background: var(--jumo-accent); color: var(--jumo-navy); font-weight: 700; }
.cta.secondary            { background: transparent; border: 2px solid; }
.cta.secondary.white      { color: white; border-color: rgba(255,255,255,0.3); }

/* Secondary dark — product-aware:
   CORE pages use --core-color, PRISM pages use --prism-color.
   Default is --core-color; PRISM pages add .page-prism on <body>. */
.cta.secondary.dark       { color: var(--core-color); border-color: var(--core-color); }
.page-prism .cta.secondary.dark { color: var(--prism-color); border-color: var(--prism-color); }

.cta.ghost                { background: rgba(255,255,255,0.08); color: white; border: 1px solid var(--border-white-med); }
.cta.white-solid          { background: white; color: var(--jumo-navy); }


/* =================================================================
   7. ANNOTATIONS (dev/design reference — remove in production)
   ================================================================= */
.annotation {
  background: #fefce8;
  border-left: 4px solid #eab308;
  padding: 12px 20px;
  margin: 0 auto;
  max-width: var(--max-width);
  font-size: 12px;
  color: #854d0e;
  line-height: 1.6;
}
.annotation strong { color: #713f12; }

.tag {
  display: inline-block; font-size: 12px; padding: 2px 8px;
  border-radius: 4px; font-weight: 600; margin-right: 6px; vertical-align: middle;
}
.tag.seo   { background: #dbeafe; color: #1e40af; }
.tag.aeo   { background: #ede9fe; color: var(--jumo-deep-blue); }
.tag.geo   { background: #d1fae5; color: #065f46; }
.tag.ux    { background: #fce7f3; color: #9d174d; }
.tag.tone  { background: #fdfde8; color: #6b7a14; }
.tag.brand { background: #e0f2fe; color: #0369a1; }
.tag.v4    { background: #dbeafe; color: #1e3a8a; }


/* =================================================================
   8. SHARED COMPONENTS
   ================================================================= */

/* ---- Stats Row ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border-white-soft);
}
.stat { text-align: center; }
.stat-number { font-size: 36px; font-weight: 900; color: white; }
.stat-label  { font-size: 12px; color: var(--text-on-dark-dim); line-height: 1.4; margin-top: 4px; }

/* ---- Outcome Tiles ---- */
.outcome-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0;
}
.outcome-tile {
  background: var(--surface-blue-light);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
  padding: 20px; text-align: center;
}
.outcome-tile .num   { font-size: 28px; font-weight: 900; color: var(--jumo-blue); margin-bottom: 4px; }
.outcome-tile .label { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

/* Dark-section variant */
.dark .outcome-tile       { background: var(--surface-blue-strong); border-color: var(--border-blue-strong); }
.dark .outcome-tile .label { color: var(--text-muted); }

/* CORE pages: outcome-tile .num uses --core-color */
.outcome-tiles.core-tiles .outcome-tile .num { color: var(--core-color); }

/* 4-column variant (CORE Solution) */
.outcome-tiles.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Light variant (Homepage) */
.outcome-tiles-light {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0;
}
.outcome-tile-light {
  background: var(--bg-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
}
.outcome-tile-light .num   { font-size: 28px; font-weight: 900; color: var(--text-heading); margin-bottom: 4px; }
.outcome-tile-light .label { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

/* ---- Contrast Columns (unified name) ----
   Previously: .contrast-columns, .contrast-grid, .flow-contrast, .gov-matrix
   Now: always .contrast-columns with semantic sub-classes */
.contrast-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-xl); overflow: hidden; margin: 32px 0;
  border: 1px solid var(--border-white-soft);
}
.contrast-col { padding: 28px; }

/* Negative side */
.contrast-col.bad,
.contrast-col.old,
.contrast-col.unsolved,
.contrast-col.without    { background: var(--surface-accent-light); }

/* Positive side */
.contrast-col.good,
.contrast-col.new,
.contrast-col.solved,
.contrast-col.with       { background: var(--surface-blue-medium); }

/* Light-bg variant (governance, non-dark sections) */
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.bad,
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.old,
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.without {
  background: var(--surface-accent-faint);
}
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.good,
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.new,
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.with {
  background: var(--surface-blue-faint);
}

.contrast-col h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Dark-section heading colors */
.dark .contrast-col.bad h4,
.prism-dark .contrast-col.bad h4,
.charcoal .contrast-col.bad h4,
.contrast-col.old h4,
.contrast-col.unsolved h4,
.contrast-col.without h4       { color: var(--accent-heading); }

.dark .contrast-col.good h4,
.prism-dark .contrast-col.good h4,
.charcoal .contrast-col.good h4,
.contrast-col.new h4,
.contrast-col.solved h4,
.contrast-col.with h4          { color: var(--blue-heading-dark); }

/* Light-section heading colors */
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.without h4 { color: var(--jumo-charcoal); border-bottom-color: var(--border-default); }
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col.with h4    { color: var(--prism-color); border-bottom-color: var(--border-default); }

.contrast-col ul { list-style: none; padding: 0; }
.contrast-col ul li {
  font-size: 14px; padding: 6px 0; line-height: 1.55;
}
/* Dark sections */
.dark .contrast-col ul li,
.prism-dark .contrast-col ul li,
.charcoal .contrast-col ul li { color: var(--text-on-dark-sub); }
/* Light sections */
.section:not(.dark):not(.prism-dark):not(.core-dark):not(.charcoal) .contrast-col ul li { color: var(--text-paragraph); }

/* ---- FAQ (unified structure) ----
   Standard: .faq-list > .faq-item > h4 + p
   Homepage variant uses .faq-grid for 2-col layout */
.faq-list { margin-top: 24px; }
.faq-item {
  padding: 20px 0; border-bottom: 1px solid var(--border-default);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; line-height: 1.4; }
.faq-item p  { font-size: 15px; color: var(--text-paragraph); line-height: 1.6; margin: 0; max-width: none; }

/* Legacy Solutions Hub FAQ classes — map to standard */
.faq-q { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.faq-a { font-size: 15px; color: var(--text-paragraph); line-height: 1.7; max-width: var(--max-width-text); }

/* Homepage 2-column FAQ grid */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.faq-grid .faq-item {
  padding: 20px; background: var(--bg-white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default);
}
.faq-grid .faq-item h4 { font-size: 15px; }
.faq-grid .faq-item p  { font-size: 14px; }

/* ---- IS / IS NOT Grid ---- */
.is-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0;
}
.is-col h4 {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid;
}
/* CORE pages */
.is-col.yes h4 { color: var(--core-color); border-color: var(--core-color); }
/* PRISM pages */
.page-prism .is-col.yes h4 { color: var(--prism-color); border-color: var(--prism-color); }
.is-col.no h4  { color: var(--jumo-charcoal); border-color: var(--jumo-charcoal); }

.is-col ul { list-style: none; padding: 0; }
.is-col ul li {
  font-size: 15px; padding: 6px 0; line-height: 1.5;
  color: var(--text-paragraph); padding-left: 20px; position: relative;
}
.is-col.yes ul li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--core-color);
}
.page-prism .is-col.yes ul li::before { background: var(--prism-color); }
.is-col.no ul li::before {
  content: "\00d7"; position: absolute; left: 0; top: 4px;
  color: var(--jumo-charcoal); font-size: 18px; font-weight: 800; line-height: 1;
}

/* ---- Layer Blocks (unified name) ----
   Previously: .arch-layers/.arch-layer (PRISM), .process-layers/.process-layer (CORE)
   Now: both use the same structural styles */
.arch-layers,
.process-layers {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin: 32px 0; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border-blue-med);
}
.arch-layer,
.process-layer {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(17,127,195,0.1);
  display: grid; grid-template-columns: 180px 1fr; gap: 24px;
  align-items: start;
}
.arch-layer:last-child,
.process-layer:last-child { border-bottom: none; }
.arch-layer:nth-child(odd),
.process-layer:nth-child(odd) { background: rgba(17,127,195,0.03); }
.arch-layer:nth-child(even),
.process-layer:nth-child(even) { background: var(--bg-white); }

.arch-layer .layer-name,
.process-layer .layer-name {
  font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px; padding-top: 2px;
}
/* PRISM pages */
.arch-layer .layer-name { color: var(--prism-color); }
/* CORE pages */
.process-layer .layer-name { color: var(--core-color); }

.arch-layer .layer-num,
.process-layer .layer-num {
  font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: 4px;
}
.arch-layer .layer-num    { color: var(--blue-heading-dark); }
.process-layer .layer-num { color: #a0c4e8; }

.arch-layer .layer-body,
.process-layer .layer-body { font-size: 15px; color: var(--text-paragraph); line-height: 1.65; }
.arch-layer .layer-body strong    { color: #1a1a2e; }
.process-layer .layer-body strong { color: var(--jumo-charcoal); }

/* ---- Playbook Grid ---- */
.playbook-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 28px 0;
}
.playbook {
  background: var(--surface-accent-faint);
  border: 1px solid rgba(204,219,47,0.12);
  border-radius: var(--radius-lg); padding: 20px;
}
.playbook .pb-title { font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; line-height: 1.4; }
.playbook .pb-why   { font-size: 13px; color: var(--jumo-charcoal); font-weight: 600; margin-bottom: 6px; }
.playbook .pb-text  { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ---- Index Cards ---- */
.index-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0;
}
.index-card {
  background: var(--surface-blue-light);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg); padding: 24px;
}
.index-card .idx-name { font-size: 13px; font-weight: 800; color: var(--prism-color); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.index-card .idx-full { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; line-height: 1.3; }
.index-card .idx-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ---- Related Pages Grid ---- */
.related-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 24px;
}
.related-link {
  display: block; padding: 20px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  text-decoration: none; color: var(--text-heading);
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.related-link:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 2px 8px rgba(17,127,195,0.1);
}
.related-link .rl-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--jumo-blue); margin-bottom: 6px; }
.related-link .rl-title { font-size: 15px; font-weight: 600; color: var(--jumo-navy); margin-bottom: 4px; }
.related-link .rl-desc  { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

/* ---- Diagnostic List ---- */
.diagnostic-list {
  display: flex; gap: 16px; justify-content: center; margin: 24px 0; flex-wrap: wrap;
}
.diagnostic-item {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 14px 20px; text-align: center;
  flex: 1; min-width: 180px; max-width: 260px;
}
.diagnostic-item .diag-name { font-size: 13px; font-weight: 700; color: var(--jumo-accent); margin-bottom: 4px; }
.diagnostic-item .diag-desc { font-size: 12px; color: var(--text-on-dark-dim); line-height: 1.4; }

/* ---- Value Grid ---- */
.value-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0;
}
.value-block {
  padding: 28px; border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); background: var(--bg-light);
}
.value-block h3 { font-size: 18px; font-weight: 700; color: var(--jumo-navy); margin-bottom: 10px; }
.value-block p  { font-size: 15px; color: var(--text-paragraph); line-height: 1.6; margin: 0; max-width: none; }

/* ---- Solution Routing Cards ---- */
.solution-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin: 32px 0;
}
.solution-cards.cols-2 { grid-template-columns: 1fr 1fr; }
.solution-card {
  border-radius: var(--radius-lg); padding: 28px; text-decoration: none;
  color: var(--text-heading); border: 2px solid var(--border-default);
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
  display: block;
}
.solution-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.solution-card .card-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
.solution-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.solution-card .card-when { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 8px; }
.solution-card .card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.solution-card .card-engagement {
  font-size: 12px; color: var(--text-muted); margin-top: 12px; font-weight: 500;
  padding-top: 12px; border-top: 1px solid var(--border-default);
}

.solution-card.core          { border-color: var(--core-color); }
.solution-card.core .card-label { color: var(--core-color); }
.solution-card.prism         { border-color: var(--prism-color); }
.solution-card.prism .card-label { color: var(--prism-color); }
.solution-card.combined      { border-color: var(--jumo-navy); }
.solution-card.combined .card-label { color: var(--jumo-navy); }

/* ---- Trust Bar ---- */
.trust-bar {
  text-align: center; padding: 28px 40px;
  max-width: var(--max-width); margin: 0 auto;
}
.trust-bar p {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  letter-spacing: 0.5px; margin: 0 auto;
}
.trust-bar .trust-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); font-weight: 600; margin-bottom: 16px;
}
.trust-logos { display: flex; justify-content: center; gap: 40px; align-items: center; flex-wrap: wrap; }
.logo-placeholder {
  width: 100px; height: 36px; background: var(--bg-muted); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted);
}

/* ---- Page Meta ---- */
.page-meta {
  max-width: var(--max-width); margin: 0 auto; padding: 20px 40px;
  background: var(--bg-muted); font-size: 12px; color: var(--text-secondary);
  border-top: 2px solid var(--border-default);
}
.page-meta strong { color: var(--text-paragraph); }


/* =================================================================
   9. PAGE-SPECIFIC COMPONENTS
   ================================================================= */

/* ---- Homepage: Pillars ---- */
.pillars {
  display: flex; gap: 0; margin: 36px auto; max-width: var(--max-width-text);
  justify-content: center;
}
.pillar {
  text-align: center; padding: 20px 0; flex: 1;
  border-right: 1px solid var(--border-white-soft);
}
.pillar:last-child { border-right: none; }
.pillar .not-equal { font-size: 40px; font-weight: 900; line-height: 1; letter-spacing: -1px; margin-bottom: 4px; }
.pillar .not-equal .strike { color: rgba(255,255,255,0.35); position: relative; }
.pillar .not-equal .neq    { color: var(--jumo-accent); font-size: 28px; margin: 0 4px; vertical-align: middle; }
.pillar .not-equal .right  { color: white; }
.pillar .subtext { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }

.pillar-callout {
  background: var(--bg-dark); border-radius: var(--radius-xl);
  padding: 28px 32px; margin: 32px 0; text-align: center;
}
.pillar-callout .pillar-line { font-size: 28px; font-weight: 900; color: white; line-height: 1.3; }
.pillar-callout .pillar-line .strike { color: var(--text-paragraph); }
.pillar-callout .pillar-line .neq    { color: var(--jumo-accent); margin: 0 6px; }
.pillar-callout .pillar-line .right  { color: white; }
.pillar-callout .pillar-sub { font-size: 15px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ---- Homepage: Broken Model ---- */
.broken-list { list-style: none; padding: 0; margin: 24px 0; }
.broken-list li {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px; display: flex; gap: 14px; align-items: flex-start; line-height: 1.55;
}
.broken-list li .x {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(204,219,47,0.15); color: var(--jumo-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; margin-top: 2px;
}
.broken-list li .text        { color: var(--text-on-dark-sub); }
.broken-list li .text strong { color: #f1f5f9; }

.accusation {
  font-size: 20px; font-weight: 700; line-height: 1.5;
  color: white; margin: 32px 0;
  padding-left: 20px; border-left: 4px solid var(--jumo-accent);
}
.accusation span.dim { color: var(--text-secondary); }

/* ---- Homepage: Flow Contrast ---- */
.flow-contrast {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-xl); overflow: hidden; margin: 32px 0;
  border: 1px solid var(--border-white-soft);
}
.flow-col { padding: 24px 28px; }
.flow-col.old { background: var(--surface-accent-light); }
.flow-col.new { background: var(--surface-blue-medium); }
.flow-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.flow-col.old h4 { color: var(--accent-heading); }
.flow-col.new h4 { color: var(--blue-heading-dark); }
.flow-steps { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.flow-step { font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-sm); line-height: 1; }
.flow-col.old .flow-step { background: rgba(204,219,47,0.1); color: var(--accent-heading); }
.flow-col.new .flow-step { background: var(--surface-blue-strong); color: var(--blue-heading-dark); }
.flow-arrow { color: rgba(255,255,255,0.2); font-size: 14px; font-weight: 700; }
.flow-gap {
  font-size: 13px; font-weight: 800; padding: 6px 12px;
  border-radius: var(--radius-sm); background: rgba(204,219,47,0.2); color: var(--jumo-accent);
  border: 1px dashed rgba(204,219,47,0.4);
}

/* ---- Homepage: Product Cards ---- */
.product-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px;
}
.product-card { border-radius: var(--radius-2xl); padding: 32px; position: relative; }
.product-card.core  { background: #e8f4fd; border: 2px solid var(--blue-heading-dark); }
.product-card.prism { background: #eef7ff; border: 2px solid #a0d2ef; }
.product-card .badge {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 10px;
}
.product-card.core .badge  { color: var(--core-color); }
.product-card.prism .badge { color: var(--prism-color); }
.product-card h3 { margin-bottom: 12px; }
.product-card.core h3, .product-card.prism h3 { color: var(--jumo-navy); }
.product-card p { font-size: 15px; color: var(--text-paragraph); max-width: none; margin-bottom: 16px; }
.product-card .hook { font-size: 15px; font-weight: 600; font-style: italic; margin-bottom: 16px; line-height: 1.5; }
.product-card.core .hook  { color: var(--core-color); }
.product-card.prism .hook { color: var(--prism-color); }
.product-card .feat-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.product-card .feat-list li {
  font-size: 15px; color: var(--text-paragraph); padding: 5px 0 5px 20px;
  position: relative; line-height: 1.5;
}
.product-card .feat-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 2px;
}
.product-card.core .feat-list li::before  { background: var(--core-color); }
.product-card.prism .feat-list li::before { background: var(--prism-color); }
.product-card .cta { font-size: 14px; padding: 10px 20px; }
.product-card.core .cta.primary  { background: var(--core-color); color: white; }
.product-card.prism .cta.primary { background: var(--prism-color); color: white; }

/* Together banner */
.together-banner {
  border: 2px dashed var(--text-muted); border-radius: var(--radius-xl);
  padding: 24px 32px; margin-top: 28px; text-align: center;
  background: var(--bg-light);
}
.together-banner h3 { color: var(--jumo-navy); font-size: 18px; margin-bottom: 6px; }
.together-banner p  { margin: 0 auto; font-size: 15px; max-width: 620px; color: var(--text-secondary); }

/* Indication chips */
.indication-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.indication-chip {
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: 13px;
  font-weight: 500; text-decoration: none;
  background: var(--surface-blue-medium); border: 1px solid var(--border-blue-soft); color: var(--jumo-navy);
}

/* Human quote */
.human-quote {
  font-size: 22px; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.85); max-width: 640px;
  margin: 0 auto; font-style: italic;
}
.human-quote strong { font-weight: 700; color: white; font-style: normal; }

/* Anger list */
.anger-list { list-style: none; padding: 0; margin: 24px auto; max-width: 560px; text-align: left; }
.anger-list li {
  padding: 8px 0; font-size: 16px; color: var(--text-on-hero);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.anger-list li .dash { color: var(--jumo-accent); font-weight: 700; flex-shrink: 0; }

/* ---- Homepage: PRISM Workflow Stages ---- */
.workflow-stages {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin: 28px 0 12px; position: relative;
}
.stage {
  background: var(--surface-blue-medium); border: 1px solid var(--border-blue-med);
  border-radius: var(--radius-md); padding: 16px 8px; text-align: center;
}
.stage .stage-num   { font-size: 22px; font-weight: 900; color: var(--prism-stage-num); line-height: 1; margin-bottom: 6px; }
.stage .stage-label { font-size: 12px; font-weight: 600; color: var(--prism-stage-label); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }
.stage .stage-desc  { font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.3; }
.stage .stage-risk  { font-size: 12px; color: var(--jumo-charcoal); margin-top: 8px; line-height: 1.3; font-weight: 500; font-style: italic; }
.stage .stage-items { font-size: 12px; color: var(--text-secondary); margin-top: 6px; line-height: 1.4; }

/* ---- Homepage/CORE: Lifecycle Stages ---- */
.lifecycle-stages {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  margin: 28px 0 12px;
}
.lc-stage {
  background: rgba(0,102,179,0.08); border: 1px solid rgba(0,102,179,0.2);
  border-radius: var(--radius-md); padding: 14px 10px; text-align: center;
}
.lc-stage .lc-label { font-size: 12px; font-weight: 600; color: var(--core-color); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }
.lc-stage .lc-risk  { font-size: 12px; color: var(--jumo-accent); margin-top: 6px; line-height: 1.3; font-style: italic; }

/* ---- CORE Solution: Competitive Grid ---- */
.comp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0;
}
.comp-card {
  border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 20px;
  background: var(--bg-white);
}
.comp-card .comp-name    { font-size: 13px; font-weight: 800; color: var(--jumo-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.comp-card .comp-problem { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.comp-card.core-card {
  border-color: var(--jumo-blue); background: var(--surface-blue-faint);
  grid-column: 1 / -1;
}
.comp-card.core-card .comp-name    { color: var(--core-color); }
.comp-card.core-card .comp-problem { color: var(--jumo-charcoal); font-weight: 500; }

/* ---- CORE Solution: Asset Grid ---- */
.asset-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0;
}
.asset-tile {
  background: var(--surface-blue-faint); border: 1px solid rgba(17,127,195,0.12);
  border-radius: var(--radius-md); padding: 16px; text-align: center;
}
.asset-tile .asset-name { font-size: 13px; font-weight: 600; color: var(--jumo-charcoal); line-height: 1.4; }

/* ---- How CORE Works: Phase Blocks ---- */
.phase-block {
  margin: 40px 0; padding: 40px; border-radius: var(--radius-2xl);
  border: 2px solid rgba(0,102,179,0.15); background: var(--bg-white);
  position: relative;
}
.phase-block .phase-num {
  position: absolute; top: -16px; left: 32px;
  background: var(--core-color); color: white; font-size: 13px; font-weight: 800;
  padding: 6px 16px; border-radius: var(--radius-pill); letter-spacing: 1px;
  text-transform: uppercase;
}
.phase-block h3 { font-size: 24px; font-weight: 800; color: var(--jumo-navy); margin-bottom: 12px; margin-top: 8px; }
.phase-block .phase-question { font-size: 17px; font-weight: 600; color: var(--core-color); margin-bottom: 16px; font-style: italic; }
.phase-block p { font-size: 16px; color: var(--text-paragraph); line-height: 1.7; max-width: none; }
.phase-block .phase-outputs { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-default); }
.phase-block .phase-outputs-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--core-color); margin-bottom: 10px;
}
.phase-block .output-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phase-block .output-list li {
  font-size: 14px; color: var(--text-paragraph); padding: 6px 0 6px 20px;
  position: relative; line-height: 1.5;
}
.phase-block .output-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--core-color);
}

/* ---- How CORE Works: Lifecycle Deep-Dive ---- */
.lifecycle-deep { margin: 32px 0; }
.lifecycle-card {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border-default); align-items: start;
}
.lifecycle-card:last-child { border-bottom: none; }
.lifecycle-card .lc-num-block { text-align: center; }
.lifecycle-card .lc-num { font-size: 36px; font-weight: 900; color: var(--core-color); line-height: 1; }
.lifecycle-card .lc-stage-name {
  font-size: 12px; font-weight: 700; color: var(--jumo-blue);
  text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px; line-height: 1.3;
}
.lifecycle-card .lc-body h4 { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.lifecycle-card .lc-body p  { font-size: 15px; color: var(--text-paragraph); line-height: 1.65; margin-bottom: 10px; max-width: none; }
.lifecycle-card .lc-risk {
  font-size: 13px; color: var(--jumo-charcoal); font-weight: 600; margin-top: 8px;
  padding: 8px 12px; background: var(--surface-accent-light); border-radius: var(--radius-sm);
  border-left: 3px solid var(--jumo-accent);
}
.lifecycle-card .lc-assets { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }
.lifecycle-card .lc-assets strong { color: var(--jumo-charcoal); }

/* ---- How CORE Works: Principles Grid ---- */
.principles-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0;
}
.principle-card {
  background: var(--surface-blue-faint); border: 1px solid rgba(17,127,195,0.12);
  border-radius: var(--radius-xl); padding: 28px;
}
.principle-card .principle-num { font-size: 28px; font-weight: 900; color: #a0c4e8; line-height: 1; margin-bottom: 8px; }
.principle-card h4 { font-size: 16px; font-weight: 700; color: var(--jumo-navy); margin-bottom: 8px; }
.principle-card p  { font-size: 14px; color: var(--text-paragraph); line-height: 1.6; margin: 0; max-width: none; }

/* ---- How CORE Works: Amendment Flow ---- */
.amendment-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
  align-items: center; margin: 32px 0;
}
.amendment-step {
  background: var(--bg-white); border: 2px solid rgba(0,102,179,0.2);
  border-radius: var(--radius-xl); padding: 20px; text-align: center;
}
.amendment-step .step-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--core-color); margin-bottom: 6px; }
.amendment-step .step-text  { font-size: 14px; color: var(--text-paragraph); line-height: 1.5; }
.amendment-arrow { font-size: 24px; color: #a0c4e8; text-align: center; padding: 0 8px; }

/* ---- How CORE Works: Caregiver Grid ---- */
.caregiver-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin: 32px 0;
}
.caregiver-card {
  background: var(--bg-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); padding: 24px;
  border-top: 3px solid var(--core-color);
}
.caregiver-card h4 { font-size: 15px; font-weight: 700; color: var(--jumo-navy); margin-bottom: 8px; }
.caregiver-card p  { font-size: 14px; color: var(--text-paragraph); line-height: 1.6; margin: 0; max-width: none; }

/* ---- How CORE Works: Walkthrough Timeline ---- */
.walkthrough { margin: 32px 0; position: relative; padding-left: 40px; }
.walkthrough::before {
  content: ""; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--border-default);
}
.walk-step { position: relative; padding: 0 0 40px 0; }
.walk-step:last-child { padding-bottom: 0; }
.walk-step::before {
  content: ""; position: absolute; left: -33px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--core-color); border: 3px solid #e8f4fc;
}
.walk-step .walk-week { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--core-color); margin-bottom: 6px; }
.walk-step h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.walk-step p  { font-size: 15px; color: var(--text-paragraph); line-height: 1.6; margin: 0; max-width: none; }

/* ---- PRISM Architecture: Stage Deep Dives ---- */
.stage-deep {
  margin: 40px 0;
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-xl); overflow: hidden;
}
.stage-header {
  background: var(--surface-blue-light); padding: 24px 32px;
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(17,127,195,0.1);
}
.stage-num   { font-size: 36px; font-weight: 900; color: var(--prism-color); line-height: 1; text-align: center; }
.stage-title { font-size: 20px; font-weight: 800; color: var(--text-heading); }
.stage-subtitle { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.stage-body  { padding: 28px 32px; }
.stage-body p { font-size: 16px; line-height: 1.7; color: var(--text-paragraph); max-width: none; margin-bottom: 14px; }
.stage-body p:last-child { margin-bottom: 0; }
.stage-body strong { color: var(--text-heading); }

.stage-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;
}
.stage-detail-box {
  background: var(--bg-light); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 20px;
}
.stage-detail-box h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--prism-color); margin-bottom: 10px;
}
.stage-detail-box ul { list-style: none; padding: 0; }
.stage-detail-box ul li {
  font-size: 14px; color: var(--text-paragraph); line-height: 1.5;
  padding: 4px 0 4px 16px; position: relative;
}
.stage-detail-box ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 2px; background: var(--prism-color);
}

/* ---- PRISM Architecture: Governance Matrix ---- */
.gov-matrix {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border-blue-soft); border-radius: var(--radius-xl);
  overflow: hidden; margin: 32px 0;
}
.gov-col { padding: 28px; }
.gov-col.without { background: var(--surface-accent-faint); }
.gov-col.with    { background: var(--surface-blue-faint); }
.gov-col h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
}
.gov-col.without h4 { color: var(--jumo-charcoal); }
.gov-col.with h4    { color: var(--prism-color); }
.gov-col ul { list-style: none; padding: 0; }
.gov-col ul li { font-size: 14px; padding: 6px 0; line-height: 1.55; color: var(--text-paragraph); }

/* ---- PRISM Architecture: Transition Flow ---- */
.transition-flow {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin: 36px 0 12px; position: relative;
}
.tf-stage {
  background: var(--surface-blue-strong); border: 1px solid var(--border-blue-strong);
  border-radius: var(--radius-md); padding: 16px 8px; text-align: center;
}
.tf-stage.active { background: rgba(17,127,195,0.25); border-color: var(--prism-color); }
.tf-stage .tf-num   { font-size: 22px; font-weight: 900; color: var(--prism-stage-num); line-height: 1; margin-bottom: 6px; }
.tf-stage.active .tf-num { color: var(--prism-color); }
.tf-stage .tf-label { font-size: 12px; font-weight: 600; color: var(--prism-stage-label); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }
.tf-stage.active .tf-label { color: var(--prism-color); }

/* ---- PRISM AI & Data: Deep Blocks ---- */
.deep-block {
  margin: 40px 0;
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-xl); overflow: hidden;
}
.deep-block-header {
  background: var(--surface-blue-light); padding: 24px 32px;
  border-bottom: 1px solid rgba(17,127,195,0.1);
}
.deep-block-header h3 { font-size: 20px; font-weight: 800; color: var(--text-heading); margin-bottom: 4px; }
.deep-block-header .db-subtitle { font-size: 14px; color: var(--text-secondary); }
.deep-block-body { padding: 28px 32px; }
.deep-block-body p { font-size: 16px; line-height: 1.7; color: var(--text-paragraph); max-width: none; margin-bottom: 14px; }
.deep-block-body p:last-child { margin-bottom: 0; }
.deep-block-body strong { color: var(--text-heading); }

.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;
}
.detail-box {
  background: var(--bg-light); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 20px;
}
.detail-box h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--prism-color); margin-bottom: 10px;
}
.detail-box ul { list-style: none; padding: 0; }
.detail-box ul li {
  font-size: 14px; color: var(--text-paragraph); line-height: 1.5;
  padding: 4px 0 4px 16px; position: relative;
}
.detail-box ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 2px; background: var(--prism-color);
}

/* ---- PRISM AI & Data: Index Deep ---- */
.index-deep {
  margin: 36px 0;
  border: 1px solid var(--border-blue-med); border-radius: var(--radius-xl); overflow: hidden;
}
.index-header {
  background: var(--surface-blue-medium); padding: 24px 32px;
  border-bottom: 1px solid rgba(17,127,195,0.1);
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: center;
}
.index-abbr     { font-size: 28px; font-weight: 900; color: var(--prism-color); letter-spacing: 1px; }
.index-fullname { font-size: 18px; font-weight: 700; color: var(--text-heading); }
.index-oneline  { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }
.index-body     { padding: 28px 32px; }
.index-body p   { font-size: 16px; line-height: 1.7; color: var(--text-paragraph); max-width: none; margin-bottom: 14px; }
.index-body strong { color: var(--text-heading); }

/* ---- PRISM AI & Data: Signal Flow ---- */
.signal-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0;
}
.signal-step {
  background: var(--surface-blue-light); border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
}
.signal-step .ss-num   { font-size: 24px; font-weight: 900; color: var(--prism-color); margin-bottom: 6px; }
.signal-step .ss-label { font-size: 13px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.signal-step .ss-desc  { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

/* ---- Disease Complexity: Tier Grid ---- */
.tier-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin: 32px 0;
}
.tier-card {
  border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  padding: 28px; text-align: center; background: var(--bg-light);
}
.tier-card .tier-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.tier-card h4 { font-size: 18px; font-weight: 800; color: var(--jumo-navy); margin-bottom: 8px; }
.tier-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0 auto; max-width: none; }

/* ---- Disease Complexity: Detail Block ---- */
.detail-block {
  margin: 32px 0;
  border: 1px solid var(--border-blue-soft); border-radius: var(--radius-xl); overflow: hidden;
}
.detail-block-header {
  background: var(--surface-blue-light); padding: 20px 28px;
  border-bottom: 1px solid rgba(17,127,195,0.1);
}
.detail-block-header h4 {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--prism-color); margin-bottom: 0;
}
.detail-block-body { padding: 24px 28px; }
.detail-block-body p { font-size: 16px; line-height: 1.7; color: var(--text-paragraph); max-width: none; margin-bottom: 12px; }
.detail-block-body p:last-child { margin-bottom: 0; }
.detail-block-body strong { color: var(--text-heading); }

/* Dark variant */
.dark .detail-block           { border-color: var(--border-white-soft); }
.dark .detail-block-header    { background: rgba(255,255,255,0.05); border-bottom-color: rgba(255,255,255,0.08); }
.dark .detail-block-header h4 { color: var(--blue-heading-dark); }
.dark .detail-block-body p    { color: var(--text-on-dark-sub); }
.dark .detail-block-body strong { color: white; }

/* Example callout */
.example-callout {
  margin-top: 20px; padding: 20px 24px;
  background: var(--surface-blue-faint);
  border-left: 3px solid var(--prism-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.example-callout p { font-size: 15px; font-style: italic; color: #334155; margin: 0; max-width: none; }
.dark .example-callout { background: rgba(126,200,227,0.06); border-left-color: var(--blue-heading-dark); }
.dark .example-callout p { color: var(--text-on-dark); }

/* ---- Disease Complexity: Comparison Table ---- */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 14px;
}
.comparison-table th {
  padding: 14px 16px; text-align: left; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--border-default);
}
/* Solutions Hub variant: colored header columns */
.comparison-table th.core-col     { color: var(--core-color); background: #f0f7ff; }
.comparison-table th.prism-col    { color: var(--prism-color); background: #e8f4fc; }
.comparison-table th.both-col     { color: var(--jumo-navy); background: #f0f4f8; }
.comparison-table th.criteria-col { color: var(--text-secondary); background: var(--bg-light); }
/* Disease Complexity variant: navy header */
.comparison-table.navy-header th {
  background: var(--jumo-navy); color: white;
}
.comparison-table.navy-header th:first-child { border-radius: var(--radius-md) 0 0 0; }
.comparison-table.navy-header th:last-child  { border-radius: 0 var(--radius-md) 0 0; }

.comparison-table td {
  padding: 14px 16px; border-bottom: 1px solid #f1f5f9;
  vertical-align: top; line-height: 1.5; color: var(--text-paragraph);
}
.comparison-table tr:hover td { background: #fafbfc; }
.comparison-table td:first-child { font-weight: 600; color: var(--text-heading); }

.check        { color: var(--core-color); font-weight: 700; }
.dash         { color: var(--text-on-dark-sub); }
.core-accent  { color: var(--core-color); font-weight: 600; }
.prism-accent { color: var(--prism-color); font-weight: 600; }
.both-accent  { color: var(--jumo-navy); font-weight: 600; }

/* ---- Solutions Hub: Product Hero Cards ---- */
.product-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px; max-width: var(--max-width-text); margin-left: auto; margin-right: auto;
}
.product-hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl); padding: 28px 24px; text-align: left;
  transition: background var(--transition-med);
}
.product-hero-card:hover { background: rgba(255,255,255,0.1); }
.product-hero-card .prod-name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.product-hero-card.core .prod-name,
.product-hero-card.prism .prod-name { color: var(--blue-heading-dark); }
.product-hero-card .prod-line { font-size: 13px; color: var(--text-on-dark-dim); line-height: 1.5; margin-bottom: 12px; }
.product-hero-card .prod-link { font-size: 13px; font-weight: 600; text-decoration: none; }
.product-hero-card.core .prod-link  { color: var(--core-color); }
.product-hero-card.prism .prod-link { color: var(--prism-color); }

/* ---- Solutions Hub: Reframe Grid ---- */
.reframe-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px;
}
.reframe-card { background: var(--bg-muted); border-radius: var(--radius-xl); padding: 28px; }
.reframe-card h4 { font-size: 15px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.reframe-card p  { font-size: 15px; color: var(--text-paragraph); line-height: 1.6; margin-bottom: 0; }
.reframe-card.old { border-left: 4px solid var(--jumo-gray); }
.reframe-card.new { border-left: 4px solid var(--jumo-accent); background: #f8fdf0; }

/* ---- Solutions Hub: Scenario Cards ---- */
.scenario-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 32px;
}
.scenario-card { border-radius: var(--radius-2xl); padding: 32px 24px; position: relative; }
.scenario-card.core-card  { background: #f0f7ff; border: 2px solid var(--core-color); }
.scenario-card.prism-card { background: #e8f4fc; border: 2px solid var(--prism-color); }
.scenario-card.both-card  { background: #f0f4f8; border: 2px solid var(--jumo-navy); }
.scenario-card .scenario-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: 12px;
}
.scenario-card.core-card .scenario-label  { color: var(--core-color); }
.scenario-card.prism-card .scenario-label { color: var(--prism-color); }
.scenario-card.both-card .scenario-label  { color: var(--jumo-navy); }
.scenario-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.scenario-card p  { font-size: 15px; line-height: 1.6; color: var(--text-paragraph); margin-bottom: 12px; }
.scenario-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.scenario-card li {
  font-size: 14px; color: var(--text-paragraph); line-height: 1.5;
  padding: 6px 0 6px 20px; position: relative;
}
.scenario-card li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 8px; height: 8px; border-radius: 2px;
}
.scenario-card.core-card li::before  { background: var(--core-color); }
.scenario-card.prism-card li::before { background: var(--prism-color); }
.scenario-card.both-card li::before  { background: var(--jumo-navy); }
.scenario-link { display: inline-block; margin-top: 20px; font-size: 14px; font-weight: 700; text-decoration: none; }
.scenario-card.core-card .scenario-link  { color: var(--core-color); }
.scenario-card.prism-card .scenario-link { color: var(--prism-color); }
.scenario-card.both-card .scenario-link  { color: var(--jumo-navy); }

/* ---- Solutions Hub: Signal Cards ---- */
.signal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.signal-card {
  background: var(--bg-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-xl); padding: 24px; position: relative;
}
.signal-card .signal-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: 8px;
}
.signal-card.core-signal .signal-label  { color: var(--core-color); }
.signal-card.prism-signal .signal-label { color: var(--prism-color); }
.signal-card.both-signal .signal-label  { color: var(--jumo-navy); }
.signal-card .signal-text { font-size: 15px; color: #1a1a2e; font-weight: 500; line-height: 1.5; }
.signal-card .signal-arrow { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.signal-card .signal-rec { font-size: 13px; font-weight: 700; margin-top: 4px; }
.signal-card.core-signal .signal-rec  { color: var(--core-color); }
.signal-card.prism-signal .signal-rec { color: var(--prism-color); }
.signal-card.both-signal .signal-rec  { color: var(--jumo-navy); }

/* ---- Solutions Hub: Philosophy Box ---- */
.philosophy-box {
  background: #f8fdf0; border: 2px solid var(--jumo-accent); border-radius: var(--radius-2xl);
  padding: 40px 32px; text-align: center; margin-top: 40px;
}
.philosophy-box h3 { font-size: 24px; font-weight: 800; color: var(--jumo-navy); margin-bottom: 12px; }
.philosophy-box p  { font-size: 17px; color: var(--text-paragraph); line-height: 1.7; max-width: 640px; margin: 0 auto; }

/* ---- Solutions Hub: Architecture Diagram ---- */
.arch-diagram {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  align-items: center; margin-top: 40px;
}
.arch-diagram .arch-layer { border-radius: var(--radius-2xl); padding: 32px 24px; }
.arch-diagram .arch-layer.core-layer {
  background: #f0f7ff; border: 2px solid var(--core-color);
  border-right: none; border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
}
.arch-diagram .arch-layer.prism-layer {
  background: #e8f4fc; border: 2px solid var(--prism-color);
  border-left: none; border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
}
.arch-bridge { background: var(--jumo-navy); color: white; padding: 16px 20px; text-align: center; min-width: 120px; }
.arch-diagram .arch-layer .arch-name { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.arch-diagram .arch-layer.core-layer .arch-name  { color: var(--core-color); }
.arch-diagram .arch-layer.prism-layer .arch-name { color: var(--prism-color); }
.arch-diagram .arch-layer .arch-tagline { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; font-style: italic; }
.arch-diagram .arch-layer ul { list-style: none; padding: 0; margin: 0; }
.arch-diagram .arch-layer li {
  font-size: 14px; color: var(--text-paragraph); padding: 4px 0 4px 16px;
  position: relative; line-height: 1.5;
}
.arch-diagram .arch-layer li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
}
.arch-diagram .arch-layer.core-layer li::before  { background: var(--core-color); }
.arch-diagram .arch-layer.prism-layer li::before { background: var(--prism-color); }
.arch-bridge .bridge-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; opacity: 0.6; margin-bottom: 6px; }
.arch-bridge .bridge-text  { font-size: 14px; font-weight: 700; line-height: 1.4; }

/* ---- Solutions Hub: Equity Bar ---- */
.equity-bar {
  background: #f8fdf0; border: 1px solid var(--jumo-accent); border-radius: var(--radius-xl);
  padding: 20px 28px; margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.equity-bar p { font-size: 15px; color: var(--text-paragraph); margin: 0; max-width: 600px; }
.equity-bar .equity-link { font-size: 14px; font-weight: 700; color: var(--jumo-navy); text-decoration: none; white-space: nowrap; }

/* ---- Solutions Hub: Crosslink Grid ---- */
.crosslink-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px;
}
.crosslink-card {
  border-radius: var(--radius-xl); padding: 24px; text-decoration: none;
  display: block; transition: transform var(--transition-fast);
}
.crosslink-card:hover { transform: translateY(-2px); }
.crosslink-card.core-link     { background: #f0f7ff; border: 1px solid var(--core-color); }
.crosslink-card.prism-link    { background: #e8f4fc; border: 1px solid var(--prism-color); }
.crosslink-card.equity-link   { background: #f8fdf0; border: 1px solid var(--jumo-accent); }
.crosslink-card.together-link { background: #f0f4f8; border: 1px solid var(--jumo-navy); }
.crosslink-card .cl-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: 6px;
}
.crosslink-card.core-link .cl-label     { color: var(--core-color); }
.crosslink-card.prism-link .cl-label    { color: var(--prism-color); }
.crosslink-card.equity-link .cl-label   { color: #6b7a14; }
.crosslink-card.together-link .cl-label { color: var(--jumo-navy); }
.crosslink-card .cl-title { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.crosslink-card .cl-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ---- Biopharma: Portfolio Outcomes ---- */
.portfolio-outcomes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; margin: 24px 0;
  list-style: none; padding: 0;
}
.portfolio-outcomes li {
  font-size: 15px; color: var(--text-on-dark-sub); line-height: 1.55;
  padding-left: 20px; position: relative;
}
.portfolio-outcomes li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--jumo-accent);
}

/* ---- Biotech: Constraint Grid ---- */
.constraint-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0;
}
.constraint-grid .constraint-block:last-child:nth-child(odd) {
  grid-column: 1 / -1; max-width: 50%; justify-self: center;
}
.constraint-block {
  padding: 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.constraint-block h4 { font-size: 16px; font-weight: 700; color: var(--jumo-accent); margin-bottom: 8px; }
.constraint-block p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; max-width: none; }

/* ---- Biotech: Economics Box ---- */
.economics-box {
  background: var(--bg-light); border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  padding: 32px; margin: 28px 0;
}
.economics-box h4 { font-size: 16px; font-weight: 700; color: var(--jumo-navy); margin-bottom: 12px; }
.economics-box p  { font-size: 15px; color: var(--text-paragraph); line-height: 1.65; margin-bottom: 12px; max-width: none; }
.economics-box p:last-child { margin-bottom: 0; }
.economics-box .stat-highlight { font-size: 15px; font-weight: 700; color: var(--prism-color); }
.economics-pullquote {
  font-size: 19px; font-weight: 700; color: var(--jumo-navy); line-height: 1.5;
  border-left: 4px solid var(--jumo-accent); padding-left: 20px; margin: 28px 0;
  max-width: none;
}


/* =================================================================
   9-B. ASSESSMENT TOOL
   ================================================================= */

/* ---- Form Container ---- */
.form-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
  background: var(--bg-white);
}
.form-container h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jumo-navy);
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.label-hint {
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  line-height: 1.4;
}

.form-group select,
.form-group input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-white);
  appearance: none;
  transition: border-color var(--transition-fast);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23383939' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--jumo-blue);
}

/* ---- Run Button ---- */
.run-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
  padding: 16px 32px;
  background: var(--jumo-navy);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-med);
}
.run-button:hover {
  background: var(--jumo-blue);
}

/* ---- Results Container ---- */
.results-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 64px;
  display: none;
}
.results-container.active,
.results-container[style*="display: block"] {
  display: block;
}

/* ---- Result Tabs ---- */
.result-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-default);
  margin-bottom: 32px;
}
.result-tab {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.result-tab:hover {
  color: var(--jumo-blue);
}
.result-tab.active {
  color: var(--jumo-navy);
  border-bottom-color: var(--jumo-navy);
  font-weight: 700;
}

/* ---- Result Panels ---- */
.result-panel {
  display: none;
}
.result-panel.active {
  display: block;
}

/* ---- TRI Score Display ---- */
.tri-score-display {
  text-align: center;
  padding: 40px 0 32px;
}
.tri-score-number {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--jumo-navy);
}
.tri-score-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tri-score-range {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- TRI Interpretation ---- */
.tri-interpretation {
  background: var(--surface-blue-light);
  border-left: 4px solid var(--jumo-blue);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ---- Sub-Scores ---- */
.sub-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sub-score-card {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 20px;
}
.score-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}
.score-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--jumo-navy);
}
.score-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 8px;
}
.score-bar {
  width: 100%;
  height: 6px;
  background: var(--border-default);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--jumo-blue);
  transition: width 0.6s ease;
}

/* ---- Precision CTA ---- */
.precision-cta {
  background: var(--bg-muted);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}
.precision-cta h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}
.precision-cta p {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 20px;
}

/* ---- CTA Button (inline) ---- */
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--jumo-blue);
  color: white;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-med);
}
.cta-button:hover {
  background: var(--jumo-deep-blue);
}

/* ---- Friction Stages (Tool Results) ---- */
.friction-stage {
  margin-bottom: 32px;
}
.friction-stage-header {
  font-size: 16px;
  font-weight: 800;
  color: var(--jumo-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--jumo-navy);
  margin-bottom: 16px;
}
.friction-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.friction-item {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.barrier-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jumo-blue);
  margin-bottom: 6px;
}
.friction-barrier {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.4;
}
.friction-intervention {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
}
.friction-severity {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.friction-severity.high   { background: #fef2f2; color: #991b1b; }
.friction-severity.medium { background: #fefce8; color: #854d0e; }
.friction-severity.low    { background: #f0fdf4; color: #166534; }

/* ---- Blueprint Phases ---- */
.blueprint-phase {
  margin-bottom: 32px;
}
.blueprint-phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.phase-number {
  width: 32px;
  height: 32px;
  background: var(--jumo-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.phase-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}
.phase-timing {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}

/* ---- Blueprint Actions ---- */
.blueprint-action {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.action-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 4px;
}
.action-detail {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
}
.action-priority {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.action-priority.priority-critical { background: #fef2f2; color: #991b1b; }
.action-priority.priority-high     { background: #fef9c3; color: #854d0e; }
.action-priority.priority-medium   { background: #e0f2fe; color: #075985; }
.action-priority.priority-low      { background: #f0fdf4; color: #166534; }

/* ---- Cluster Chips ---- */
.cluster-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin: 4px 4px 4px 0;
  font-size: 13px;
}
.chip-content {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip-number {
  width: 20px;
  height: 20px;
  background: var(--jumo-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.chip-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.chip-tag.sex  { background: #ede9fe; color: #5b21b6; }
.chip-tag.race { background: #fef3c7; color: #92400e; }
.chip-tag.age  { background: #dbeafe; color: #1e40af; }
.chip-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  transition: color var(--transition-fast);
}
.chip-remove:hover { color: #991b1b; }

.cluster-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.cluster-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--jumo-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Cluster Result Sections ---- */
.cluster-result-section {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  margin-top: 24px;
  overflow: hidden;
}
.cluster-result-header {
  background: var(--jumo-navy);
  color: white;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
}
.cluster-result-body {
  padding: 24px;
}

/* ---- FAQ Section (Tool pages) ---- */
.faq-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
}
.faq-section h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
}

/* ---- Disclaimer ---- */
.disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 40px 48px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}
.disclaimer a {
  color: var(--jumo-blue);
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}


/* =================================================================
   9-C. ASSESSMENT TOOL PROD (Gated)
   ================================================================= */

/* ---- Gated Panel ---- */
.gated-panel {
  position: relative;
}
.gated-content {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}
.gated-panel.unlocked .gated-content {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}
.gated-panel.unlocked .gate-overlay {
  display: none;
}

/* ---- Gate Overlay ---- */
.gate-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
}
.gate-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--jumo-blue);
  margin-bottom: 12px;
}
.gate-overlay h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--jumo-navy);
  margin-bottom: 8px;
  max-width: 500px;
}
.gate-sub {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 24px;
}

/* ---- Gate Form ---- */
.gate-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  text-align: left;
}
.gate-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--jumo-navy);
  display: block;
  margin-bottom: 4px;
}
.gate-form input,
.gate-form select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--text-body);
  background: var(--bg-white);
  transition: border-color var(--transition-fast);
}
.gate-form input:focus,
.gate-form select:focus {
  outline: none;
  border-color: var(--jumo-blue);
}
.gate-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23383939' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.gate-full {
  grid-column: 1 / -1;
}
.gate-error {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #991b1b;
  min-height: 0;
}
.gate-submit {
  grid-column: 1 / -1;
  padding: 14px 24px;
  background: var(--jumo-navy);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-med);
}
.gate-submit:hover {
  background: var(--jumo-blue);
}
.gate-fineprint {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}
.gate-fineprint a {
  color: var(--jumo-blue);
  text-decoration: none;
}
.gate-fineprint a:hover {
  text-decoration: underline;
}


/* =================================================================
   9-D. INDICATION PAGES
   ================================================================= */

/* ---- Hero Sub & CTA Group ---- */
.hero-sub {
  font-size: var(--lead-size);
  color: var(--text-on-hero);
  line-height: 1.6;
  max-width: var(--max-width-text);
  margin: 0 auto 24px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

/* ---- Primary / Ghost Buttons ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--jumo-blue);
  color: white;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-med);
}
.btn-primary:hover {
  background: var(--jumo-deep-blue);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition-med), background var(--transition-med);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

/* ---- Stat Grid ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--jumo-navy);
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.45;
  margin-top: 6px;
}
.stat-source {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- Friction Grid (Indication Pages) ---- */
.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.friction-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 4px solid transparent;
}
.friction-card.structural { background: #fef7f0; border-top-color: #f59e0b; }
.friction-card.cognitive  { background: #eff6ff; border-top-color: var(--jumo-blue); }
.friction-card.behavioral { background: #fef2f2; border-top-color: #ef4444; }
.friction-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.friction-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}
.friction-card ul {
  list-style: none;
  padding: 0;
}
.friction-card li {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin-bottom: 10px;
  padding-left: 0;
}
.friction-card li strong {
  color: var(--text-heading);
}

/* ---- AEO Question / Answer ---- */
.aeo-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.aeo-answer {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: var(--max-width-text);
}

/* ---- Equity Callout ---- */
.equity-callout {
  background: var(--surface-blue-light);
  border-left: 4px solid var(--jumo-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.equity-callout h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}
.equity-callout p {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.65;
  max-width: none;
}

/* ---- Product Blocks (Indication Pages) ---- */
.product-block {
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
}
.product-block.core    { background: rgba(0,102,179,0.04); border: 1px solid rgba(0,102,179,0.15); }
.product-block.prism   { background: rgba(17,127,195,0.04); border: 1px solid rgba(17,127,195,0.15); }
.product-block.together { background: rgba(0,56,112,0.04); border: 1px solid rgba(0,56,112,0.15); }
.product-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.product-block.core .product-label    { color: var(--core-color); }
.product-block.prism .product-label   { color: var(--prism-color); }
.product-block.together .product-label { color: var(--jumo-navy); }
.product-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.product-block p {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.65;
  max-width: none;
  margin-bottom: 16px;
}
.product-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.product-block li {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.product-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.product-block.core li::before    { background: var(--core-color); }
.product-block.prism li::before   { background: var(--prism-color); }
.product-block.together li::before { background: var(--jumo-navy); }

/* ---- Section Link (inline) ---- */
.section-link {
  color: var(--jumo-blue);
  text-decoration: none;
  font-weight: 600;
}
.section-link:hover {
  text-decoration: underline;
}

/* ---- Age Table (Pediatric) ---- */
.age-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.age-table th {
  background: var(--jumo-navy);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.age-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-paragraph);
  line-height: 1.5;
  vertical-align: top;
}
.age-table tbody tr:hover {
  background: var(--surface-blue-faint);
}


/* =================================================================
   9-E. FAQ PAGE
   ================================================================= */

/* ---- FAQ Search ---- */
.faq-search {
  max-width: 480px;
  margin: 24px auto 0;
}
.faq-search input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-family);
  font-size: 15px;
  color: white;
  background: rgba(255,255,255,0.08);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.faq-search input::placeholder {
  color: rgba(255,255,255,0.4);
}
.faq-search input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}

/* ---- Category Navigation ---- */
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.cat-nav a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.cat-nav a:hover {
  background: var(--surface-blue-light);
  border-color: var(--jumo-blue);
  color: var(--jumo-blue);
}

/* ---- FAQ Category ---- */
.faq-category {
  max-width: var(--max-width-text);
  margin: 0 auto;
}
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.faq-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-category-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
}

/* ---- FAQ Link (arrow link after answer) ---- */
.faq-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  margin-top: 6px;
  transition: color var(--transition-fast);
}
.faq-link:hover {
  color: var(--jumo-deep-blue);
  text-decoration: underline;
}

/* ---- Still Questions ---- */
.still-questions {
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  margin: 32px auto;
  max-width: var(--max-width);
}
.still-questions h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--jumo-navy);
  margin-bottom: 12px;
}
.still-questions p {
  font-size: 15px;
  color: var(--text-paragraph);
  max-width: 480px;
  margin: 0 auto 20px;
}


/* =================================================================
   10. RESPONSIVE OVERRIDES
   ================================================================= */
@media (max-width: 700px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }

  .section { padding: 48px 24px; }

  /* Grids collapse to single column */
  .outcome-tiles,
  .outcome-tiles.cols-4           { grid-template-columns: repeat(2, 1fr); }
  .outcome-tiles-light            { grid-template-columns: 1fr 1fr; }
  .contrast-columns,
  .flow-contrast,
  .gov-matrix                     { grid-template-columns: 1fr; }
  .is-grid,
  .value-grid,
  .principles-grid,
  .detail-grid,
  .stage-detail-grid,
  .signal-grid,
  .crosslink-grid,
  .reframe-grid                   { grid-template-columns: 1fr; }
  .faq-grid                       { grid-template-columns: 1fr; }
  .playbook-grid,
  .caregiver-grid,
  .related-grid,
  .tier-grid,
  .scenario-grid,
  .index-cards                    { grid-template-columns: 1fr; }
  .solution-cards,
  .solution-cards.cols-2,
  .comp-grid                      { grid-template-columns: 1fr; }
  .product-cards,
  .product-pair                   { grid-template-columns: 1fr; }
  .asset-grid                     { grid-template-columns: repeat(2, 1fr); }
  .portfolio-outcomes             { grid-template-columns: 1fr; }

  .workflow-stages                { grid-template-columns: repeat(4, 1fr); }
  .lifecycle-stages               { grid-template-columns: repeat(3, 1fr); }
  .transition-flow                { grid-template-columns: repeat(4, 1fr); }
  .signal-flow                    { grid-template-columns: repeat(2, 1fr); }

  .arch-layer,
  .process-layer                  { grid-template-columns: 1fr; gap: 8px; }
  .lifecycle-card                 { grid-template-columns: 1fr; }
  .phase-block .output-list       { grid-template-columns: 1fr; }

  .stats-row                      { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Homepage pillars */
  .pillars { flex-direction: column; gap: 16px; }
  .pillar  { border-right: none; border-bottom: 1px solid var(--border-white-soft); padding: 12px 0; }
  .pillar:last-child { border-bottom: none; }
  .pillar .not-equal { font-size: 28px; }

  /* Amendment flow */
  .amendment-flow { grid-template-columns: 1fr; gap: 12px; }
  .amendment-arrow { transform: rotate(90deg); }

  /* Biotech constraint */
  .constraint-grid { grid-template-columns: 1fr; }
  .constraint-grid .constraint-block:last-child:nth-child(odd) { max-width: 100%; }

  /* Tables */
  .comparison-table      { font-size: 12px; }
  .comparison-table td,
  .comparison-table th   { padding: 10px 8px; }
}


/* =================================================================
   11. ENTITY PAGES
   ================================================================= */

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---- Hero Variants ---- */
.hero {
  background: var(--bg-hero);
  color: white;
  text-align: center;
  padding: var(--section-hero-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-label,
.hero .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--jumo-accent);
  margin-bottom: 16px;
}

.hero .subline,
.hero-subline {
  font-size: var(--lead-size);
  color: var(--text-on-hero);
  max-width: var(--max-width-text);
  margin: 0 auto;
  line-height: 1.6;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Canonical / Definition Callout ---- */
.canonical-callout,
.def-callout {
  background: var(--surface-blue-faint);
  border-left: 4px solid var(--jumo-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  font-size: var(--p-size);
  line-height: 1.7;
  color: var(--text-paragraph);
  margin: 24px 0;
}

.canonical-callout .attribution,
.def-callout .attribution {
  font-size: 13px;
  font-weight: 600;
  color: var(--jumo-blue);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-blue-soft);
}

/* ---- Dimensions Grid (Entity: Patient Readiness) ---- */
.dimensions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.dimension-card {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.dimension-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}

.dimension-card p {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ---- Contrast Grid (Entity: Patient Readiness legacy alias) ---- */
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--border-default);
}

.contrast-column {
  padding: 28px;
}

.contrast-column:first-child {
  background: var(--surface-accent-faint);
}

.contrast-column:last-child {
  background: var(--surface-blue-faint);
}

.contrast-column h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
}

.contrast-column ul {
  list-style: none;
  padding: 0;
}

.contrast-column ul li {
  font-size: 14px;
  padding: 6px 0;
  line-height: 1.55;
  color: var(--text-paragraph);
}

/* ---- Operationalization Block ---- */
.operationalization {
  margin: 24px 0;
}

.operationalization h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}

.operationalization-item {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--border-blue-soft);
}

.operationalization-item a {
  color: var(--jumo-blue);
  text-decoration: none;
  font-weight: 600;
}

.operationalization-item a:hover {
  text-decoration: underline;
}

/* ---- Related Entities Grid ---- */
.related-entities-grid,
.related-entities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.entity-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
  display: block;
}

.entity-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 2px 8px rgba(17,127,195,0.1);
}

.entity-card h3,
.entity-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}

.entity-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 12px 0;
  max-width: none;
}

.entity-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
}

.entity-card a:hover {
  text-decoration: underline;
}

/* ---- CTA Hero (Entity bottom CTA) ---- */
.cta-hero {
  background: var(--jumo-navy);
  color: white;
  text-align: center;
  padding: var(--section-cta-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-hero h2 {
  color: white;
  max-width: var(--max-width-text);
  margin: 0 auto 24px;
}

/* ---- CTA Buttons (Entity variant) ---- */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-med), border-color var(--transition-med);
}

.cta-button.primary {
  background: var(--jumo-blue);
  color: white;
}

.cta-button.primary:hover {
  background: var(--jumo-deep-blue);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}

.cta-button.secondary:hover {
  border-color: rgba(255,255,255,0.6);
}

/* ---- Signals Grid (Entity: Finishing Propensity) ---- */
.signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

/* .signal-card already defined in shared components;
   this extends for entity context where signal-card is simpler */
.signals-grid .signal-card {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: static;
}

.signals-grid .signal-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}

.signals-grid .signal-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ---- FAQ: Accordion Variant (details/summary and toggle) ---- */
details.faq-item {
  cursor: pointer;
}

details.faq-item summary {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.4;
  list-style: none;
  padding: 20px 0;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item[open] summary {
  color: var(--jumo-blue);
}

details.faq-item .faq-answer {
  padding-bottom: 20px;
}

details.faq-item .faq-answer p {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* FAQ with toggle button variant */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  padding: 0;
  text-align: left;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 20px;
  font-weight: 700;
  color: var(--jumo-blue);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open,
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-top: 12px;
}

.faq-answer-content {
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.6;
}

/* ---- Section: Dark Variant Overrides for Entity ---- */
.section.dark h3 {
  color: white;
}

.section.dark a {
  color: var(--jumo-accent);
}


/* =================================================================
   12. RESEARCH PAGES
   ================================================================= */

/* ---- Annotation Variants ---- */
.annotation-tags {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #854d0e;
  margin-bottom: 6px;
}

.annotation-text {
  font-size: 12px;
  color: #854d0e;
  line-height: 1.6;
}

.annotation-text strong {
  color: #713f12;
}

/* ---- Section Container (Research pages use section-container inside sections) ---- */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Section Variants ---- */
.section.white {
  background: var(--bg-white);
  max-width: none;
  padding: var(--section-padding);
}

.section.white .section-container {
  max-width: var(--max-width);
}

/* ---- Section Header Block ---- */
.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-description {
  font-size: var(--lead-size);
  color: var(--text-paragraph);
  line-height: 1.6;
  max-width: var(--max-width-text);
}

/* ---- Thesis Block ---- */
.thesis-opening {
  font-size: var(--lead-size);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.6;
  margin-bottom: 20px;
}

.thesis-para {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---- Stat Highlight ---- */
.stat-highlight {
  background: var(--surface-blue-faint);
  border-left: 4px solid var(--jumo-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 24px 0;
}

.stat-highlight strong {
  color: var(--jumo-navy);
}

/* ---- Stat Grid (Research: Completion Gap) ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.stat-card-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--jumo-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.stat-card-source {
  font-size: 12px;
  color: var(--text-on-dark-dim);
  line-height: 1.4;
}

/* ---- Reason / Closing Lists ---- */
.reason-list,
.closing-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.reason-list li,
.closing-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-default);
  font-size: var(--p-size);
  color: var(--text-paragraph);
  line-height: 1.7;
}

.reason-list li:last-child,
.closing-list li:last-child {
  border-bottom: none;
}

.reason-title,
.closing-title {
  font-weight: 700;
  color: var(--text-heading);
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

/* ---- Research Grid ---- */
.research-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.research-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}

.research-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 2px 8px rgba(17,127,195,0.1);
}

.research-card h3,
.research-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}

.research-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: none;
}

.research-card a,
.research-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
}

.research-card a:hover,
.research-card-link:hover {
  text-decoration: underline;
}

/* ---- CTA Final Variants ---- */
.cta-final {
  background: var(--jumo-navy);
  color: white;
  text-align: center;
  padding: var(--section-cta-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-final-text {
  font-size: var(--lead-size);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  max-width: var(--max-width-text);
  margin: 0 auto 24px;
  line-height: 1.5;
}

.cta-final-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.cta-final-content h2 {
  color: white;
  max-width: var(--max-width-text);
  margin: 0 auto 24px;
}

/* ---- Page Meta Footer (Research variant) ---- */
.page-meta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.page-meta-item {
  font-size: 12px;
  color: var(--text-secondary);
}

.page-meta-label {
  font-weight: 600;
  color: var(--text-paragraph);
}

/* ---- Determinant Grid (Research: Behavioral Determinants) ---- */
.determinant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.determinant {
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--border-default);
  background: var(--bg-white);
}

.determinant h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.determinant.motivation  { border-top: 4px solid var(--jumo-blue); }
.determinant.motivation h3 { color: var(--jumo-blue); }
.determinant.cognition   { border-top: 4px solid var(--jumo-deep-blue); }
.determinant.cognition h3  { color: var(--jumo-deep-blue); }
.determinant.burden      { border-top: 4px solid var(--jumo-navy); }
.determinant.burden h3     { color: var(--jumo-navy); }
.determinant.environment { border-top: 4px solid var(--jumo-accent); }
.determinant.environment h3 { color: #6b7a14; }

.determinant-intro {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.determinant-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.determinant-list li {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-default);
}

.determinant-list li:last-child {
  border-bottom: none;
}

.determinant-list li strong {
  color: var(--text-heading);
}

.determinant-link {
  color: var(--jumo-blue);
  text-decoration: none;
  font-weight: 500;
}

.determinant-link:hover {
  text-decoration: underline;
}

/* ---- Interaction Section (Research: Behavioral Determinants) ---- */
.interaction-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--section-padding);
}

.interaction-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.interaction-section h2 {
  color: white;
}

.interaction-intro {
  font-size: var(--lead-size);
  color: var(--text-on-dark-sub);
  line-height: 1.65;
  margin-bottom: 32px;
}

.interaction-key-point {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.interaction-key-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-accent);
  margin-bottom: 8px;
}

.interaction-key-point p {
  font-size: 15px;
  color: var(--text-on-dark-sub);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.intervention-failure {
  background: rgba(204,219,47,0.06);
  border: 1px solid rgba(204,219,47,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}

.intervention-failure h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-accent);
  margin-bottom: 8px;
}

.intervention-failure p {
  font-size: 15px;
  color: var(--text-on-dark-sub);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ---- Operationalization Grid (Research: Behavioral Determinants) ---- */
.operationalization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.op-item {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.op-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--jumo-navy);
  margin-bottom: 8px;
}

.op-item p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.op-item a {
  color: var(--jumo-blue);
  text-decoration: none;
  font-weight: 600;
}

.op-item a:hover {
  text-decoration: underline;
}

/* ---- Related Research Section ---- */
.related-research {
  background: var(--bg-muted);
  padding: 48px 40px;
}

.related-research .research-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---- FAQ Section (Research standalone wrapper) ---- */
.faq-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 48px;
}

.faq-section .faq-item {
  border-bottom: 1px solid var(--border-default);
}

.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-section .faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 0 20px;
}

.faq-section .faq-question {
  padding: 20px 0;
}


/* =================================================================
   13. RESPONSIVE OVERRIDES — ENTITY & RESEARCH
   ================================================================= */
@media (max-width: 700px) {

  /* Container */
  .container { padding-left: 24px; padding-right: 24px; }

  /* Hero */
  .hero { padding: 56px 24px 48px; }
  .hero-content { padding: 0 24px; }
  .hero .subline,
  .hero-subline { font-size: 16px; }

  /* Entity grids */
  .dimensions-grid          { grid-template-columns: 1fr; }
  .contrast-grid            { grid-template-columns: 1fr; }
  .related-entities-grid,
  .related-entities         { grid-template-columns: 1fr; }
  .signals-grid             { grid-template-columns: 1fr; }

  /* Research grids */
  .stat-grid                { grid-template-columns: 1fr; }
  .research-grid            { grid-template-columns: 1fr; }
  .determinant-grid         { grid-template-columns: 1fr; }
  .operationalization-grid  { grid-template-columns: 1fr; }

  /* Section containers */
  .section-container        { padding: 0 24px; }
  .interaction-content      { padding: 0 24px; }
  .cta-final-content        { padding: 0 24px; }

  /* Stat cards */
  .stat-card-number         { font-size: 28px; }

  /* Page meta footer */
  .page-meta-container      { padding: 0 24px; flex-direction: column; gap: 4px; }

  /* Related research */
  .related-research         { padding: 40px 24px; }

  /* FAQ section */
  .faq-section              { padding: 0 24px 40px; }

  /* ---- Assessment Tool Responsive ---- */
  .form-grid                { grid-template-columns: 1fr; }
  .form-container           { padding: 48px 24px; }
  .results-container        { padding: 0 24px 48px; }
  .result-tabs              { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .result-tab               { font-size: 13px; padding: 12px 10px; white-space: nowrap; }
  .tri-score-number         { font-size: 56px; }
  .sub-scores               { grid-template-columns: 1fr; }
  .blueprint-phase-header   { flex-wrap: wrap; }
  .phase-timing             { margin-left: 44px; }
  .gate-form                { grid-template-columns: 1fr; }
  .gate-overlay             { padding: 32px 20px; }

  /* ---- Indication Pages Responsive ---- */
  .stat-grid                { grid-template-columns: 1fr 1fr; }
  .friction-grid            { grid-template-columns: 1fr; }
  .hero-cta-group           { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-ghost                { width: 100%; text-align: center; }
  .age-table                { font-size: 12px; }
  .age-table th,
  .age-table td             { padding: 8px 10px; }

  /* ---- FAQ Page Responsive ---- */
  .cat-nav                  { gap: 6px; }
  .cat-nav a                { font-size: 13px; padding: 6px 14px; }
  .faq-category-title       { font-size: 20px; }
  .faq-search               { max-width: 100%; }
}


/* =================================================================
   CONTENT & RESOURCE PAGE COMPONENTS
   Blog, Podcast, Newsletter, News/Press, Events, White Papers,
   Insights & Resources Hub
   ================================================================= */

/* ---- Blog Page ---- */

.featured-section {
  padding: 32px 0 24px;
}
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.featured-content {
  display: flex;
  flex-direction: column;
}
.featured-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 12px;
}
.excerpt {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin-bottom: 8px;
}
.articles-section {
  padding: 32px 0;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.article-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 16px rgba(17,127,195,0.08);
}
.article-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.category-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 10px;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.read-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  margin-top: 12px;
  transition: color var(--transition-fast);
}
.read-link:hover { color: var(--jumo-deep-blue); }
.earlier-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}
.earlier-articles li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: center;
}
.earlier-articles li:last-child { border-bottom: none; }
.earlier-articles li a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.earlier-articles li a:hover h4 { color: var(--jumo-blue); }
.earlier-article-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}
.earlier-article-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.coverage-section {
  background: var(--bg-light);
  padding: 64px 0;
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.coverage-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
}
.coverage-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.coverage-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.coverage-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.subscribe-section {
  text-align: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-default);
}
.subscribe-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.subscribe-section p {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  max-width: 620px;
  margin: 0 auto 20px;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 20px auto 0;
}
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-family);
  background: var(--bg-white);
  color: var(--text-body);
}
.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--jumo-blue);
  box-shadow: 0 0 0 3px rgba(17,127,195,0.12);
}
.subscribe-form button {
  padding: 14px 24px;
  background: var(--jumo-blue);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-family);
  transition: background var(--transition-med);
}
.subscribe-form button:hover { background: var(--jumo-deep-blue); }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0 16px;
}
.filter-btn,
.filter-button {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-default);
  background: var(--bg-white);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-family);
  transition: all var(--transition-fast);
}
.filter-btn:hover,
.filter-button:hover {
  border-color: var(--jumo-blue);
  color: var(--jumo-blue);
}
.filter-btn.active,
.filter-button.active {
  background: var(--jumo-blue);
  color: white;
  border-color: var(--jumo-blue);
}
.filter-chip {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-default);
  background: var(--bg-white);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-chip.active {
  background: var(--jumo-blue);
  color: white;
  border-color: var(--jumo-blue);
}
.final-cta {
  text-align: center;
  padding: 64px 0 48px;
}
.final-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.final-cta p {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.final-cta-btn {
  display: inline-block;
  background: var(--jumo-blue);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-family);
  transition: background var(--transition-med);
  text-decoration: none;
}
.final-cta-btn:hover { background: var(--jumo-deep-blue); }
.final-cta a {
  display: inline-block;
  margin: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid var(--jumo-blue);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
}
.final-cta a:hover {
  background: var(--jumo-blue);
  color: white;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 0 48px;
  border-top: 1px solid var(--border-default);
  margin-top: 32px;
}
.footer-links a {
  font-size: 14px;
  color: var(--jumo-blue);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { text-decoration: underline; }


/* ---- Podcast Page ---- */

.hero .tagline {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.hero .description {
  font-size: var(--p-size);
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.platform-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-med);
}
.platform-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.cta-primary {
  display: inline-block;
  background: var(--jumo-blue);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-med);
  margin-top: 16px;
}
.cta-primary:hover { background: var(--jumo-deep-blue); }
.cta-secondary {
  display: inline-block;
  color: var(--jumo-blue);
  border: 2px solid var(--jumo-blue);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-med);
  margin-top: 16px;
}
.cta-secondary:hover {
  background: var(--jumo-blue);
  color: white;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.section-heading {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.section-subheading {
  font-size: var(--p-size);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: var(--max-width-text);
}
.latest-episode {
  padding: 48px 0 32px;
}
.episode-featured {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 24px;
}
.episode-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  background: var(--surface-blue-medium);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.episode-title {
  font-size: var(--h3-size);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}
.episode-guest {
  font-size: var(--small-size);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 16px;
}
.episode-description {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: none;
}
.episode-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}
.listen-btn {
  display: inline-block;
  background: var(--jumo-blue);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: background var(--transition-med);
}
.listen-btn:hover { background: var(--jumo-deep-blue); }
.episodes-grid {
  padding: 32px 0;
}
.episodes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.episode-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.episode-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 12px rgba(17,127,195,0.08);
}
.topics-section {
  padding: 48px 0;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.topic-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.topic-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.topic-description {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
}
.guests-section {
  padding: 48px 0;
}
.guests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.guest-type {
  text-align: center;
  padding: 20px;
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
}
.guest-type-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.guest-type-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}
.subscribe-platforms {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.subscribe-platforms .platform-badge {
  background: var(--jumo-blue);
  color: white;
  border-color: var(--jumo-blue);
}
.subscribe-platforms .platform-badge:hover {
  background: var(--jumo-deep-blue);
  border-color: var(--jumo-deep-blue);
}


/* ---- Newsletter Page ---- */

.what-you-get {
  background: var(--bg-light);
  padding: 64px 0;
}
.section-title {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.card p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}
.sample-edition {
  padding: 64px 0;
}
.edition-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 16px;
  transition: border-color var(--transition-med);
}
.edition-card:hover { border-color: var(--jumo-blue); }
.edition-number {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 8px;
}
.edition-title {
  font-size: var(--h3-size);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.edition-excerpt {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin-bottom: 12px;
}
.edition-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.edition-date {
  font-size: 13px;
  color: var(--text-muted);
}
.recent-editions {
  background: var(--bg-light);
  padding: 64px 0;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.audience {
  padding: 64px 0;
}
.audience-content {
  margin-top: 24px;
}
.audience-intro {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: var(--max-width-text);
}
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.audience-item {
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.audience-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.audience-item p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.subscribe-cta {
  background: var(--bg-hero);
  color: white;
  text-align: center;
  padding: 64px 40px;
}
.subscribe-cta h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.subscribe-cta p {
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 20px;
}
.subscribe-cta .subscribe-form input[type="email"] {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.subscribe-cta .subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}
.privacy-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}
.faq.newsletter-faq,
section.faq {
  padding: 64px 0;
}


/* ---- News & Press Page ---- */

.featured-story {
  background: var(--surface-blue-faint);
  border: 2px solid var(--border-blue-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 16px;
}
.featured-story .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  background: var(--surface-blue-medium);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.featured-story h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 12px;
}
.featured-story .meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.featured-story .meta .category {
  font-weight: 600;
  color: var(--jumo-blue);
}
.featured-story p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  max-width: none;
}
.read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  margin-top: 12px;
  transition: color var(--transition-fast);
}
.read-more:hover { color: var(--jumo-deep-blue); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.news-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 12px rgba(17,127,195,0.08);
}
.news-card .date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.news-card .category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--jumo-blue);
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: none;
}
.media-contact {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 24px;
}
.media-contact h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.media-contact p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  max-width: none;
}
.contact-item {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  padding: 8px 0;
  line-height: 1.6;
}
.contact-item a {
  color: var(--jumo-blue);
  text-decoration: none;
}
.contact-item a:hover { text-decoration: underline; }
.press-kit {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.press-kit h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.press-kit p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  max-width: none;
}
.kit-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.kit-list li {
  padding: 8px 0;
  font-size: var(--small-size);
  color: var(--text-paragraph);
  border-bottom: 1px solid var(--border-default);
}
.kit-list li:last-child { border-bottom: none; }


/* ---- Events & Webinars Page ---- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.card.event {
  border-top: 3px solid var(--jumo-blue);
}
.card.webinar {
  border-top: 3px solid var(--prism-color);
}
.card-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  background: var(--surface-blue-medium);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
  line-height: 1.3;
}
.card-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.card-description {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: none;
}
.card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-default);
}
.card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.card-cta:hover { color: var(--jumo-deep-blue); }
.event-detail {
  margin: 12px 0 16px;
}
.event-detail-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
  line-height: 1.5;
}
.event-detail-label {
  font-weight: 600;
  color: var(--text-heading);
  flex-shrink: 0;
  min-width: 60px;
}
.event-detail-value {
  color: var(--text-paragraph);
}
.webinar-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-default);
}
.webinar-meta {
  display: flex;
  gap: 16px;
}
.webinar-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.webinar-meta-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.webinar-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  max-width: none;
  margin-bottom: 16px;
}
.section-link {
  color: var(--jumo-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.section-link:hover { text-decoration: underline; }
.faq-wrapper { margin-top: 24px; }
.faq-wrapper .faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-default);
}
.faq-wrapper .faq-item:last-child { border-bottom: none; }


/* ---- White Papers & Reports Page ---- */

.featured-report {
  background: var(--surface-blue-faint);
  border: 2px solid var(--border-blue-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 32px;
}
.featured-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 12px;
}
.featured-report h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 12px;
}
.report-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.featured-report p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  max-width: none;
}
.download-btn {
  display: inline-block;
  background: var(--jumo-blue);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: background var(--transition-med);
}
.download-btn:hover { background: var(--jumo-deep-blue); }
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.report-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.report-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 12px rgba(17,127,195,0.08);
}
.report-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 10px;
}
.report-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: none;
}
.why-publish {
  padding: 48px 0;
  border-top: 1px solid var(--border-default);
  margin-top: 32px;
}
.why-publish h2 {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.why-publish p {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  max-width: var(--max-width-text);
}
.pillar-list {
  margin: 24px 0;
}
.pillar-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-default);
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
}
.pillar-item:last-child { border-bottom: none; }
.pillar-item strong {
  color: var(--text-heading);
  font-size: 16px;
}
.gated-section {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  margin: 32px 0;
}
.gated-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.gated-section p {
  font-size: var(--p-size);
  color: var(--text-paragraph);
  max-width: 560px;
  margin: 0 auto 20px;
}
.email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.email-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-family);
}
.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--jumo-blue);
  box-shadow: 0 0 0 3px rgba(17,127,195,0.12);
}
.email-form button {
  padding: 14px 24px;
  background: var(--jumo-blue);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-family);
  transition: background var(--transition-med);
}
.email-form button:hover { background: var(--jumo-deep-blue); }


/* ---- Insights & Resources Page ---- */

.channel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.channel-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-default);
  transition: box-shadow var(--transition-med);
}
.channel-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.channel-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-default);
}
.channel-card-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 6px;
}
.channel-card-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.channel-card-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.channel-card-body {
  padding: 20px 24px;
  flex: 1;
}
.channel-card-body p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  max-width: none;
  margin-bottom: 12px;
}
.channel-card-cadence {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.channel-card-cta {
  display: block;
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--jumo-blue);
  text-decoration: none;
  border-top: 1px solid var(--border-default);
  transition: background var(--transition-fast);
}
.channel-card-cta:hover {
  background: var(--surface-blue-faint);
}
.start-here-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.start-card {
  display: block;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.start-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 12px rgba(17,127,195,0.08);
}
.start-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.start-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.news-list {
  margin-top: 24px;
}
.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-default);
  align-items: flex-start;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}
.news-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
  line-height: 1.4;
}
.news-desc {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.55;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.resource-card {
  display: block;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.resource-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 12px rgba(17,127,195,0.08);
}
.rc-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 8px;
}
.resource-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.resource-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}


/* =================================================================
   RESPONSIVE — Content & Resource Pages
   ================================================================= */
@media (max-width: 700px) {

  /* Blog */
  .featured-article    { grid-template-columns: 1fr; }
  .articles-grid       { grid-template-columns: 1fr; }
  .coverage-grid       { grid-template-columns: repeat(2, 1fr); }
  .filter-bar          { gap: 8px; }
  .subscribe-form {
    flex-direction: column;
    max-width: 100%;
  }
  .subscribe-form input[type="email"],
  .subscribe-form button { width: 100%; }

  /* Podcast */
  .episodes-list       { grid-template-columns: 1fr; }
  .topics-grid         { grid-template-columns: 1fr; }
  .guests-grid         { grid-template-columns: repeat(2, 1fr); }
  .platform-links      { flex-direction: column; align-items: center; }

  /* Newsletter */
  .cards-grid          { grid-template-columns: 1fr; }
  .editions-grid       { grid-template-columns: 1fr; }
  .audience-list       { grid-template-columns: 1fr; }
  .subscribe-cta       { padding: 48px 24px; }

  /* News & Press */
  .news-grid           { grid-template-columns: 1fr; }

  /* Events & Webinars */
  .card-grid           { grid-template-columns: 1fr; }
  .event-detail-row    { flex-direction: column; gap: 2px; }
  .webinar-detail {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* White Papers */
  .reports-grid        { grid-template-columns: 1fr; }
  .email-form {
    flex-direction: column;
  }
  .email-form input[type="email"],
  .email-form button   { width: 100%; }

  /* Insights & Resources */
  .channel-cards       { grid-template-columns: 1fr; }
  .start-here-grid     { grid-template-columns: 1fr; }
  .resource-grid       { grid-template-columns: 1fr; }
  .news-item           { flex-direction: column; gap: 4px; }
  .cta-buttons         { flex-direction: column; align-items: center; }
}


/* =================================================================
   14. PAGE-SPECIFIC COMPONENTS
   Leadership, Careers, Contact, CORE Catalog, CORE+PRISM Together,
   Behavioral Science, Security/Privacy/IRB, PRISM vs Conventional,
   CORE vs Conventional, About Jumo, Health Equity
   ================================================================= */


/* ---- Leadership Page ---- */

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.breadcrumb-list li + li::before {
  content: "\203A";
  margin-right: 8px;
  color: var(--text-muted);
}
.breadcrumb-list a {
  color: var(--jumo-blue);
  text-decoration: none;
}
.breadcrumb-list a:hover { text-decoration: underline; }

.hero-content {
  text-align: center;
  max-width: var(--max-width-text);
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jumo-accent);
  margin-bottom: 12px;
}
.subline {
  font-size: var(--lead-size);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.leadership-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.bio-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.bio-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 16px rgba(17,127,195,0.08);
}
.bio-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.headshot-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--jumo-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.bio-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bio-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
}
.bio-title {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  margin-top: 4px;
  transition: color var(--transition-fast);
}
.linkedin-link:hover { color: var(--jumo-deep-blue); }
.linkedin-icon {
  width: 16px;
  height: 16px;
}
.bio-text p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  margin-bottom: 10px;
}
.bio-text p:last-child { margin-bottom: 0; }

.philosophy-section {
  background: var(--bg-dark);
  padding: var(--section-padding);
  text-align: center;
}
.philosophy-content {
  max-width: var(--max-width-text);
  margin: 0 auto;
}
.philosophy-content p {
  font-size: var(--lead-size);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.cta-final-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.faq-section {
  padding: var(--section-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}
.faq-container {
  max-width: var(--max-width-text);
  margin: 0 auto;
}
.faq-title {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 24px;
}
.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  padding: 16px 0 8px;
}
.faq-answer {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-default);
}

.page-meta-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.page-meta-item {
  font-size: 13px;
  color: var(--text-secondary);
}
.page-meta-label {
  font-weight: 600;
  color: var(--text-heading);
  margin-right: 4px;
}


/* ---- Careers Page ---- */

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.why-card p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}
.traits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trait-item {
  padding: 20px;
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
  text-align: center;
}
.trait-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.trait-item p {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.role-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}
.role-card:hover {
  border-color: var(--jumo-blue);
  box-shadow: 0 4px 12px rgba(17,127,195,0.08);
}
.role-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.role-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}
.role-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--jumo-blue);
  background: var(--surface-blue-medium);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.role-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.role-desc {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin-bottom: 16px;
}
.role-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--jumo-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.role-link:hover { color: var(--jumo-deep-blue); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}


/* ---- Contact Page ---- */

.form-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.optional {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--jumo-blue);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-family);
  margin-top: 12px;
  transition: background var(--transition-med);
}
.form-submit:hover { background: var(--jumo-deep-blue); }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.card-detail {
  font-size: 13px;
  font-weight: 600;
  color: var(--jumo-blue);
  margin-top: 10px;
}
.card-detail a {
  color: var(--jumo-blue);
  text-decoration: none;
}
.card-detail a:hover { text-decoration: underline; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--jumo-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.trust-signals {
  max-width: var(--max-width-text);
}
.trust-signals h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.trust-list li {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}
.trust-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--jumo-blue);
  font-weight: 700;
}


/* ---- CORE Catalog Page ---- */

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.hero-stat {
  text-align: center;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat span:last-child {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.format-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-default);
  margin-bottom: 24px;
}
.fl-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.asset-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-right: 4px;
  margin-bottom: 4px;
}
.asset-tag.print       { background: #E8F0FE; color: #1A56DB; }
.asset-tag.digital     { background: #ECFDF5; color: #065F46; }
.asset-tag.video       { background: #FEF3C7; color: #92400E; }
.asset-tag.web         { background: #F3E8FF; color: #6D28D9; }
.asset-tag.interactive { background: #FFE4E6; color: #9F1239; }
.asset-tag.licensed    { background: #F1F5F9; color: #475569; }
.asset-tag.strategy    { background: #FFF7ED; color: #9A3412; }

.stage-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.stage-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-default);
  background: var(--bg-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.stage-nav a:hover {
  border-color: var(--core-color);
  color: var(--core-color);
}
.nav-num {
  font-weight: 800;
  color: var(--core-color);
}

.lifecycle-bar {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lc-step {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  transition: all var(--transition-fast);
}
.lc-step.active {
  background: var(--core-color);
  border-color: var(--core-color);
  color: white;
}
.lc-num {
  font-size: 18px;
  font-weight: 800;
  display: block;
}
.lc-step.active .lc-num { color: white; }
.lc-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 2px;
}
.lc-step.active .lc-name { color: rgba(255,255,255,0.85); }

.stage-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--core-color);
  background: rgba(0,102,179,0.08);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.stage-info {
  margin-bottom: 24px;
}
.stage-name {
  font-size: var(--h2-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.category-block {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
}
.category-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.category-count {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.category-desc {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin-bottom: 16px;
}

.asset-item {
  padding: 12px 0;
  border-top: 1px solid var(--border-default);
}
.asset-item:first-child { border-top: none; }
.asset-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.asset-desc {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
}

.cross-banner {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}
.cross-banner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.cross-banner p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}


/* ---- CORE + PRISM Together Page ---- */

.product-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-default);
  text-align: center;
}
.product-box.core {
  border-color: var(--core-color);
  background: rgba(0,102,179,0.04);
}
.product-box.prism {
  border-color: var(--prism-color);
  background: rgba(17,127,195,0.04);
}
.pb-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.product-box.core .pb-label  { color: var(--core-color); }
.product-box.prism .pb-label { color: var(--prism-color); }
.pb-name {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.pb-desc {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.plus-connector {
  font-size: 28px;
  font-weight: 900;
  color: var(--jumo-accent);
  text-align: center;
  padding: 8px 0;
}

.integration-block {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
}
.integration-header {
  margin-bottom: 20px;
}
.integration-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--jumo-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.integration-title {
  font-size: var(--h3-size);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.integration-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}
.integration-body {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
}
.integration-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.int-col {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
}
.int-col.core-col {
  border-color: var(--core-color);
  background: rgba(0,102,179,0.03);
}
.int-col.prism-col {
  border-color: var(--prism-color);
  background: rgba(17,127,195,0.03);
}
.int-col.combined-col {
  border-color: var(--jumo-accent);
  background: rgba(204,219,47,0.05);
}
.int-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.int-col p {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

.multiplier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.multiplier-tile {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.mt-alone {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.mt-arrow {
  font-size: 20px;
  color: var(--jumo-accent);
  margin: 8px 0;
}
.mt-together {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.mt-why {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
}

.deploy-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deploy-phase {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-default);
  text-align: center;
}
.deploy-phase.phase-1 { border-color: var(--core-color); }
.deploy-phase.phase-2 { border-color: var(--prism-color); }
.deploy-phase.phase-3 { border-color: var(--jumo-accent); }
.dp-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.deploy-phase h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.deploy-phase p {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}


/* ---- Behavioral Science Page ---- */

.hero-sub {
  font-size: var(--lead-size);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--jumo-blue);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-med);
}
.btn-primary:hover { background: var(--jumo-deep-blue); }
.btn-ghost {
  display: inline-block;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-med);
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.contrast-col-header {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.contrast-col-header.legacy {
  background: #F1F5F9;
  color: var(--text-secondary);
}
.contrast-col-header.jumo {
  background: var(--jumo-blue);
  color: white;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-default);
}
.contrast-cell {
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.contrast-cell.legacy {
  color: var(--text-secondary);
  background: var(--bg-light);
}
.contrast-cell.jumo {
  color: var(--text-heading);
  font-weight: 500;
}

.flow-bar {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 16px 0;
}
.flow-step {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  min-width: 100px;
}
.flow-step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.flow-step:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.flow-arrow {
  font-size: 18px;
  color: var(--jumo-blue);
  flex-shrink: 0;
  padding: 0 4px;
}
.flow-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.fw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fw-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  border-top: 3px solid var(--border-default);
}
.fw-card.spur { border-top-color: #2563EB; }
.fw-card.comb { border-top-color: #059669; }
.fw-card.fogg { border-top-color: #D97706; }
.fw-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.fw-card p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}
.fw-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.stage-matrix {
  overflow-x: auto;
}
.stage-matrix table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.stage-matrix th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-default);
}
.stage-matrix td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-paragraph);
  line-height: 1.5;
}
.spur-col  { background: rgba(37,99,235,0.04); }
.comb-col  { background: rgba(5,150,105,0.04); }
.fogg-col  { background: rgba(217,119,6,0.04); }
.outcome-col { background: var(--surface-blue-faint); }
.segment-cell {
  font-weight: 600;
  color: var(--text-heading);
}

.aeo-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.aeo-answer {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-app {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-default);
}
.product-app.core  { border-color: var(--core-color); }
.product-app.prism { border-color: var(--prism-color); }
.product-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.product-app.core .product-label  { color: var(--core-color); }
.product-app.prism .product-label { color: var(--prism-color); }
.product-app h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.product-app p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}


/* ---- Security / Privacy / IRB Page ---- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  border-top: 3px solid var(--border-default);
}
.pillar-card.hipaa { border-top-color: #2563EB; }
.pillar-card.gdpr  { border-top-color: #059669; }
.pillar-card.irb   { border-top-color: #D97706; }
.pillar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.pillar-card p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.q-frame {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
}
.q-frame h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.coverage-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-default);
}
.coverage-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-paragraph);
}

.product-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}
.product-tag.core  { background: rgba(0,102,179,0.1); color: var(--core-color); }
.product-tag.prism { background: rgba(17,127,195,0.1); color: var(--prism-color); }
.product-tag.both  { background: rgba(204,219,47,0.15); color: #5A6B00; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.cert-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.cert-card p {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

.is-col-header {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.is-col-header.is   { background: var(--jumo-blue); color: white; }
.is-col-header.isnot { background: #F1F5F9; color: var(--text-secondary); }
.is-cell {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid var(--border-default);
}
.is-cell.is    { color: var(--text-heading); font-weight: 500; }
.is-cell.isnot { color: var(--text-secondary); background: var(--bg-light); }


/* ---- PRISM vs Conventional Page ---- */

.hero-subtitle {
  font-size: var(--lead-size);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-med);
}

.structural-flaw {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 24px;
}
.flaw-intro {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
  margin-bottom: 16px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.comparison-column {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-default);
}
.comparison-column h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.dimension {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-default);
}
.dimension:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.dimension-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.dimension-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--jumo-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.dimension-content {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
}
.dimension-box {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 12px;
}
.contrast-line {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 8px;
}

.journey-visual {
  padding: 32px 0;
}
.pipeline-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.pipeline {
  display: flex;
  gap: 4px;
  align-items: stretch;
  margin-bottom: 24px;
}
.stage.prism {
  background: rgba(17,127,195,0.08);
  border: 1px solid var(--prism-color);
  border-radius: var(--radius-md);
  flex: 1;
  padding: 16px 12px;
  text-align: center;
}
.stage.conventional {
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  flex: 1;
  padding: 16px 12px;
  text-align: center;
}
.stage-marker {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}
.stage-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  display: block;
}
.stage-content {
  font-size: 12px;
  color: var(--text-paragraph);
  margin-top: 6px;
  line-height: 1.4;
}

.faq-item.active .faq-answer {
  display: block;
}


/* ---- CORE vs Conventional Page ---- */

.flaw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.flaw-col {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.flaw-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.flaw-col p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

.competitor-section {
  margin-bottom: 32px;
}
.competitor-header {
  margin-bottom: 16px;
}
.competitor-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}
.them-say {
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}
.them-say h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.them-say p {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.us-say {
  padding: 20px;
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg);
}
.us-say h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--jumo-blue);
  margin-bottom: 6px;
}
.us-say p {
  font-size: 14px;
  color: var(--text-heading);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  max-width: none;
}

.battle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 24px;
}
.battle-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--border-default);
}
.battle-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-default);
  vertical-align: top;
}
.dim-label {
  font-weight: 600;
  color: var(--text-heading);
}
.competitor-cell {
  color: var(--text-secondary);
  background: var(--bg-light);
}
.core-cell {
  color: var(--text-heading);
  font-weight: 500;
}


/* ---- About Jumo Page ---- */

.symptom-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.symptom-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.6;
}
.symptom-list .icon {
  flex-shrink: 0;
  font-size: 18px;
}
.symptom-list .text {
  flex: 1;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.readiness-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.rd-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 8px;
}
.rd-body {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
}

.product-summaries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-summary {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-default);
}
.product-summary.core  { border-color: var(--core-color); }
.product-summary.prism { border-color: var(--prism-color); }
.product-summary h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.product-summary.core .badge  { background: rgba(0,102,179,0.1); color: var(--core-color); }
.product-summary.prism .badge { background: rgba(17,127,195,0.1); color: var(--prism-color); }

.feat-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.feat-list li {
  font-size: 15px;
  color: var(--text-paragraph);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.feat-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--jumo-blue);
}

.together-banner {
  background: var(--surface-blue-faint);
  border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}
.together-banner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.together-banner p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.approach-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.ap-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 8px;
}
.ap-body {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
}

.audience-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.audience-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-default);
  background: var(--bg-white);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-heading);
}


/* ---- Health Equity Page ---- */

.friction-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.friction-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.6;
}
.friction-list .icon {
  flex-shrink: 0;
  font-size: 18px;
}
.friction-list .text {
  flex: 1;
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.thesis-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.thesis-stage {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 8px;
}
.thesis-body {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.7;
}

.equity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.equity-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-default);
}
.equity-card.core { border-color: var(--core-color); }
.equity-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.equity-card p {
  font-size: var(--small-size);
  color: var(--text-paragraph);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.lc-card {
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.lc-stage {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--jumo-blue);
  margin-bottom: 8px;
}
.lc-body {
  font-size: 14px;
  color: var(--text-paragraph);
  line-height: 1.6;
}

.dap-matrix {
  overflow-x: auto;
}
.dap-matrix table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.dap-matrix th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border-default);
}
.dap-matrix td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-paragraph);
  line-height: 1.5;
}

.deploy-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.deploy-step {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--jumo-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-paragraph);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

.step-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.step-tag.core  { background: rgba(0,102,179,0.1); color: var(--core-color); }
.step-tag.prism { background: rgba(17,127,195,0.1); color: var(--prism-color); }
.step-tag.both  { background: rgba(204,219,47,0.15); color: #5A6B00; }


/* =================================================================
   15. RESPONSIVE OVERRIDES -- PAGE-SPECIFIC
   ================================================================= */
@media (max-width: 700px) {

  /* ---- Leadership ---- */
  .breadcrumb-list         { font-size: 12px; gap: 4px; }
  .bio-header              { flex-direction: column; text-align: center; }
  .headshot-placeholder    { margin: 0 auto; }
  .bio-info                { align-items: center; }
  .philosophy-section      { padding: 48px 24px; }

  /* ---- Careers ---- */
  .traits-grid             { grid-template-columns: 1fr; }
  .roles-grid              { grid-template-columns: 1fr; }
  .benefits-grid           { grid-template-columns: 1fr; }

  /* ---- Contact ---- */
  .form-section            { grid-template-columns: 1fr; }
  .process-grid            { grid-template-columns: 1fr; }
  .trust-list              { grid-template-columns: 1fr; }

  /* ---- CORE Catalog ---- */
  .hero-stats              { flex-direction: column; gap: 16px; }
  .format-legend           { flex-wrap: wrap; }
  .stage-nav               { flex-wrap: wrap; }
  .lifecycle-bar           { flex-direction: column; }

  /* ---- CORE + PRISM Together ---- */
  .integration-cols        { grid-template-columns: 1fr; }
  .multiplier-grid         { grid-template-columns: 1fr; }
  .deploy-phases           { grid-template-columns: 1fr; }

  /* ---- Behavioral Science ---- */
  .contrast-row            { grid-template-columns: 1fr; }
  .flow-bar                { flex-direction: column; }
  .flow-arrow              { transform: rotate(90deg); }
  .fw-grid                 { grid-template-columns: 1fr; }
  .stage-matrix            { font-size: 12px; }
  .stage-matrix th,
  .stage-matrix td         { padding: 8px 10px; }
  .product-app-grid        { grid-template-columns: 1fr; }

  /* ---- Security / Privacy / IRB ---- */
  .pillar-grid             { grid-template-columns: 1fr; }
  .cert-grid               { grid-template-columns: 1fr; }
  .coverage-table          { font-size: 12px; }
  .coverage-table th,
  .coverage-table td       { padding: 8px 10px; }

  /* ---- PRISM vs Conventional ---- */
  .comparison-grid         { grid-template-columns: 1fr; }
  .pipeline                { flex-direction: column; }

  /* ---- CORE vs Conventional ---- */
  .flaw-grid               { grid-template-columns: 1fr; }
  .battle-table            { font-size: 12px; }
  .battle-table th,
  .battle-table td         { padding: 8px 10px; }

  /* ---- About Jumo ---- */
  .readiness-grid          { grid-template-columns: 1fr; }
  .product-summaries       { grid-template-columns: 1fr; }
  .approach-grid           { grid-template-columns: 1fr; }
  .audience-grid           { justify-content: center; }

  /* ---- Health Equity ---- */
  .thesis-grid             { grid-template-columns: 1fr; }
  .equity-cards            { grid-template-columns: 1fr; }
  .lifecycle-grid          { grid-template-columns: 1fr; }
  .deploy-steps            { grid-template-columns: 1fr; }
  .dap-matrix              { font-size: 12px; }
  .dap-matrix th,
  .dap-matrix td           { padding: 8px 10px; }
}

/* =================================================================
   16. REMAINING PAGE-SPECIFIC CLASSES
   Covers all remaining class selectors found across the site.
   ================================================================= */

/* ---- Shared: Annotation Block ---- */
.annotation-block {
  background: #fffde7; border-left: 4px solid #f9a825;
  padding: 16px 20px; margin: 20px 0; border-radius: var(--radius-md);
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}

/* ---- Shared: CTA Section ---- */
.cta-section {
  background: var(--bg-navy); padding: 64px 32px; text-align: center; color: #fff;
}
.cta-section-inner { max-width: 720px; margin: 0 auto; }
.cta-headline { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-btn {
  display: inline-block; padding: 14px 32px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15px; text-decoration: none;
  background: var(--jumo-accent); color: var(--jumo-navy); transition: var(--transition-med);
}
.cta-btn:hover { background: #b8c428; transform: translateY(-2px); }

/* ---- Shared: Button Variants ---- */
.btn-secondary {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius-md);
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 2px solid var(--jumo-blue); color: var(--jumo-blue); background: transparent;
  transition: var(--transition-med);
}
.btn-secondary:hover { background: var(--jumo-blue); color: #fff; }

/* ---- Shared: Hero CTA ---- */
.hero-cta {
  display: inline-block; padding: 14px 32px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 15px; text-decoration: none;
  background: var(--jumo-accent); color: var(--jumo-navy); transition: var(--transition-med);
}
.hero-cta:hover { background: #b8c428; }

/* ---- Shared: Page Footer / Meta ---- */
.page-footer {
  background: var(--bg-muted); padding: 32px; border-top: 1px solid var(--border-default);
  font-size: 13px; color: var(--text-secondary);
}
.page-meta-inner { max-width: 960px; margin: 0 auto; display: flex; gap: 32px; flex-wrap: wrap; }
.meta-item { font-size: 13px; color: var(--text-secondary); }

/* ---- Shared: Section Variants ---- */
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }
.section-intro { font-size: 17px; color: var(--text-paragraph); line-height: 1.7; max-width: 720px; }
.section-subtitle { font-size: 15px; color: var(--text-secondary); margin-top: -8px; margin-bottom: 24px; }
.intro-block { max-width: 720px; margin: 0 auto 32px; }
.intro-section { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---- Entity PXO Page ---- */
.breadcrumb-inner { max-width: 960px; margin: 0 auto; }
.breadcrumb-item { display: inline; }
.content { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.content-inner { max-width: 720px; }
.content-section { margin-bottom: 48px; }
.def-callout-attribution { font-size: 12px; color: var(--text-secondary); font-style: italic; margin-top: 8px; }
.contrast-card {
  background: var(--bg-light); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 24px; margin: 16px 0;
}
.gap-section { margin: 32px 0; }
.gap-section-inner { max-width: 720px; }
.gap-list { list-style: none; padding: 0; }
.gap-list li {
  padding: 8px 0 8px 20px; position: relative;
  font-size: 15px; color: var(--text-paragraph); line-height: 1.6;
}
.gap-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--jumo-blue);
}
.does-not { color: var(--jumo-charcoal); font-weight: 600; }
.op-model { margin: 32px 0; }
.op-model-item {
  padding: 16px 0; border-bottom: 1px solid var(--border-default);
  display: grid; grid-template-columns: 160px 1fr; gap: 16px;
}
.faq-section-inner { max-width: 720px; margin: 0 auto; }
.faq-content { max-width: 720px; margin: 0 auto; }

/* ---- Entity Cognitive Friction Page ---- */
.definition-callout {
  background: var(--surface-blue-light); border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg); padding: 24px 28px; margin: 24px 0;
}
.contrast-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.contrast-box {
  background: var(--bg-light); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 20px;
}
.current { border-left: 3px solid var(--jumo-blue); }
.friction { border-left: 3px solid #e74c3c; }
.entity-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.lifecycle-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.solution-list { list-style: none; padding: 0; }
.solution-list li { padding: 6px 0; font-size: 15px; color: var(--text-paragraph); }

/* ---- Entity Glossary Hub ---- */
.entities-section { margin: 32px 0; }
.entities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.definition { font-size: 15px; color: var(--text-paragraph); line-height: 1.6; margin: 8px 0; }
.cross-ref-section { background: var(--bg-light); padding: 32px; border-radius: var(--radius-lg); margin: 24px 0; }
.cross-ref-content { max-width: 720px; }
.cross-ref-text { font-size: 15px; color: var(--text-paragraph); line-height: 1.6; }
.related-section { margin: 32px 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.relationship-diagram { margin: 24px 0; text-align: center; }
.flow-item {
  display: inline-block; padding: 10px 18px; margin: 4px;
  background: var(--surface-blue-light); border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-md); font-size: 14px; font-weight: 600; color: var(--jumo-blue);
}

/* ---- Entity Trial Readiness Index ---- */
.canonical-definition {
  background: var(--surface-blue-light); border: 1px solid var(--border-blue-soft);
  border-radius: var(--radius-lg); padding: 24px 28px; margin: 24px 0;
  font-size: 17px; line-height: 1.7; color: var(--text-body);
}
.comparison-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.dimension-list { list-style: none; padding: 0; margin: 20px 0; }
.dimension-item {
  padding: 12px 0; border-bottom: 1px solid var(--border-default);
  font-size: 15px; color: var(--text-paragraph); line-height: 1.6;
}

/* ---- Entity Readiness Friction Map ---- */
.anatomy-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
  font-size: 14px; line-height: 1.5;
}
.anatomy-table th {
  background: var(--jumo-navy); color: #fff;
  padding: 12px 16px; text-align: left; font-weight: 700;
}
.anatomy-table td {
  padding: 10px 16px; border-bottom: 1px solid var(--border-default);
  color: var(--text-paragraph);
}
.anatomy-table tr:nth-child(even) td { background: var(--bg-light); }
.friction-map { margin: 24px 0; }
.heat-indicator { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; }
.heat-high { background: #e74c3c; }
.heat-medium { background: #f39c12; }
.heat-low { background: #27ae60; }
.risk-register {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px;
}
.risk-register th { background: var(--bg-dark); color: #fff; padding: 10px 14px; text-align: left; }
.risk-register td { padding: 10px 14px; border-bottom: 1px solid var(--border-default); }

/* ---- Research Propensity Modeling Page ---- */
.concept-intro { font-size: 17px; color: var(--text-paragraph); line-height: 1.7; max-width: 720px; margin-bottom: 32px; }
.architecture-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 24px 0; }
.arch-item {
  background: var(--bg-light); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 20px;
}
.inputs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.input-category {
  background: var(--bg-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 20px;
}
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.standard, .propensity {
  background: var(--bg-light); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 24px;
}
.propensity { border-left: 3px solid var(--jumo-blue); }

/* ---- Research Cognitive Friction Ontology Page ---- */
.friction-domains { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin: 24px 0; }
.friction-type, .domain, .emotional {
  background: var(--bg-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 20px;
}
.lifecycle-stage {
  padding: 16px 0; border-bottom: 1px solid var(--border-default);
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
}
.mitigation-approach {
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 20px; margin: 12px 0;
}
.emerging { color: var(--jumo-blue); font-weight: 600; font-size: 13px; text-transform: uppercase; }

/* ---- Research Frameworks Validation Page ---- */
.framework {
  background: var(--bg-white); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); margin: 20px 0; overflow: hidden;
}
.framework-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--bg-light); }
.framework-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-md);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  background: var(--jumo-blue); color: #fff;
}
.framework-name { font-size: 18px; font-weight: 700; color: var(--text-heading); }
.framework-content { padding: 20px 24px; }
.framework-column { margin: 12px 0; }
.framework-application {
  background: var(--surface-blue-light); border-radius: var(--radius-md);
  padding: 16px 20px; margin-top: 12px;
  font-size: 14px; color: var(--text-paragraph);
}
.pipeline-steps { display: flex; gap: 0; margin: 24px 0; flex-wrap: wrap; }
.pipeline-step {
  flex: 1; min-width: 120px; padding: 16px; text-align: center;
  background: var(--bg-light); border-right: 2px solid var(--jumo-blue);
  font-size: 14px; font-weight: 600;
}
.pipeline-step:last-child { border-right: none; }
.pipeline-insight {
  background: var(--surface-blue-light); border-left: 3px solid var(--jumo-blue);
  padding: 16px 20px; margin: 16px 0; font-size: 14px; color: var(--text-paragraph);
}
.research-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 24px 0; }

/* ---- Assessment Tool: Misc ---- */
.sub { font-size: 15px; color: var(--text-secondary); margin-top: 8px; line-height: 1.5; }
.tool { max-width: 960px; margin: 0 auto; padding: 32px 24px; }

/* ---- Responsive: Remaining Classes ---- */
@media (max-width: 700px) {
  .contrast-container,
  .comparison-container,
  .comparison,
  .op-model-item,
  .lifecycle-stage { grid-template-columns: 1fr; }
  .pipeline-steps { flex-direction: column; }
  .pipeline-step { border-right: none; border-bottom: 2px solid var(--jumo-blue); }
  .pipeline-step:last-child { border-bottom: none; }
  .cta-section { padding: 48px 24px; }
  .cta-headline { font-size: 22px; }
}
