/* ═══════════════════════════════════════════
   CASE STUDY — TBO.COM
═══════════════════════════════════════════ */

.cs-page { padding-top: var(--nav-h); }

/* ─── RECAP FRAMEWORK (ADOBE) THEME OVERRIDES ─── */
.recap-theme {
  /* Pure white canvas, Adobe Spectrum-style */
  --bg:          #FFFFFF;
  --surface:     #FFFFFF;
  --surface-2:   #F5F5F5;
  --border:      #E5E5E5;
  --text:        #1E1E1E;
  --text-2:      #4A4A4A;
  --text-3:      #8A8A8A;

  /* Adobe red primary */
  --rose:        #DD1414;
  --rose-bg:     #FFF0F0;
  --rose-mid:    #FF6B6B;

  /* Adobe blue secondary */
  --recap-indigo:     #0F5BDC;
  --recap-indigo-bg:  #E8F0FF;
  --recap-indigo-mid: #4D7FE8;

  /* Adobe black structural */
  --recap-black: #1E1E1E;
}

/* ─── Sections: white-on-white with alternating ambient gradient washes ─── */
.recap-theme.cs-page,
.recap-theme {
  background: var(--bg);
}
.recap-theme .section-tinted { background: #FAFAFA; }

/* Subtle alternating blue/red ambient washes — anchored to opposite sides */
.recap-theme .section-wash-blue {
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(15, 91, 220, 0.07) 0%, transparent 70%);
}
.recap-theme .section-wash-red {
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(221, 20, 20, 0.06) 0%, transparent 70%);
}

/* ─── Hero: pure white, no ambient gradient — only the meta-card line draws the eye ─── */
.recap-theme .cs-hero {
  background: transparent;
}
.recap-theme .hero-blobs { display: none; }

/* ─── Meta card: 3 columns (Discipline removed), thin red top line, no shadow ─── */
.recap-theme .cs-meta {
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border-radius: 4px;
  border: none;
  border-top: 2px solid var(--rose);
  box-shadow: none;
  padding: 22px 0;
}

/* ─── Hypothesis: editorial block, no box ─── */
.recap-theme .hypothesis-card {
  background: transparent;
  border-radius: 0;
  border: none;
  border-left: 3px solid var(--rose);
  padding: 4px 0 4px 28px;
  margin: 28px 0 8px;
}
.recap-theme .hypothesis-label {
  color: var(--rose);
}
.recap-theme .hypothesis-card p {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--text);
}

