/* TradeFlow Crew case study — article-specific styles */
/* Extends article-base.css; do not duplicate base rules here */

/* PULL QUOTE */
.pq {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--ink2);
  font-style: italic;
  line-height: 1.55
}

/* BEFORE / AFTER — overrides base ba-* colors for this article */
.ba-before { background: var(--s2) }
.ba-before .ba-label { color: var(--ink3) }
.ba-after { background: rgba(232,86,42,0.04); border-left: 2px solid rgba(232,86,42,0.18) }
.ba-after .ba-label { color: var(--accent) }
.ba-before .ba-item::before { content: '—'; color: var(--ink3); flex-shrink: 0 }
.ba-after .ba-item::before { content: '✓'; color: var(--accent); flex-shrink: 0 }

/* PIPELINE ORDERED LIST */
.pipeline-ol {
  counter-reset: stage;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0
}
.pipeline-ol li {
  counter-increment: stage;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--ink2)
}
.pipeline-ol li:first-child { border-top: 1px solid var(--border) }
.pipeline-ol li::before {
  content: counter(stage);
  min-width: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.78rem;
  flex-shrink: 0
}
.pipeline-ol li strong { color: var(--ink) }

/* PHASE LIST */
.phase-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0
}
.phase-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--ink2);
  line-height: 1.6
}
.phase-list li:first-child { border-top: 1px solid var(--border) }
.phase-list li strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.93rem
}
.phase-list li.live strong::after {
  content: ' · Live';
  color: var(--accent);
  font-weight: 400
}

/* STABILIZATION NOTE */
.stab-note {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.85rem;
  color: var(--ink3);
  line-height: 1.65
}
.stab-note strong { color: var(--ink2); font-weight: 500 }

/* ZAPCONNECTHUB VENTURE SECTION */
.zch-venture {
  background: var(--navy);
  padding: 3.5rem 2rem
}
.zch-inner {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--rl);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden
}
.zch-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent)
}
.zch-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.6rem
}
.zch-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem
}
.zch-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 620px
}
.zch-pill {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 0.22rem 0.65rem;
  margin-bottom: 1.25rem
}
.zch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r);
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s
}
.zch-link:hover { background: var(--ah) }

/* RESPONSIVE */
@media (max-width: 640px) {
  .zch-inner { padding: 1.5rem }
  .zch-name { font-size: 1.2rem }
}
