/* ============================================================
   Workflow OS — Product page v2 (/workflowos/)
   ------------------------------------------------------------
   Link AFTER styles.css + theme.css + home-redesign.css + home-v2.css.
   Token-only (Phase-3 --wos-* / :root). Adds the product-page-only
   components the buyer-path homepage system does not already carry:
   a lede band, the "what it is not" ledger, the capture ledger,
   common-deployment cards, trust guardrails, and the cockpit framing
   head. Default LIGHT; dark via the existing explicit toggle only.
   Motion is optional and never hides content.
   ============================================================ */

/* ── Lede band under the hero (deeper framing than the homepage) ── */
.wp-lede { padding: clamp(40px,5vw,68px) 0; border-bottom: 1px solid var(--wos-border); }
.wp-lede__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px,5vw,72px); align-items: start;
}
.wp-lede__h {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(22px,2.4vw,30px); line-height: 1.18;
  letter-spacing: -0.015em; color: var(--wos-text-primary); margin: 0; text-wrap: balance;
}
.wp-lede__h::before { display: none; }
.wp-lede__body p {
  font-size: clamp(15px,1.3vw,17px); line-height: 1.62;
  color: var(--wos-text-secondary); margin: 0 0 var(--sp-md); max-width: 60ch;
}
.wp-lede__body p:last-child { margin-bottom: 0; }
.wp-lede__body strong { color: var(--wos-text-primary); font-weight: 600; }
@media (max-width: 820px) { .wp-lede__grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }

/* ── "What Workflow OS is not" — negative ledger ── */
.not-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-2xl);
  border-top: 1px solid var(--wos-border);
}
.not-item {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--wos-border); align-items: start;
}
.not-x {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wos-accent-subtle); color: var(--wos-text-tertiary);
  border: 1px solid var(--wos-border);
}
.not-x svg { width: 12px; height: 12px; }
.not-item b {
  display: block; font-family: 'Geist', sans-serif; font-weight: 500; font-size: 15.5px;
  letter-spacing: -0.006em; color: var(--wos-text-primary); margin-bottom: 3px;
}
.not-item span { display: block; font-size: 13.5px; line-height: 1.5; color: var(--wos-text-secondary); }
.not-posture {
  margin: var(--sp-xl) 0 0; padding: 16px 20px;
  background: var(--wos-accent-subtle); border: 1px solid var(--wos-border);
  border-radius: var(--r-md); font-size: 14.5px; line-height: 1.55; color: var(--wos-text-primary);
  max-width: none;
}
.not-posture strong { font-weight: 600; }
@media (max-width: 720px) { .not-grid { grid-template-columns: 1fr; } }

/* ── Capture ledger (what the channels become) ── */
.cap-led {
  border: 1px solid var(--wos-border); border-radius: var(--r-lg);
  overflow: hidden; background: var(--wos-surface);
}
.cap-led__row {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(16px,3vw,40px);
  align-items: center; padding: 18px clamp(18px,2.5vw,28px);
  border-bottom: 1px solid var(--wos-border);
}
.cap-led__row:last-child { border-bottom: none; }
.cap-led__chan { display: flex; align-items: center; gap: 12px; }
.cap-led__ico {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wos-canvas); border: 1px solid var(--wos-border); color: var(--wos-accent);
}
.cap-led__ico svg { width: 17px; height: 17px; }
.cap-led__name {
  font-family: 'Geist', sans-serif; font-weight: 500; font-size: 15px;
  letter-spacing: -0.006em; color: var(--wos-text-primary);
}
.cap-led__sub { display: block; font-size: 11.5px; color: var(--wos-text-tertiary); margin-top: 2px; letter-spacing: 0.01em; }
.cap-led__what { font-size: 14.5px; line-height: 1.55; color: var(--wos-text-secondary); }
.cap-led__what em { font-style: normal; color: var(--wos-text-primary); font-weight: 500; }
@media (max-width: 680px) {
  .cap-led__row { grid-template-columns: 1fr; gap: 8px; padding: 16px 18px; }
}

/* ── Common starting deployments (2-up) ── */
.dep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.dep-card {
  position: relative; padding: var(--sp-lg) var(--sp-lg) calc(var(--sp-lg) + 2px);
  background: var(--wos-surface); border: 1px solid var(--wos-border); border-radius: var(--r-md);
  transition: box-shadow 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}
.dep-card:hover { border-color: var(--wos-border-strong); box-shadow: var(--wos-shadow-md); }
.dep-card__tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--wos-text-tertiary); margin: 0 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.dep-card__tag::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--wos-accent); }
.dep-card strong {
  display: block; font-family: 'Geist', sans-serif; font-weight: 500; font-size: 17px;
  letter-spacing: -0.008em; color: var(--wos-text-primary); margin-bottom: 7px;
}
.dep-card span { display: block; font-size: 14px; line-height: 1.55; color: var(--wos-text-secondary); }
@media (max-width: 720px) { .dep-grid { grid-template-columns: 1fr; } }

/* ── Trust / compliance guardrails ── */
.guard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.guard-card {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: var(--sp-lg); background: var(--wos-surface);
  border: 1px solid var(--wos-border); border-radius: var(--r-md);
}
.guard-ico {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wos-accent-subtle); border: 1px solid var(--wos-border); color: var(--wos-accent);
}
.guard-ico svg { width: 16px; height: 16px; }
.guard-card b {
  display: block; font-family: 'Geist', sans-serif; font-weight: 500; font-size: 15.5px;
  letter-spacing: -0.006em; color: var(--wos-text-primary); margin-bottom: 4px;
}
.guard-card span { display: block; font-size: 13.5px; line-height: 1.55; color: var(--wos-text-secondary); }
.guard-note {
  margin: var(--sp-lg) 0 0; padding: 14px 18px; border-left: 2px solid var(--wos-border-strong);
  font-size: 13.5px; line-height: 1.55; color: var(--wos-text-tertiary); max-width: 76ch;
}
@media (max-width: 720px) { .guard-grid { grid-template-columns: 1fr; } }

/* ── Cockpit framing head (works inside the .band-dark cockpit) ── */
.wp-cockpit { padding: clamp(52px,6.5vw,88px) 0; }
.wp-cockpit .rd-cockpit-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-xl); flex-wrap: wrap; margin: 0 0 var(--sp-2xl);
}
.wp-cockpit .rd-ck-text { max-width: 640px; }
.wp-cockpit .rd-ck-text .hp-eyebrow { color: var(--wos-text-tertiary); }
.wp-cockpit .rd-ck-text h2 {
  font-family: 'Geist', sans-serif; font-weight: 500;
  font-size: clamp(26px,3.4vw,40px); line-height: 1.12; letter-spacing: -0.018em;
  color: var(--wos-text-primary); margin: 0 0 var(--sp-md);
}
.wp-cockpit .rd-ck-text h2::before { display: none; }
.wp-cockpit .rd-ck-text .lead { font-size: 16px; line-height: 1.55; color: var(--wos-text-secondary); margin: 0; max-width: 56ch; }
.wp-cockpit .cockpit-scroll {
  overflow-x: auto; max-width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.wp-cockpit-foot {
  margin: var(--sp-lg) 0 0; font-size: 12.5px; color: var(--wos-text-tertiary);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.wp-cockpit-foot .mono { font-family: 'JetBrains Mono', monospace; }