/* ─── Theme list: dividing rules, no card boxes ─── */
.recap-theme .theme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.recap-theme .theme-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.recap-theme .theme-card:last-child {
  border-bottom: 1px solid var(--border);
}
.recap-theme .theme-card .chip {
  background: transparent;
  color: var(--rose);
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.recap-theme .theme-card h4 {
  margin-bottom: 6px;
  color: var(--text);
}
@media (max-width: 720px) {
  .recap-theme .theme-card { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── Principles: big italic red numbers, no card boxes ─── */
.recap-theme .principles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 32px 0 8px;
}
.recap-theme .principle {
  background: transparent;
  border: none;
  padding: 0;
}
.recap-theme .principle::before,
.recap-theme .principle::after {
  display: none;
}
.recap-theme .principle-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--rose);
  margin-bottom: 14px;
}
.recap-theme .principle h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--text);
}
@media (max-width: 720px) {
  .recap-theme .principles-row { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── Stepper: larger Adobe blue circles, clearly readable ─── */
.recap-theme .stepper-track::before {
  background: var(--recap-indigo);
  opacity: .35;
  height: 1px;
  top: 22px;
}
.recap-theme .step-dot {
  width: 44px;
  height: 44px;
  background: var(--recap-indigo);
  color: #fff;
  box-shadow: none;
  border-radius: 50%;
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.recap-theme .step-title { color: var(--text); }
@media (max-width: 720px) {
  .recap-theme .stepper-track::before { top: 0; left: 22px; width: 1px; }
  .recap-theme .step { padding: 0 0 0 64px; }
  .recap-theme .step-dot { width: 44px; height: 44px; }
}

/* ─── Flowchart: light blue rounded pill backdrop with red text + arrow circles ─── */
.recap-theme .fragments-diagram {
  background: linear-gradient(90deg, #E5EEFC 0%, #F0F5FE 50%, #E5EEFC 100%);
  border-radius: 9999px;
  padding: 36px 28px;
  gap: 0;
}
.recap-theme .fragment-pill {
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--rose);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  text-align: center;
  flex: 1 1 0;
  max-width: 200px;
  line-height: 1.3;
}
.recap-theme .fragment-arrow {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rose);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 4px;
  flex-shrink: 0;
}
.recap-theme .fragments-tag {
  color: var(--rose);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-top: 24px;
}

/* ─── Reference rows (competitive frame): editorial line-divided list ─── */
.reference-rows {
  margin: 28px 0 8px;
}
.reference-row {
  padding: 24px 0;
  border-top: 1px solid #E5E5E5;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: baseline;
}
.reference-row:last-child {
  border-bottom: 1px solid #E5E5E5;
}
.reference-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--rose);
}
.reference-row h4 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}
.reference-row p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 60ch;
}
.reference-row em {
  font-style: italic;
  color: var(--text);
}
@media (max-width: 720px) {
  .reference-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── Cs-callouts: red vertical bar, no soft gradient ─── */
.recap-theme .cs-callout {
  background: transparent;
  border-left: 3px solid var(--rose);
  border-radius: 0;
  padding: 6px 0 6px 28px;
}
.recap-theme .cs-callout-label {
  color: var(--rose);
}

/* ─── Impact: editorial rows, big numbers, hard rules ─── */
.recap-theme .impact-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 28px 0 8px;
}
.recap-theme .impact-cat {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 28px;
  align-items: start;
  box-shadow: none;
}
.recap-theme .impact-cat:last-child {
  border-bottom: 1px solid var(--border);
}
.recap-theme .impact-cat-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--rose);
}
.recap-theme .impact-cat-trend {
  background: transparent;
  color: var(--rose);
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-radius: 0;
  display: inline-flex;
}
.recap-theme .impact-cat-trend::before { display: none; }
.recap-theme .impact-cat h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.recap-theme .impact-cat p {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 8px;
}
@media (max-width: 720px) {
  .recap-theme .impact-cat {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }
  .recap-theme .impact-cat > div:last-child { grid-column: 1 / -1; padding-left: 74px; }
}

/* ─── Section-tag ribbon: stays Adobe red ─── */
.recap-theme .section-tag::before {
  background: var(--rose);
}

/* ─── Chips: clean Adobe-styled ─── */
.recap-theme .chip-rose { background: var(--rose-bg); color: var(--rose); }

/* ─── Video frame: sharp corners, minimal chrome ─── */
.recap-theme .cs-video-frame {
  border-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: none;
  background: #FAFAFA;
}

/* ─── NDA pill: bold Adobe red ─── */
.recap-theme .nda-pill {
  background: var(--rose-bg);
  color: var(--rose);
}

/* ─── Closing reflection: stark, no card ─── */
.recap-theme .cs-end .cs-h2 em { color: var(--rose); }
.recap-theme .cs-title em      { color: var(--rose); }
.recap-theme .cs-h2 em         { color: var(--rose); }
.recap-theme .cs-eyebrow       { color: var(--rose); }
.recap-theme .glance-num,
.recap-theme .fs-num,
.recap-theme .finding-num      { color: var(--rose); }

/* Recap section-tag ribbon */
.recap-theme .section-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--rose);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}
.recap-theme .nda-pill   { background: var(--rose-bg); color: var(--rose); }
.recap-theme .cs-quote   { border-left-color: var(--rose); }
.recap-theme .contact-title em,
.recap-theme .contact-heading em { color: var(--rose); }

