/* ============================================================
   "THE BIGGER PICTURE" — 3 switchable variations
   All share the blend model:
     (1) trigger MOMENTS every business has  (static, designed)
     (2) their SPECIFIC gaps + questions      (from discoveryPrep data)
   Switch with the inline segmented control.
   ============================================================ */

.bp-tile { padding: 24px; }
.bp-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bp-lead {
  font-size: 15px; color: var(--ink); margin: 14px 0 0; padding: 13px 16px;
  background: var(--bg-subtle); border-radius: var(--radius-md);
  border-left: 3px solid var(--accent); text-wrap: pretty;
}
.bp-lead .bp-lead-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }

/* segmented switcher (demo control to compare variants) */
.seg {
  display: inline-flex; background: var(--bg-subtle); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 3px; gap: 2px; flex: 0 0 auto;
}
.seg button {
  border: 0; background: transparent; color: var(--muted); cursor: pointer;
  font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: var(--radius-pill);
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.seg button.on { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-card); }

.bp-section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); margin: 24px 0 12px; display: flex; align-items: center; gap: 8px;
}
.bp-section-label .icon { width: 15px; height: 15px; color: var(--accent-ink); }

.bp-variant { display: none; }
.bp-variant.on { display: block; animation: stage-in .35s var(--ease-standard); }

/* moment icon bubble (shared) */
.bp-ibubble {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--accent-wash); color: var(--accent-ink); flex: 0 0 auto;
}
.bp-ibubble .icon { width: 18px; height: 18px; }
.bp-arrow { color: var(--accent-ink); }

/* ---- moment copy ---- */
.bp-when { font-weight: 650; font-size: 14.5px; color: var(--ink); }
.bp-then { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 2px; text-wrap: pretty; }
.bp-then b { color: var(--accent-ink); font-weight: 600; }

/* ============================================================
   VARIANT A — FLOW RAIL  (calm vertical timeline)
   ============================================================ */
.bp-rail { position: relative; margin-left: 4px; }
.bp-rail::before {
  content: ""; position: absolute; left: 16px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(var(--accent-line), var(--accent-line));
}
.bp-node { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 9px 0; position: relative; }
.bp-node .bp-dot {
  width: 34px; height: 34px; border-radius: 50%; background: var(--paper);
  border: 2px solid var(--accent-line); color: var(--accent-ink);
  display: grid; place-items: center; z-index: 1;
}
.bp-node .bp-dot .icon { width: 16px; height: 16px; }
.bp-node .bp-body { padding-top: 4px; }

/* ============================================================
   VARIANT B — MOMENT GRID  (skimmable cards)
   ============================================================ */
.bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bp-moment {
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 14px;
  background: var(--paper); transition: border-color var(--dur-base) var(--ease-standard),
  box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.bp-moment:hover { border-color: var(--accent-line); box-shadow: var(--shadow-hover); transform: translateY(-1px); }
.bp-moment .bp-ibubble { margin-bottom: 10px; }
.bp-moment .bp-when { display: block; margin-bottom: 3px; }

/* ============================================================
   VARIANT C — SPOTLIGHT  (interactive tabs)
   ============================================================ */
.bp-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-tab {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line);
  background: var(--paper); color: var(--muted); border-radius: var(--radius-pill);
  padding: 8px 14px 8px 10px; cursor: pointer; font: inherit; font-size: 13px; font-weight: 600;
  transition: all var(--dur-base) var(--ease-standard);
}
.bp-tab .bp-tab-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-subtle); color: var(--muted); }
.bp-tab .bp-tab-ic .icon { width: 15px; height: 15px; }
.bp-tab:hover { border-color: var(--accent-line); color: var(--ink); }
.bp-tab.on { border-color: var(--accent); background: var(--accent-wash); color: var(--ink); }
.bp-tab.on .bp-tab-ic { background: var(--accent); color: var(--accent-fg); }
.bp-spotlight {
  margin-top: 12px; border: 1px solid var(--accent-line); border-radius: var(--radius-md);
  background: var(--accent-wash); padding: 18px; display: grid; grid-template-columns: 44px 1fr; gap: 14px;
  animation: stage-in .3s var(--ease-standard);
}
.bp-spotlight .bp-ibubble { width: 44px; height: 44px; background: var(--accent); color: var(--accent-fg); }
.bp-spotlight .bp-ibubble .icon { width: 22px; height: 22px; }
.bp-spot-when { font-weight: 700; font-size: 15px; margin: 2px 0 5px; }
.bp-spot-then { font-size: 14px; color: var(--ink); line-height: 1.55; }
.bp-spot-then b { color: var(--accent-ink); }

/* ============================================================
   SPECIFIC GAPS  (shared across variants, from data)
   ============================================================ */
.bp-gaps { display: flex; flex-direction: column; gap: 8px; }
.bp-gap {
  display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start;
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--bg-subtle); font-size: 14px; line-height: 1.5; color: var(--ink); text-wrap: pretty;
}
.bp-gap .icon { width: 18px; height: 18px; color: var(--accent-ink); margin-top: 1px; }

/* what we'd explore (questions) — quiet, tucked under */
.bp-explore { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; }
.bp-explore summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.bp-explore summary::-webkit-details-marker { display: none; }
.bp-explore summary .chev { margin-left: auto; transition: transform var(--dur-base) var(--ease-standard); }
.bp-explore[open] summary .chev { transform: rotate(180deg); }
.bp-explore summary .icon { width: 16px; height: 16px; color: var(--accent-ink); }
.bp-qlist { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 9px; }
.bp-qlist li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 13.5px;
  color: var(--muted); line-height: 1.5; }
.bp-qlist li .icon { width: 14px; height: 14px; color: var(--accent-ink); margin-top: 3px; }

@media (max-width: 600px) {
  .bp-grid { grid-template-columns: 1fr; }
  .bp-head { flex-direction: column; }
}
