/* Desktop Command Center v1 — Slice 1 (contract CC1-*)
 * All rules scoped under body.cc — no effect without the class.
 * Activates only on desktop (>820px) when the cc flag is on.
 */

body.cc {
  /* Grid layout: rail | (topbar / content / dock) */
  display: grid;
  grid-template-areas:
    "rail topbar"
    "rail content"
    "rail dock";
  grid-template-columns: 200px 1fr;
  grid-template-rows: 56px 1fr 88px;
  height: 100vh;
  overflow: hidden;
}

/* #94 removed the scope-chip + search box from the top bar, leaving it holding only the
   chat-mode back button (hidden on the dashboard). Collapse the empty 56px white band when
   not in a conversation, so the dashboard doesn't show a leftover header strip. */
body.cc:not(.cc-chat) { grid-template-rows: 0 1fr 88px; }
body.cc:not(.cc-chat) #cc-topbar { display: none; }

/* Hide the legacy top header when CC is active */
body.cc header {
  display: none !important;
}

/* #app-view is the authenticated content wrapper (the body grid child that holds .panels/#dash).
   It is the CC "content" grid cell. We assign grid-area only — the app's auth gate controls its
   display (shown only when signed in), and the CC shell only mounts when signed in (config present). */
body.cc #app-view {
  grid-area: content;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

/* .panels fills #app-view as the content surface — it must NOT be hidden */
body.cc .panels {
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

/* Hide the legacy side panels + drag handle inside .panels — only #workcol (the dash content)
   remains as the CC content surface. (the chat-zone and #tabs are hidden by their own rules below) */
body.cc #projPanel,
body.cc #rightPanel,
body.cc .vresizer {
  display: none !important;
}

/* ── Rail (left navigation) ────────────────────────── */
#cc-rail {
  grid-area: rail;
  background: var(--rail-bg);
  border-right: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  overflow-y: auto;
}

#cc-rail .rail-identity {
  margin-bottom: 24px;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* Brand mark: the tenant logo at a proportional 56px in the rail, no background box. Honors the
   per-tenant logo_fit token. (~37% of the identity card width reads as a confident brand element.) */
#cc-rail .rail-logo {
  width: 56px;
  height: 56px;
  background: var(--tenant-logo, none) center / var(--tenant-logo-fit, contain) no-repeat;
  margin: 0 auto 12px;
}

#cc-rail .rail-company {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink, #111827);
  text-align: center;
  margin-bottom: 2px;
}

#cc-rail .rail-product {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 4px;
}

#cc-rail .rail-tagline {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}

#cc-rail nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#cc-rail .rail-divider {
  height: 1px;
  background: rgba(0,0,0,.06);
  margin: 12px 0;
}

#cc-rail .rail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.15s ease;
  position: relative;
}

#cc-rail .rail-item:hover {
  background: rgba(0,0,0,.03);
}

#cc-rail .rail-item:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

#cc-rail .rail-item.active {
  background: var(--brand-tint);
  color: var(--brand-dk);
}

#cc-rail .rail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#cc-rail .rail-icon svg {
  display: block;
}

#cc-rail .rail-item .rail-badge {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Account footer pinned to the bottom of the rail — holds the sign-out control the hidden header used to. */
#cc-rail .rail-foot {
  margin-top: auto;
  padding-top: 12px;
}
#cc-rail .rail-logout {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
#cc-rail .rail-logout:hover { background: rgba(0,0,0,.03); color: var(--ink); }
#cc-rail .rail-logout:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ── Top bar ────────────────────────────────────────── */
#cc-topbar {
  grid-area: topbar;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}

/* ── Content area ───────────────────────────────────── */
body.cc .workcol {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  background: var(--canvas);
  border: none;
}

/* Hide dashboard collapse controls in CC mode */
body.cc .dash-bar {
  display: none;
}