/* ─── Concept card: NDA-safe placeholder for internal UI video ─── */
.cs-concept-card {
  background: linear-gradient(160deg, #E8F0FF 0%, #F0F5FE 60%, #EDF3FF 100%);
  border-radius: 10px;
  border: 1px solid #C8D8F8;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 320px;
  justify-content: center;
}
.concept-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.concept-trigger-badge {
  background: var(--recap-indigo);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.concept-trigger-arrow {
  color: var(--recap-indigo);
  font-size: 1.4rem;
  line-height: 1;
  opacity: .6;
}
.concept-modal-preview {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #D8E4FA;
  padding: 24px 28px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 20px rgba(15, 91, 220, 0.08);
}
.concept-modal-eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--recap-indigo);
  margin-bottom: 14px;
}
.concept-modal-body { display: flex; flex-direction: column; gap: 14px; }
.concept-stat-row { display: flex; gap: 8px; }
.concept-stat-block {
  height: 32px;
  background: #E8F0FF;
  border-radius: 4px;
  flex: 1;
}
.concept-stat-block.wide { flex: 2; }
.concept-archetype-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.concept-archetype-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F5BDC 0%, #4D7FE8 100%);
  flex-shrink: 0;
}
.concept-archetype-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.concept-line {
  height: 10px;
  border-radius: 999px;
  background: #E8F0FF;
}
.concept-line.long  { width: 75%; }
.concept-line.short { width: 45%; }
.concept-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}
.concept-cta-pill {
  background: var(--recap-indigo);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
}
.concept-dismiss {
  font-size: 0.82rem;
  color: #8A8A8A;
}
.figcaption-nda {
  font-style: normal;
  font-weight: 600;
  color: var(--rose);
  font-size: 0.82em;
}

/* ─── Avatar abstract placeholders ─── */
.avatar-abstract {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  flex-shrink: 0;
}
.avatar-abstract::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: .18;
  background: #fff;
}
.avatar-explorer {
  background: linear-gradient(135deg, #0F5BDC 0%, #4D7FE8 100%);
}
.avatar-builder {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
}
.avatar-sealer {
  background: linear-gradient(135deg, #DD1414 0%, #FF6B6B 100%);
}
.avatar-pioneer {
  background: linear-gradient(135deg, #1E3A5F 0%, #2A5F9E 100%);
}
.avatar-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3, #8A8A8A);
  text-align: center;
  line-height: 1.45;
  margin-top: 3px;
  max-width: 120px;
}
@media (max-width: 720px) {
  .cs-concept-card { padding: 28px 20px; min-height: 260px; }
  .concept-modal-preview { padding: 18px 16px 14px; }
  .avatar-abstract { width: 76px; height: 76px; }
}

/* ═══════════════════════════════════════════
   AUTO-OPEN PROCESSED FILES — Components
═══════════════════════════════════════════ */

/* ─── Before / After comparison diagram ─── */
.ao-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0 28px;
}
.ao-ba-panel {
  border-radius: 8px;
  padding: 22px 20px;
}
.ao-ba-panel.ao-ba-before {
  background: var(--rose-bg);
  border: 1px solid rgba(221, 20, 20, 0.15);
}
.ao-ba-panel.ao-ba-after {
  background: var(--recap-indigo-bg);
  border: 1px solid rgba(15, 91, 220, 0.15);
}
.ao-ba-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ao-ba-panel.ao-ba-before .ao-ba-label { color: var(--rose); }
.ao-ba-panel.ao-ba-after  .ao-ba-label { color: var(--recap-indigo); }
.ao-ba-flow {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.ao-ba-step {
  padding: 6px 11px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
.ao-ba-step.neutral  { background: rgba(0,0,0,0.06); color: var(--text); }
.ao-ba-step.negative { background: rgba(221,20,20,.12); color: var(--rose); }
.ao-ba-step.drop     { background: rgba(221,20,20,.18); color: var(--rose); font-style: italic; }
.ao-ba-step.positive { background: rgba(15,91,220,.12); color: var(--recap-indigo); }
.ao-ba-step.continue { background: rgba(15,91,220,.18); color: var(--recap-indigo); font-style: italic; }
.ao-ba-arrow { color: var(--text-3); font-size: 0.8rem; flex-shrink: 0; }
@media (max-width: 600px) {
  .ao-before-after { grid-template-columns: 1fr; }
  .ao-ba-step { white-space: normal; }
}

/* ─── Live product UI container ─── */
.ao-live-ui {
  margin: 36px 0 12px;
  background: #F8F8F8;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 28px 20px;
}
.ao-live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 22px;
}
.ao-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2DA44E;
  box-shadow: 0 0 0 3px rgba(45, 164, 78, .2);
  flex-shrink: 0;
}
.ao-ui-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}
.ao-ui-item { display: flex; flex-direction: column; gap: 10px; }
.ao-ui-caption {
  font-size: 0.75rem;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.4;
}
.ao-product-screenshot {
  max-width: 288px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: block;
}
@media (max-width: 680px) {
  .ao-ui-row { grid-template-columns: 1fr; }
}

/* ─── Toast notification — faithful to shipped Acrobat design ─── */
.ao-toast-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  max-width: 300px;
}
.ao-toast-top {
  display: grid;
  grid-template-columns: 18px 1fr 16px;
  gap: 8px;
  align-items: start;
  padding: 13px 14px 11px;
}
.ao-toast-check {
  flex-shrink: 0;
  margin-top: 1px;
}
.ao-toast-msg {
  font-size: 0.79rem;
  line-height: 1.5;
  color: #1E1E1E;
  margin: 0;
}
.ao-toast-link {
  color: var(--recap-indigo);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ao-toast-x {
  cursor: default;
  margin-top: 2px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.ao-toast-rule { height: 1px; background: #E8E8E8; }
.ao-toast-body {
  padding: 13px 14px 15px;
}
.ao-toast-art {
  width: 100%;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDECEA;
}
.ao-toast-art svg { width: 100%; height: 100%; }
.ao-toast-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ao-toast-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1E1E1E;
}
.ao-toast-sub {
  font-size: 0.75rem;
  color: #5A5A5A;
  line-height: 1.45;
  margin-bottom: 10px;
}
.ao-toast-btn {
  display: inline-block;
  background: #1E1E1E;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 5px;
  align-self: flex-start;
  letter-spacing: .01em;
}
.ao-concept-note {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

/* ─── Tools row ─── */
.ao-tools-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.ao-tool-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(15,91,220,0.07);
  border: 1px solid rgba(15,91,220,0.18);
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--recap-indigo);
}
.ao-tool-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ao-tool-dot.compress { background: #0DA270; }
.ao-tool-dot.convert  { background: var(--rose); }
.ao-tool-dot.organize { background: var(--recap-indigo); }

/* ─── Figma-accurate toast card (real Figma assets) ─── */
.ao-figma-card {
  width: 272px;
  background: #fff;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  font-family: var(--f-body);
  position: relative;
  overflow: hidden;
}
.ao-figma-hdr {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 14px 36px 12px 15px;
}
.ao-figma-check {
  flex-shrink: 0;
  margin-top: 1px;
}
.ao-figma-hdr-text {
  font-size: 12px;
  line-height: 18px;
  color: #000;
  margin: 0;
  width: 200px;
}
.ao-figma-link {
  color: #0265DC;
  text-decoration: underline;
  text-underline-offset: 1px;
  font-weight: 500;
}
.ao-figma-close {
  position: absolute;
  top: 13px;
  right: 12px;
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
}
.ao-figma-rule {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  margin: 0 15px;
}
.ao-figma-body {
  padding: 12px 15px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ao-figma-art {
  width: 240px;
  height: 128px;
  background: #FFEBE7;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.ao-figma-art-img {
  position: absolute;
  left: 23px;
  top: 15px;
  width: 193px;
  height: auto;
}
.ao-figma-copy { display: flex; flex-direction: column; gap: 2px; }
.ao-figma-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #222;
  margin: 0;
}
.ao-figma-sub {
  font-size: 14px;
  line-height: 21px;
  color: #222;
  margin: 0;
}
.ao-figma-footer {
  display: flex;
  justify-content: flex-end;
  padding: 10px 15px 15px;
}
.ao-figma-btn {
  background: #222;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  padding: 6px 16px 8px;
  border-radius: 16px;
  cursor: default;
  letter-spacing: 0;
}

/* ─── Settings panel — faithful to shipped Acrobat design ─── */
.ao-settings-wrap {
  margin: 36px auto 28px;
  max-width: 440px;
}
.ao-settings-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D8D8D8;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  overflow: hidden;
}
.ao-settings-hdr {
  font-size: 1rem;
  font-weight: 700;
  color: #1E1E1E;
  padding: 16px 18px 13px;
}
.ao-settings-rule { height: 1px; background: #E8E8E8; }
.ao-settings-section {
  padding: 14px 18px;
}
.ao-settings-group {
  margin-bottom: 10px;
}
.ao-settings-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #767676;
}
.ao-settings-control {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
/* Also handle old selector name used in some pages */
.ao-settings-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 20px;
}
.ao-settings-key {
  font-size: 0.82rem;
  color: var(--text-2);
  padding-top: 2px;
}
.ao-settings-val {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
}
.ao-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: var(--recap-indigo);
  border: 2px solid var(--recap-indigo);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ao-checkbox svg { display: block; }
.ao-settings-text {
  font-size: 0.82rem;
  color: #1E1E1E;
  line-height: 1.5;
}
.ao-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 18px;
}
.ao-settings-btn {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: default;
}
.ao-settings-btn.cancel {
  background: transparent;
  color: #5A5A5A;
  border: 1px solid #D8D8D8;
}
.ao-settings-btn.save {
  background: var(--recap-indigo);
  color: #fff;
}
@media (max-width: 600px) {
  .ao-settings-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── Results ─── */
.ao-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0 8px;
  border-top: 1px solid var(--border);
}
.ao-result {
  padding: 32px 28px 32px 0;
  border-bottom: 1px solid var(--border);
}
.ao-result:nth-child(2) {
  padding-left: 28px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.ao-result-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--rose);
  margin-bottom: 14px;
}
.ao-result-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.ao-result-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 720px) {
  .ao-results { grid-template-columns: 1fr; }
  .ao-result:nth-child(2) {
    padding-left: 0;
    border-left: none;
  }
  .ao-result-num { font-size: 2.6rem; }
}