body.cc .dash-zone {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.cc .dash-body {
  flex: 1;
  overflow-y: auto;
}

/* Command Center hides the collapse toggle (.dash-bar), so a persisted legacy dash-collapse
   would strand the user with a hidden dashboard and no way back. Defeat it in CC (mirrors the
   mobile override): the main pane always shows. */
body.cc .dash-zone.collapsed .dash-body {
  display: block;
}

/* Hide tabs in CC mode (navigation is in rail) */
body.cc #tabs {
  display: none;
}

/* Hide chat zone's standalone layout in CC mode */
body.cc .chat-zone {
  display: none;
}

/* ── Dock (bottom chat) ─────────────────────────────── */
#cc-dock {
  grid-area: dock;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  padding: 0 24px;
}

#cc-dock #chat-form {
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

#cc-dock #in {
  flex: 1;
  padding: 18px 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  background: var(--rail-bg);
  color: var(--ink);
}

#cc-dock #in:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}

#cc-dock #b {
  padding: 10px 20px;
  background: var(--brand-dk);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

#cc-dock #b:hover:not(:disabled) {
  background: var(--brand);
}

#cc-dock #b:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

#cc-dock #b:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Goals stub workspace ───────────────────────────── */
body.cc .cc-goals-stub {
  padding: 40px 24px;
  max-width: 600px;
}

body.cc .cc-goals-stub h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink, #111827);
  margin-bottom: 12px;
}

body.cc .cc-goals-stub p {
  font-size: 15px;
  color: var(--ink-2, #374151);
  line-height: 1.6;
}

/* ── Approvals workspace ────────────────────────────── */
body.cc .cc-approvals {
  padding: 24px;
}

body.cc .cc-approvals h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink, #111827);
  margin-bottom: 20px;
}