/* ─── TBO BRAND THEME OVERRIDES ─── */
.tbo-theme {
  --rose:        #F26B25;   /* tbo.com primary orange */
  --rose-bg:     #FDE3D2;   /* very soft peach */
  --rose-mid:    #F9B388;   /* mid orange */
  --tbo-blue:        #2A7DE1;
  --tbo-blue-bg:     #DBE9FA;
  --tbo-blue-soft:   #547EBE;
  --tbo-grey:        #808284;
}
.tbo-theme .chip-rose { background: var(--rose-bg);    color: #8C3A0F; }
.tbo-theme .cs-eyebrow,
.tbo-theme .section-title em,
.tbo-theme .cs-title em,
.tbo-theme .cs-h2 em,
.tbo-theme .glance-num,
.tbo-theme .fs-num,
.tbo-theme .metric-num,
.tbo-theme .finding-num,
.tbo-theme .contact-title em,
.tbo-theme .contact-heading em { color: var(--rose); }
.tbo-theme .cs-quote        { border-left-color: var(--rose); }
.tbo-theme .finding-card    { border-left-color: var(--rose); }
.tbo-theme .finding-card:nth-child(2) { border-left-color: var(--tbo-blue); }
.tbo-theme .finding-card:nth-child(2) .finding-num { color: var(--tbo-blue); }
.tbo-theme .method-1::before { background: var(--rose); }
.tbo-theme .method-2::before { background: var(--tbo-blue); }
.tbo-theme .method-3::before { background: var(--tbo-blue-soft); }
.tbo-theme .method-4::before { background: var(--rose-mid); }
.tbo-theme .deliv-card:hover { border-color: var(--rose); }
.tbo-theme .impact-rose     { background: var(--rose-bg);     color: #8C3A0F; }
.tbo-theme .impact-sage     { background: var(--tbo-blue-bg); color: #1F4D90; }
.tbo-theme .impact-lavender { background: #FFEFE3;            color: #8C3A0F; }
.tbo-theme .impact-gold     { background: #E6F0FB;            color: #1F4D90; }
.tbo-theme .field-visual {
  background: linear-gradient(130deg, var(--rose-bg) 0%, var(--tbo-blue-bg) 100%);
}
.tbo-theme .cs-card-1 .cs-overlay { background: linear-gradient(135deg, var(--rose-bg) 0%, var(--tbo-blue-bg) 100%); }
.tbo-theme .cs-card-2 .cs-overlay { background: linear-gradient(135deg, var(--tbo-blue-bg) 0%, var(--rose-bg) 100%); }
.tbo-theme .nda-pill        { background: var(--rose-bg);   color: #8C3A0F; }
.tbo-theme .back-link:hover { color: var(--rose); }

/* tbo signature ribbon under section labels */
.tbo-theme .section-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--rose);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

/* ─── CSS-NATIVE DIAGRAMS (recreated from source decks) ─── */

/* Fragments diagram — pill-flow with arrows */
.fragments-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 28px;
  background: linear-gradient(135deg, var(--rose-bg) 0%, var(--recap-indigo-bg, var(--lavender-bg)) 100%);
  border-radius: var(--r-l);
  flex-wrap: wrap;
}
.fragment-pill {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--recap-indigo, var(--text));
  text-align: center;
  flex: 1 1 0;
  min-width: 140px;
  max-width: 220px;
  line-height: 1.3;
  box-shadow: var(--sh-sm);
}
.fragment-arrow {
  color: var(--rose);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.fragments-tag {
  text-align: center;
  margin-top: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
}

/* Cadence timeline — Day 0 → Day 14 → Day 365 */
.cadence-diagram {
  margin: 32px 0;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
}
.cadence-diagram h4 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text);
}
.cadence-diagram p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cadence-track {
  position: relative;
  height: 56px;
}
.cadence-base {
  position: absolute;
  inset-inline: 0;
  top: 26px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}
.cadence-active-bar {
  position: absolute;
  left: 0;
  top: 22px;
  width: 4%;
  height: 10px;
  background: var(--rose);
  border-radius: 5px;
}
.cadence-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--surface);
  border: 2px solid var(--text-2);
  border-radius: 50%;
  top: 21px;
  transform: translateX(-50%);
}
.cadence-point.active { border-color: var(--rose); background: var(--rose); }
.cadence-point.end    { border-color: var(--text-3); }
.cadence-label {
  position: absolute;
  top: 42px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-2);
  transform: translateX(-50%);
  white-space: nowrap;
}
/* Day 0 anchored at left edge so it doesn't get clipped */
.cadence-label.day-0   { transform: translateX(0);    }
.cadence-label.day-365 { transform: translateX(-100%);}
.cadence-label.highlight { color: var(--rose); transform: translateX(-30%); }
.cadence-caption {
  position: absolute;
  top: -22px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--rose);
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Hypothesis card — calmer, single-card layout */
.hypothesis-card {
  background: var(--rose-bg);
  border-radius: var(--r-l);
  padding: 28px 32px;
  margin: 24px 0 4px;
  max-width: 60ch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hypothesis-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
}
.hypothesis-card p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

/* Principles row — 1 × 3 horizontal layout (holds at all but the narrowest widths) */
.principles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 12px;
  counter-reset: principle;
}
.principle {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 2px solid var(--rose);
  position: relative;
}
.principle::before {
  counter-increment: principle;
  content: counter(principle, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: 0;
  background: var(--rose);
  color: #fff;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.85rem;
  padding: 2px 10px;
  border-radius: var(--r-xl);
}
.principle h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.principle p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .principles-row { grid-template-columns: 1fr; gap: 24px; }
}

/* Stepper — clean horizontal walkthrough flow with connected dots */
.stepper {
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}
.stepper-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stepper-track::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--rose-mid);
  z-index: 0;
}
.step {
  position: relative;
  text-align: left;
  padding: 0 8px;
}
.step-dot {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.step-title {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}
.step-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .stepper-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .stepper-track::before {
    top: 0;
    bottom: 0;
    left: 16px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .step { padding: 0 0 0 52px; }
  .step-dot { position: absolute; left: 0; top: 0; margin-bottom: 0; }
}

/* Avatar row — 4 cropped archetype icons + clean labels */
.avatar-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0 8px;
}
.avatar-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.avatar-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.avatar-name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
}
@media (max-width: 720px) {
  .avatar-row { grid-template-columns: repeat(2, 1fr); }
}

/* Scenario flow — numbered 4-step sequence with arrows */
.scenario-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
  align-items: stretch;
}
.scenario-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scenario-step::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose);
  z-index: 2;
}
.scenario-step:last-child::after { display: none; }
.scenario-num {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--rose);
}
.scenario-title {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}
.scenario-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .scenario-flow { grid-template-columns: repeat(2, 1fr); }
  .scenario-step:nth-child(2)::after { display: none; }
}
@media (max-width: 520px) {
  .scenario-flow { grid-template-columns: 1fr; }
  .scenario-step::after { display: none; }
}

/* Video embed — looping autoplay for product UI demos */
.cs-video {
  margin: 32px 0 28px;
  text-align: center;
}
.cs-video-frame {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
  border-radius: var(--r-l);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  background: #f7f3ee;
}
.cs-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}
.cs-video figcaption {
  margin: 14px auto 0;
  max-width: 540px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--text-3);
  text-align: center;
  font-style: italic;
}

/* Impact categories — qualitative business-impact framing */
.impact-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
}
.impact-cat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 22px 22px 20px;
  position: relative;
}
.impact-cat-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose-bg);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--r-xl);
  margin-bottom: 14px;
}
.impact-cat-trend::before { content: '↑'; font-size: 0.85rem; }
.impact-cat h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}
.impact-cat p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .impact-categories { grid-template-columns: 1fr; }
}