body.cc .cc-approvals .ap-empty {
  padding: 60px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

body.cc .cc-approvals .ap-empty .check-icon {
  font-size: 48px;
  color: var(--ok);
  margin-bottom: 12px;
}

/* Reuse existing approval card styles from index.html */
body.cc .cc-approvals .ap-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

body.cc .cc-approvals .ap-hd {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink, #111827);
  margin-bottom: 8px;
}

body.cc .cc-approvals .ap-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

body.cc .cc-approvals .ap-body {
  font-size: 14px;
  color: var(--ink-2, #374151);
  margin: 12px 0;
  line-height: 1.5;
  white-space: pre-wrap;
}

body.cc .cc-approvals .ap-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

body.cc .cc-approvals .ap-approve {
  padding: 9px 16px;
  background: var(--brand-dk);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

body.cc .cc-approvals .ap-reject {
  padding: 9px 16px;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

body.cc .cc-approvals .ap-approve:hover {
  background: var(--brand);
}

body.cc .cc-approvals .ap-reject:hover {
  background: var(--brand-tint);
  border-color: var(--muted);
}

body.cc .cc-approvals .ap-approve:disabled,
body.cc .cc-approvals .ap-reject:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Goals & Progress / Owner Plan (Slice 2) ─────────────────── */
body.cc .cc-goals { max-width: 880px; margin: 0 auto; padding: 32px 28px; }
body.cc .cc-goals h1 { font-size: 28px; font-weight: 700; margin: 0 0 20px; color: var(--ink, #111827); }
body.cc .goal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
body.cc .goal-head h1 { margin-bottom: 0; }
body.cc .goal-loading, body.cc .goal-muted { color: var(--muted, #9CA3AF); font-size: 14px; }
body.cc .goal-muted { margin-top: 4px; }

body.cc .goal-empty { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 40px 32px; text-align: center; }
body.cc .goal-empty h2 { font-size: 20px; font-weight: 700; margin: 0 0 8px; color: var(--ink, #111827); }
body.cc .goal-empty p { color: var(--muted, #6B7280); margin: 0 0 20px; }

body.cc .goal-btn-primary {
  background: var(--brand-dk); color: #fff; border: none;
  border-radius: 8px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--sans, inherit);
}
body.cc .goal-btn-primary:hover { background: var(--brand); }
body.cc .goal-btn-ghost { background: transparent; color: var(--ink-2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; }
body.cc .goal-btn-ghost:hover { background: var(--brand-tint); border-color: var(--muted); }
body.cc .goal-link { background: none; border: 0; color: var(--brand-dk); font-size: 13px; font-weight: 600; cursor: pointer; padding: 0 0 0 6px; text-decoration: underline; }
body.cc .goal-btn-primary:focus-visible, body.cc .goal-btn-ghost:focus-visible, body.cc .goal-link:focus-visible, body.cc .goal-prepare:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

body.cc .owner-plan { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 24px; }
body.cc .op-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted, #9CA3AF); margin-bottom: 6px; }
body.cc .op-goal { padding-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,.06); }
body.cc .op-title { font-size: 20px; font-weight: 700; color: var(--ink, #111827); }
body.cc .op-target { font-size: 14px; color: var(--ink-2, #374151); margin-top: 4px; }
body.cc .op-deadline, body.cc .goal-deadline { color: var(--muted, #6B7280); }
body.cc .goal-bar { height: 8px; background: rgba(0,0,0,.06); border-radius: 999px; margin: 12px 0; overflow: hidden; }
body.cc .goal-bar-fill { height: 100%; background: var(--ok); border-radius: 999px; }
body.cc .op-current { font-size: 14px; color: var(--ink, #111827); margin-top: 8px; }
body.cc .goal-num { font-weight: 700; }
body.cc .goal-srclabel { color: var(--muted, #9CA3AF); font-size: 12px; }
body.cc .goal-baseline-empty { color: var(--brand-dk); font-weight: 600; }
body.cc .goal-stale { color: #B45309; font-size: 12px; }
body.cc .goal-gap { margin-top: 8px; font-size: 14px; color: var(--ink, #111827); }
body.cc .goal-math { color: var(--muted, #9CA3AF); font-size: 12px; }
body.cc .op-cols { display: flex; gap: 28px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
body.cc .op-col { flex: 1; min-width: 0; }
body.cc .op-list { margin: 0; padding-left: 18px; color: var(--ink-2, #374151); font-size: 14px; }
body.cc .op-list li { margin: 2px 0; }
body.cc .op-actions { padding: 18px 0 6px; }
body.cc .goal-action { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 14px; color: var(--ink-2, #374151); }
body.cc .goal-prepare { background: var(--brand-dk); color: #fff; border: none; border-radius: 8px; padding: 5px 12px; font-size: 12px; font-weight: 600; cursor: pointer; flex-shrink: 0; }
body.cc .goal-prepare:hover { background: var(--brand); }
body.cc .op-trust { color: var(--muted, #9CA3AF); font-size: 12px; margin-top: 8px; }
body.cc .op-prepared { padding-top: 16px; }

/* Owner Plan (Slice 3 M1): the five persisted, generated sections, inside Goals & Progress. */
body.cc .op-plan { padding: 18px 0; border-top: 1px solid rgba(0,0,0,.06); }
body.cc .op-plan-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
body.cc .op-plan-head .op-label { margin-bottom: 0; }
body.cc .op-plan-meta { font-size: 12px; color: var(--muted, #9CA3AF); }
body.cc .op-plan-head .goal-link { margin-left: auto; }
body.cc .op-plan-sec { padding: 8px 0; }
body.cc .op-plan-lab { font-size: 13px; font-weight: 700; color: var(--ink, #111827); margin-bottom: 4px; }
body.cc .op-plan-body { font-size: 14px; color: var(--ink-2, #374151); line-height: 1.5; }
body.cc .op-plan-empty .goal-muted { margin-bottom: 10px; }

/* Executive Owner Plan render (Slice 3 M1.2): scannable structure, not paragraphs. */
body.cc .op-plan-sec .op-list { margin: 4px 0 0; }
body.cc .op-phases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
body.cc .op-phase { border: 0.5px solid rgba(0,0,0,.1); border-radius: 9px; padding: 10px 12px; }
body.cc .op-phase-by { font-size: 12px; color: var(--muted, #9CA3AF); }
body.cc .op-phase-obj { font-size: 13px; color: var(--ink-2, #374151); margin: 4px 0 8px; }
body.cc .op-phase-target { font-size: 12px; font-weight: 600; color: var(--brand-dk); background: var(--brand-tint); padding: 2px 8px; border-radius: 8px; }
body.cc .op-plan-cols { display: flex; gap: 28px; padding: 8px 0; }
body.cc .op-plan-col { flex: 1; min-width: 0; }
body.cc .op-pri { margin: 4px 0 0; padding-left: 20px; font-size: 14px; line-height: 1.6; color: var(--ink-2, #374151); }
body.cc .op-pri li { margin: 2px 0; }
body.cc .op-nba { background: var(--brand-tint); border-radius: 10px; padding: 12px 14px; margin-top: 12px; }
body.cc .op-nba-lab { font-size: 12px; font-weight: 700; color: var(--brand-dk); margin-bottom: 2px; }
body.cc .op-nba-act { font-size: 14px; font-weight: 600; color: var(--ink); }
body.cc .op-nba-why { font-size: 12px; color: var(--brand-dk); margin-top: 2px; }

/* Plan form: multi-control fields + the 30/60/90 phase blocks. */
body.cc .goal-form .goal-field { display: flex; flex-direction: column; gap: 5px; }
body.cc .pf-phases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
body.cc .pf-phase { display: flex; flex-direction: column; gap: 6px; border: 0.5px solid rgba(0,0,0,.1); border-radius: 9px; padding: 10px; }
body.cc .pf-phase-h { font-size: 12px; font-weight: 600; color: var(--muted, #6B7280); }

body.cc .goal-form { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
body.cc .goal-form label { display: flex; flex-direction: column; gap: 3px; font-size: 13px; font-weight: 600; color: var(--ink-2, #374151); }
body.cc .goal-form-intro { color: var(--muted, #6B7280); font-size: 13px; margin: 0 0 4px; }
body.cc .goal-lab { font-size: 13px; font-weight: 600; color: var(--ink-2, #374151); }
body.cc .goal-hint { font-size: 12px; font-weight: 400; color: var(--muted, #9CA3AF); line-height: 1.35; margin-bottom: 2px; }
body.cc .goal-form input, body.cc .goal-form select, body.cc .goal-form textarea {
  font: inherit; font-weight: 400; padding: 9px 11px; border: 1px solid rgba(0,0,0,.14); border-radius: 8px; background: #fff; color: var(--ink, #111827);
}
body.cc .goal-form input:focus, body.cc .goal-form select:focus, body.cc .goal-form textarea:focus { outline: 2px solid rgba(22,163,74,.4); outline-offset: 0; border-color: rgba(22,163,74,.5); }
body.cc .goal-form-row { display: flex; gap: 14px; }
body.cc .goal-form-row label { flex: 1; }
/* Pin the action row to the bottom of the card. The Goals/Plan forms can be taller than the content
   area, so without this the Save button scrolls below the chat dock and reads as missing. */
body.cc .goal-form-buttons {
  display: flex;
  gap: 10px;
  position: sticky;
  bottom: 0;
  background: #fff;
  margin: 8px -24px -24px;
  padding: 14px 24px;
  border-top: 1px solid rgba(0,0,0,.06);
  border-radius: 0 0 14px 14px;
}
body.cc .goal-form-err { color: #B91C1C; font-size: 13px; min-height: 16px; }
/* Growth Setup: per-field limit, live char counter, success line, in-flight save state. */
body.cc .goal-max { font-size: 11px; font-weight: 400; color: var(--muted, #9CA3AF); }
body.cc .goal-count { align-self: flex-end; font-size: 11px; color: var(--muted, #9CA3AF); font-variant-numeric: tabular-nums; }
body.cc .goal-count.over { color: #B91C1C; font-weight: 600; }
body.cc .goal-form-ok { color: #15803D; font-size: 13px; min-height: 16px; }
body.cc .goal-btn-primary.is-saving { opacity: .7; cursor: progress; }
body.cc .goal-btn-primary.is-saving::before {
  content: ""; display: inline-block; width: 11px; height: 11px; margin-right: 7px; vertical-align: -1px;
  border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%;
  animation: gs-spin .7s linear infinite;
}
@keyframes gs-spin { to { transform: rotate(360deg); } }
/* Business section (Slice B): completion meter + per-block cards. */
body.cc .cc-business { display: flex; flex-direction: column; gap: 16px; }
body.cc .bp-meter { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 14px 16px; }
body.cc .bp-meter-bar { height: 8px; background: rgba(0,0,0,.07); border-radius: 999px; overflow: hidden; }
body.cc .bp-meter-fill { height: 100%; background: var(--brand); border-radius: 999px; transition: width .3s ease; width: 0; }
body.cc .bp-meter-lab { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--ink-2, #374151); }
body.cc .bp-meter-lab .bp-pct { font-weight: 400; color: var(--muted, #9CA3AF); }
body.cc .bp-meter-miss { font-size: 12px; color: var(--muted, #9CA3AF); min-height: 14px; margin-top: 2px; }
body.cc .bp-card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
body.cc .bp-card-h { font-size: 14px; font-weight: 700; color: var(--ink, #111827); }
body.cc .bp-card .goal-form-buttons { position: static; margin: 4px 0 0; padding: 0; border: 0; background: transparent; }
/* Field styling for the Business section (the .goal-form rules are scoped to .goal-form, so the cards need their own). */
body.cc .cc-business .goal-field { display: flex; flex-direction: column; gap: 5px; }
body.cc .cc-business .goal-lab { font-size: 13px; font-weight: 600; color: var(--ink-2, #374151); }
body.cc .cc-business .goal-max { font-size: 11px; font-weight: 400; color: var(--muted, #9CA3AF); }
body.cc .cc-business .goal-hint { font-size: 12px; font-weight: 400; color: var(--muted, #9CA3AF); line-height: 1.35; margin-bottom: 2px; }
body.cc .cc-business input, body.cc .cc-business textarea {
  font: inherit; font-weight: 400; width: 100%; box-sizing: border-box; padding: 9px 11px;
  border: 1px solid rgba(0,0,0,.14); border-radius: 8px; background: #fff; color: var(--ink, #111827);
}
body.cc .cc-business textarea { resize: vertical; min-height: 64px; }
body.cc .cc-business input:focus, body.cc .cc-business textarea:focus { outline: 2px solid rgba(22,163,74,.4); outline-offset: 0; border-color: rgba(22,163,74,.5); }
body.cc .cc-business .goal-count { align-self: flex-end; }

/* ── Conversation surface (revealed on send: dock + Goals "Prepare") ─────────── */
/* Default CC hides .chat-zone; when body.cc-chat is set, swap the dashboard for the
   conversation in the content cell, with the dock staying put at the bottom. */
body.cc.cc-chat .dash-zone { display: none; }
body.cc.cc-chat .chat-zone { display: flex; height: 100%; }
body.cc.cc-chat #dash { display: none; }
/* Back-to-dashboard control in the top bar — only while the conversation is open. */
body.cc .cc-chat-back { display: none; }
body.cc.cc-chat .cc-chat-back {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--rail-bg); border: 1px solid rgba(0,0,0,.06); border-radius: 8px;
  padding: 8px 12px; font-size: 14px; font-weight: 600; color: var(--brand-dk); cursor: pointer; font-family: inherit;
}
body.cc.cc-chat .cc-chat-back:hover { background: var(--brand-tint); }
body.cc.cc-chat .cc-chat-back:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ── Placeholder (Pipeline, Settings) ─────────── */
body.cc .cc-placeholder {
  padding: 48px 32px;
  max-width: 640px;
}
body.cc .cc-placeholder h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink, #111827);
  margin: 0 0 12px;
}
body.cc .cc-placeholder .placeholder-message {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