/* ─── FIGURE COMPONENTS (images) ─── */
.cs-figure {
  margin: 32px 0 28px;
}
.cs-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-l);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.cs-figure figcaption {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--text-3);
  text-align: center;
  font-style: italic;
}

/* Side-by-side pair */
.cs-figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 28px;
}
.cs-figure-pair figure { margin: 0; }
.cs-figure-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-l);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.cs-figure-pair figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-style: italic;
  text-align: center;
}

/* 2x2 grid — figures wrap the image so we can tightly crop the browser chrome */
.cs-figure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 28px;
}
.cs-figure-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  background: #fff;
}
.cs-figure-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Scale to crop browser chrome cleanly off the edges */
  transform: scale(1.18);
  border: none;
  box-shadow: none;
  border-radius: 0;
}
/* Modal frame needs a tighter, more centered zoom */
.cs-figure-grid figure.is-modal img {
  transform: scale(1.35);
  object-position: center 55%;
}
.cs-figure-grid .grid-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(4px);
  border-radius: var(--r-xl);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
}

/* Portrait figure — for small-resolution portrait photos shown at native size */
.cs-figure-portrait {
  margin: 40px 0 8px;
  text-align: center;
}
.cs-figure-portrait .portrait-frame {
  display: inline-block;
  padding: 16px;
  background: linear-gradient(135deg, var(--rose-bg) 0%, var(--tbo-blue-bg, #DBE9FA) 100%);
  border-radius: var(--r-l);
  box-shadow: var(--sh-md);
  max-width: 100%;
}
.cs-figure-portrait img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: var(--r-m);
  border: none;
  box-shadow: none;
}
.cs-figure-portrait figcaption {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-3);
  font-style: italic;
  text-align: center;
}

@media (max-width: 720px) {
  .cs-figure-pair { grid-template-columns: 1fr; }
  .cs-figure-grid { grid-template-columns: 1fr; }
}

.cs-container {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.cs-section {
  padding-block: clamp(64px, 7vw, 96px);
}
.cs-section.section-tinted {
  background: var(--surface-2);
}

/* ═══ HERO ═══ */
.cs-hero {
  position: relative;
  padding-block: clamp(28px, 3.5vw, 48px) clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.back-link {
  display: block;
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 24px;
  transition: color .15s, transform .15s;
}
.back-link:hover {
  color: var(--text);
  transform: translateX(-3px);
}

.cs-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.cs-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 24px;
}
.cs-title em {
  font-style: italic;
  color: var(--rose);
}

.cs-lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-2);
  line-height: 1.78;
  max-width: 62ch;
  margin-bottom: 40px;
}

.cs-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  box-shadow: var(--sh-sm);
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.meta-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.meta-value {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--text);
}
.nda-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-bg);
  color: #6B4818;
  border-radius: var(--r-xl);
  font-size: 0.78rem;
  font-family: var(--f-body);
  font-weight: 600;
  width: fit-content;
}

/* ═══ AT A GLANCE ═══ */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.glance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px 22px;
}
.glance-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 14px;
}
.glance-num .plus { font-size: 1.6rem; vertical-align: top; }
.glance-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.66;
}

/* ═══ SECTION HEADINGS ═══ */
.cs-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.22;
  margin-top: 4px;
  margin-bottom: 32px;
}
.cs-h2 em { font-style: italic; color: var(--rose); }

.cs-h3 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  margin-top: 36px;
  margin-bottom: 16px;
}
/* When h3 directly follows a figure, the figure already provides space below */
.cs-figure + .cs-h3,
.cs-figure-pair + .cs-h3,
.cs-figure-grid + .cs-h3,
.cs-callout + .cs-h3 { margin-top: 8px; }

/* ═══ PROSE ═══ */
.cs-prose {
  max-width: 64ch;
  margin-bottom: 24px;
}
.cs-prose p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.cs-prose strong { color: var(--text); font-weight: 600; }
.cs-prose em { font-style: italic; color: var(--text); }

.cs-prose-lead {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.78;
  max-width: 56ch;
  margin-bottom: 36px;
}

/* ═══ STRATEGIC CALLOUT ═══ */
.cs-callout {
  background: var(--rose-bg);
  border-left: 4px solid var(--rose);
  border-radius: var(--r-m);
  padding: 22px 28px;
  margin: 28px 0;
  max-width: 68ch;
}
.cs-callout-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.cs-callout-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.72;
}
.cs-callout-text strong { font-weight: 600; }
.cs-callout-text em { font-style: italic; color: var(--text-2); }

/* Implication tag — small strategic conclusion under a finding */
.cs-implication {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.025);
  border-radius: var(--r-s);
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.6;
}
.cs-implication::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
  color: var(--rose);
  font-size: 1rem;
  line-height: 1.4;
}
.cs-implication strong {
  color: var(--text);
  font-weight: 600;
}

/* ═══ PULL QUOTE ═══ */
.cs-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  color: var(--text);
  padding: 20px 0 20px 28px;
  margin: 28px 0 8px;
  border-left: 3px solid var(--rose-mid);
  max-width: 36ch;
}

/* ═══ METHODOLOGY GRID ═══ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 4px;
}
.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.method-1::before { background: var(--rose); }
.method-2::before { background: var(--sage); }
.method-3::before { background: var(--lavender); }
.method-4::before { background: var(--gold); }

.method-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-3);
  margin-bottom: 10px;
}
.method-card h4 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}
.method-card ul {
  list-style: none;
}
.method-card li {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  padding: 5px 0;
  border-top: 1px dashed var(--border);
}
.method-card li:first-child { border-top: none; }

/* ═══ THEME GRID ═══ */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.theme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 24px 22px;
}
.theme-card .chip { margin-bottom: 14px; }
.theme-card h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}
.theme-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══ FIELD VISUAL ═══ */
.field-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
  padding: 36px 28px;
  background: linear-gradient(130deg, var(--rose-bg) 0%, var(--lavender-bg) 100%);
  border-radius: var(--r-l);
}
.field-stat {
  text-align: center;
}
.fs-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.fs-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ═══ FINDING CARDS ═══ */
.finding-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
/* When the finding row follows a figure-pair (synthesis walls), add extra breathing room */
.cs-figure-pair + .finding-row { margin-top: 56px; }
.finding-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px;
  border-left: 4px solid var(--rose);
}
.finding-card:nth-child(2) { border-left-color: var(--lavender); }

.finding-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.finding-card:nth-child(2) .finding-num { color: var(--lavender); }

.finding-card h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.finding-card blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 14px;
}
.finding-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══ DELIVERABLES GRID ═══ */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.deliv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 22px 20px;
}
.deliv-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-3);
  margin-bottom: 8px;
}
.deliv-card h4 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.deliv-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ═══ IMPACT LIST ═══ */
.impact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.impact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 22px 26px;
}
.impact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.impact-rose     { background: var(--rose-bg);     color: #8B3828; }
.impact-sage     { background: var(--sage-bg);     color: #1E5E42; }
.impact-lavender { background: var(--lavender-bg); color: #3D3480; }
.impact-gold     { background: var(--gold-bg);     color: #6B4818; }

.impact-item h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.impact-item p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══ CLOSING ═══ */
.cs-end {
  text-align: center;
  padding-block: 16px 8px;
}
.cs-end .section-tag { margin-bottom: 16px; }
.cs-end .cs-h2 {
  margin-inline: auto;
}
.cs-end .cs-prose-lead {
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}
.cs-end-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 880px) {
  .cs-meta       { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px; }
  .glance-grid   { grid-template-columns: repeat(2, 1fr); }
  .method-grid   { grid-template-columns: repeat(2, 1fr); }
  .theme-grid    { grid-template-columns: 1fr; }
  .finding-row   { grid-template-columns: 1fr; }
  .deliv-grid    { grid-template-columns: repeat(2, 1fr); }
  .field-visual  { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .cs-callout    { padding: 20px 22px; }
  .finding-card  { padding: 24px; }
  .cs-quote      { padding: 16px 0 16px 22px; }
}

@media (max-width: 520px) {
  .cs-meta       { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .glance-grid   { grid-template-columns: 1fr; }
  .method-grid   { grid-template-columns: 1fr; }
  .deliv-grid    { grid-template-columns: 1fr; }
  .impact-item   { grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 20px; }
  .impact-icon   { width: 36px; height: 36px; font-size: 1.1rem; }
  .glance-card   { padding: 22px 20px; }
  .method-card   { padding: 22px 20px; }
  .cs-callout    { padding: 18px 20px; }
  .finding-card  { padding: 20px; }
}
