﻿/* ============================================================================
   PROPAGENT v12 — Mirrors v10 single-accent design system
   - Single violet accent (no indigo→violet gradient on text/fills)
   - Fraunces serif reserved for editorial moments only
   - Provenance utility for citations
   - Container 1280px, section padding 96px
   ============================================================================ */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;

  --accent-primary:         #A78BFA;
  --accent-primary-strong:  #8B5CF6;
  --accent-deep:            #6366F1;

  --surface-base:    #0A0A0A;
  --surface-raised:  #141414;
  --surface-overlay: #111111;
  --surface-subtle:  #1A1A1A;
  --surface-hover:   rgba(255, 255, 255, 0.05);
  --surface-glass:   rgba(255, 255, 255, 0.02);

  --border-default: rgba(255, 255, 255, 0.10);
  --border-subtle:  rgba(255, 255, 255, 0.05);
  --border-hard:    #1E1E1E;
  --border-accent:  rgba(167, 139, 250, 0.35);

  --text-primary:   #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted:     #6B7280;
  --text-dim:       #4B5563;

  --status-success-fg: #34D399;
  --status-warning-fg: #FBBF24;
  --status-error-fg:   #F87171;
  --status-info-fg:    #60A5FA;

  --radius-md:  6px;
  --radius-lg:  8px;
  --radius-xl:  12px;
  --radius-2xl: 16px;

  --shadow-md:     0 4px 6px -1px rgba(0, 0, 0, 0.40), 0 2px 4px -2px rgba(0, 0, 0, 0.30);
  --shadow-lg:     0 10px 15px -3px rgba(0, 0, 0, 0.50), 0 4px 6px -4px rgba(0, 0, 0, 0.40);
  --shadow-2xl:    0 25px 50px -12px rgba(0, 0, 0, 0.60);
  --shadow-accent: 0 8px 24px -4px rgba(167, 139, 250, 0.30);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-base: 200ms;

  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--surface-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a { color: var(--accent-primary); text-decoration: none; transition: color var(--dur-base) var(--ease-standard); }
a:hover { color: var(--accent-primary-strong); }

::selection { background: rgba(167, 139, 250, 0.30); color: #fff; }

/* ============================================================================
   Layout
   ============================================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============================================================================
   Type utilities (mirror v10)
   ============================================================================ */
.mono-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mono-meta { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim); }
.text-agent-gradient { color: var(--accent-primary); }

/* ============================================================================
   Buttons (mirror v10)
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
  text-decoration: none;
}
.btn:hover { background: var(--surface-hover); color: var(--text-primary); }
.btn-primary {
  background: var(--accent-primary);
  border-color: transparent;
  color: #0A0A0A;
  box-shadow: var(--shadow-accent);
  font-weight: 600;
}
.btn-primary:hover { background: var(--accent-primary-strong); color: #fff; }
.btn-sm { padding: 6px 10px; font-size: 12px; }
.btn-lg { padding: 12px 18px; font-size: 14px; }

/* ============================================================================
   Topbar
   ============================================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.topbar-status { display: flex; align-items: center; gap: 14px; }

.topbar-nav { display: inline-flex; gap: 2px; }
.topbar-nav a {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 6px;
}
.topbar-nav a:hover { color: var(--text-primary); background: var(--surface-hover); }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-weight: 600; letter-spacing: -0.01em; font-size: 15px; }

/* ============================================================================
   Hero — asymmetric split: H1 + CTA on left, Fraunces editorial on right
   ============================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 80px 0 88px;
}
.hero > .container { width: 100%; }

/* Briefing — full-viewport animated overview iframe directly below the hero.
   Background matches the briefing's internal canvas/stage at #0A0A0A so
   there's no visible seam between iframe and parent. The briefing area
   reads as a slightly-lighter slice of the page than the hero's #050505. */
.briefing-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0A0A0A;
  overflow: hidden;
}
.briefing-section iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
}
.hero-left {
  display: flex; flex-direction: column;
  gap: 28px;
  text-align: left;
}
.hero-right {
  position: relative;
  padding: 18px 0 18px 36px;
  border-left: 1px solid var(--border-accent);
  display: flex; flex-direction: column;
  gap: 18px;
}
@media (max-width: 980px) {
  .hero-right { padding: 18px 0 0 0; border-left: none; border-top: 1px solid var(--border-accent); padding-top: 28px; }
}

.hero-essay {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.0vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  text-wrap: balance;
}
.hero-essay em {
  font-style: italic;
  color: var(--accent-primary);
  font-weight: 500;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 6px 10px;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 22px;
}
.hero-eyebrow .live-dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: #34D399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
}
.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0;
}

/* ============================================================================
   Provenance + outcome chips
   ============================================================================ */
.provenance-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.provenance-chip::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--accent-primary);
  flex: none;
}
.provenance-chip.muted::before { background: var(--text-dim); }
.provenance-chip .src { color: var(--text-muted); }


/* ============================================================================
   Hero draft preview — single quiet product moment
   ============================================================================ */
.hero-draft {
  position: relative; z-index: 1;
  align-self: stretch;
  background: var(--surface-overlay);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  display: flex; flex-direction: column;
  min-height: 420px;
}
.hd-bar {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-subtle);
  background: #0A0A0A;
}
.hd-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.hd-meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--text-muted);
}
.hd-body {
  padding: 26px 26px 22px;
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.hd-section-title {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hd-prose {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text-primary);
}
.hd-prose em {
  font-style: italic;
  color: var(--accent-primary);
}
.hd-cite {
  display: inline-block;
  margin-left: 3px;
  padding: 1px 7px;
  vertical-align: 2px;
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  background: rgba(167, 139, 250, 0.06);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--accent-primary);
  white-space: nowrap;
}
.hd-footer {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 6px 12px;
  padding: 10px 22px;
  border-top: 1px solid var(--border-subtle);
  background: #0A0A0A;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
}
.hd-foot-meta { color: var(--text-secondary); }
.hd-foot-aside { color: var(--text-dim); }

/* ============================================================================
   Sections
   ============================================================================ */
.section { position: relative; padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-divider { border-top: 1px solid var(--border-subtle); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--border-default); }
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 16px;
  max-width: 760px;
  text-wrap: balance;
}
.section .lede {
  font-size: 17px; line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px; margin: 0;
}

/* ============================================================================
   Manifesto
   ============================================================================ */
.manifesto {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.008em;
  color: var(--text-primary);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.manifesto em { color: var(--accent-primary); font-style: italic; font-weight: 500; }

/* ============================================================================
   Stakes band (P&L-shaped framing)
   ============================================================================ */
.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
@media (max-width: 980px) { .stakes-grid { grid-template-columns: 1fr; gap: 32px; } }
.stake {
  border-left: 2px solid var(--accent-primary);
  padding: 8px 0 8px 20px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.stake .stake-num {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-primary);
  font-weight: 600;
}
.stake .stake-lbl {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: -2px;
}
.stake p {
  margin: 0;
  font-size: 13.5px; line-height: 1.6;
  color: var(--text-secondary);
}
.stake .stake-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================================
   Editorial pull-quote
   ============================================================================ */
.pull-quote {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.008em;
  color: var(--text-primary);
  text-align: left;
  padding: 24px 32px;
  text-wrap: balance;
}
.pull-quote em {
  font-style: italic;
  color: var(--accent-primary);
  font-weight: 500;
}
.pull-quote .pq-mark {
  position: absolute;
  top: -8px; left: -2px;
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.18;
  pointer-events: none;
}
.pull-quote .pq-attr {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================================
   Wedge
   ============================================================================ */
.wedge-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 18px;
  max-width: 880px;
  text-wrap: balance;
}
.wedge-title em { font-style: italic; color: var(--accent-primary); font-weight: 500; }
/* ============================================================================
   Lifecycle diagram — two-track horizontal, Propagent extends past Submit
   ============================================================================ */
.lifecycle {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--surface-overlay);
  overflow-x: auto;
}
.lc-track {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 14px;
  min-width: 900px;
}
.lc-track-name {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: right;
  color: var(--text-muted);
  padding-top: 0;
}
.lc-track.lc-us .lc-track-name {
  color: var(--accent-primary);
  font-weight: 600;
}
.lc-stages {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.lc-stage {
  flex: none;
  width: 80px;
  min-height: 58px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  position: relative;
}
.lc-stage:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--text-secondary);
  opacity: 0.55;
  z-index: 0;
}
.lc-track.lc-us .lc-stage:not(:last-of-type)::after {
  background: var(--accent-primary);
  opacity: 0.6;
}
.lc-track.lc-us .lc-stage.beyond:not(:last-of-type)::after {
  background: var(--accent-primary);
  opacity: 1;
}
.lc-dot {
  position: relative;
  z-index: 1;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--text-secondary);
  border: 1px solid var(--text-secondary);
}
.lc-track.lc-us .lc-dot {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}
.lc-track.lc-them .lc-stage.missing .lc-dot {
  background: transparent;
  border: 1px dashed var(--text-dim);
}
.lc-track.lc-them .lc-stage.missing .lc-label {
  opacity: 0.45;
  font-style: italic;
}
.lc-track.lc-them .lc-stage.missing:not(:last-of-type)::after {
  background: var(--text-dim);
  opacity: 0.3;
}
.lc-track.lc-them .lc-tag {
  opacity: 0.6;
  font-style: italic;
}
.lc-stage.submit .lc-dot {
  width: 12px; height: 12px;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.10);
}
.lc-track.lc-us .lc-stage.submit .lc-dot {
  background: #fff;
  border-color: #fff;
}
.lc-stage.beyond .lc-dot {
  background: var(--accent-primary);
  border: none;
  width: 12px; height: 12px;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.18), 0 0 16px rgba(167, 139, 250, 0.55);
}
.lc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
.lc-track.lc-us .lc-label { color: var(--text-secondary); }
.lc-stage.submit .lc-label {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9.5px;
}
.lc-stage.beyond .lc-label {
  color: var(--accent-primary);
  font-weight: 600;
}
.lc-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  text-align: center;
  padding: 0 2px;
  margin-top: -2px;
  white-space: normal;
  max-width: 78px;
}
.lc-stage.beyond .lc-tag {
  color: var(--accent-primary);
  opacity: 0.85;
}
.lc-end {
  flex: none;
  align-self: center;
  margin-left: 12px;
  padding-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  font-style: italic;
  border-left: 1px dashed var(--border-default);
}
.lc-arrow {
  flex: none;
  align-self: center;
  margin-left: 12px;
  padding-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-primary);
  border-left: 1px dashed var(--border-accent);
}

.lifecycle-caption {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.lifecycle-caption em {
  font-style: italic;
  color: var(--accent-primary);
}

@media (max-width: 980px) {
  .lc-track { grid-template-columns: 1fr; }
  .lc-track-name { text-align: left; padding-left: 4px; }
}


/* ============================================================================
   Metrics
   ============================================================================ */
.metrics {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 980px) { .metrics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  border-right: 1px solid var(--border-subtle);
  padding: 28px 24px;
}
.metric:last-child { border-right: none; }
@media (max-width: 980px) {
  .metric { border-right: none; border-bottom: 1px solid var(--border-subtle); }
}
.metric .num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.metric .num .accent { color: var(--accent-primary); }
.metric .lbl {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.metric .src-row {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}


/* ============================================================================
   Shifts (key benefits — typographic, not card-grid)
   ============================================================================ */
.shifts {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 760px) { .shifts { grid-template-columns: 1fr; } }
.shift {
  display: flex; gap: 22px;
  align-items: flex-start;
  padding: 30px 26px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.shift:nth-child(2n) { border-right: none; }
.shift:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 760px) {
  .shift { border-right: none; }
  .shift:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-subtle); }
  .shift:last-child { border-bottom: none; }
}
.shift-num {
  flex: none;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--accent-primary);
  font-variant-numeric: tabular-nums;
}
.shift-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.shift-body h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.shift-body p {
  margin: 0;
  font-size: 14px; line-height: 1.55;
  color: var(--text-secondary);
}
.shift-bottom {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================================
   Moment rows (Five Moments — asymmetric alternating orientation)
   ============================================================================ */
.moment-rows {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 28px;
}
.moment-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
}
.moment-row:first-child { border-top: none; padding-top: 0; }
.moment-row.reverse .moment-copy { order: 2; }
.moment-row.reverse .moment-visual { order: 1; }
@media (max-width: 860px) {
  .moment-row { grid-template-columns: 1fr; gap: 24px; }
  .moment-row.reverse .moment-copy,
  .moment-row.reverse .moment-visual { order: initial; }
}
.moment-copy { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.moment-step {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.moment-step .moment-num {
  color: var(--accent-primary);
  font-weight: 600;
}
.moment-step .moment-name {
  color: var(--text-muted);
}
.moment-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
}
.moment-copy p {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--text-secondary);
  max-width: 520px;
}

.moment-visual { display: flex; align-items: stretch; justify-content: center; min-width: 0; }
.mv-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface-overlay);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-lg);
}
.mv-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-primary);
  align-self: flex-start;
}
.mv-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.mv-list li {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  font-size: 12.5px;
}
.mv-list .mv-k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
}
.mv-list .mv-v { color: var(--text-primary); }

.mv-tally { display: flex; flex-direction: column; gap: 8px; }
.mv-tally-row {
  display: grid; grid-template-columns: 16px 1fr auto; gap: 10px;
  align-items: center;
  font-size: 13px;
}
.mv-dot { width: 8px; height: 8px; border-radius: 999px; }
.mv-dot.ok  { background: var(--status-success-fg); }
.mv-dot.med { background: var(--status-warning-fg); }
.mv-dot.bad { background: var(--status-error-fg); }
.mv-dot.off { background: var(--text-dim); }
.mv-tally-k { color: var(--text-primary); }
.mv-tally-v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-primary);
}

.mv-axes { display: flex; flex-direction: column; gap: 8px; }
.mv-axis { display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: center; }
.mv-axis .mv-axis-k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
}
.mv-meter {
  display: block;
  position: relative;
  height: 6px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.mv-meter i {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--accent-primary);
  border-radius: 2px;
}

.mv-routes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mv-routes li {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 12px;
  align-items: baseline;
  font-size: 13px;
  padding: 8px 10px;
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.mv-route-who {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-primary);
  letter-spacing: 0.04em;
}
.mv-route-q { color: var(--text-primary); }

.mv-draft {
  font-size: 13.5px; line-height: 1.55; color: var(--text-primary);
}
.mv-draft em { font-style: italic; color: var(--accent-primary); }

/* Bid Intake — extracted-requirement chips */
.mv-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-default);
}
.mv-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(167, 139, 250, 0.10);
  color: var(--accent-primary);
  border: 1px solid var(--border-accent);
}

/* Gap Analysis — exposed-requirement excerpt */
.mv-excerpt {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 2px solid var(--status-error-fg);
  background: rgba(248, 113, 113, 0.06);
  border-radius: 0 4px 4px 0;
}
.mv-excerpt-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--status-error-fg);
  margin-bottom: 4px;
  font-weight: 600;
}
.mv-excerpt p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
}

/* Go / No-Go — recommendation stamp */
.mv-reco {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-default);
}
.mv-reco-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(52, 211, 153, 0.15);
  color: var(--status-success-fg);
  border: 1px solid rgba(52, 211, 153, 0.35);
  flex: none;
}
.mv-reco-body {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Answer Coordination — per-route ETA */
.mv-route-eta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
}

/* Response Maturity — provenance receipt strip */
.mv-receipts {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-default);
}
.mv-receipt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface-base);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}

/* ============================================================================
   Confidence Routing board
   ============================================================================ */
.routing-board {
  margin-top: 48px;
  background: var(--surface-overlay);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.routing-bar-head,
.routing-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(200px, 1.6fr) minmax(140px, 0.9fr) minmax(120px, 0.7fr);
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-subtle);
}
.routing-row:last-child { border-bottom: 0; }
.routing-bar-head {
  background: #0A0A0A;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.10em;
  color: var(--text-muted); text-transform: uppercase;
}
.r-section {
  font-size: 14px; color: var(--text-primary); font-weight: 500;
}
.r-meter {
  position: relative; display: flex; align-items: center; gap: 12px;
}
.r-meter {
  --track: rgba(255, 255, 255, 0.06);
}
.r-meter i {
  position: relative;
  display: block;
  flex: 1 1 auto;
  height: 8px;
  border-radius: 2px;
  background: var(--track);
  overflow: hidden;
  min-width: 0;
}
.r-meter i::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: var(--w);
  border-radius: 2px;
  background: var(--meter-fill, currentColor);
}
.r-meter em {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.04em; color: var(--text-secondary);
  font-style: normal; margin-left: auto;
  min-width: 36px; text-align: right;
}
.r-high .r-meter i::after { background: var(--status-success-fg); }
.r-med  .r-meter i::after { background: var(--status-warning-fg); }
.r-low  .r-meter i::after { background: var(--status-error-fg); }

.r-stamp {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  text-align: center;
}
.r-high .r-stamp { color: var(--status-success-fg); background: rgba(52, 211, 153, 0.08); }
.r-med  .r-stamp { color: var(--status-warning-fg); background: rgba(251, 191, 36, 0.08); }
.r-low  .r-stamp { color: var(--status-error-fg);   background: rgba(248, 113, 113, 0.08); }

.r-owner {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--text-primary);
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .routing-bar-head { display: none; }
  .routing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .r-owner { text-align: left; }
}

/* ============================================================================
   Expert intake card — the SME's view of a routed question
   ============================================================================ */
.expert-intake { margin: 24px 0 0; }
.expert-intake-cap {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 10px;
}
.expert-intake-tag {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.expert-intake-meta {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--text-dim);
}
.expert-intake-card {
  background: var(--surface-overlay);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-accent);
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.ei-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  align-items: baseline;
}
.ei-row .ei-k {
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10.5px;
}
.ei-row .ei-v { color: var(--text-primary); }
.ei-q {
  background: rgba(167, 139, 250, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.ei-q-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-primary);
}
.ei-q p {
  margin: 0;
  font-size: 14px; line-height: 1.5;
  color: var(--text-primary);
}
.ei-q p em { font-style: italic; color: var(--accent-primary); }
.ei-context {
  display: flex; flex-direction: column; gap: 6px;
}
.ei-context-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ei-context ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.ei-context li {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.4;
}
.ei-context li em { font-style: italic; color: var(--text-primary); }
.ei-context .ei-ok { color: var(--status-success-fg); font-size: 11px; }
.ei-context .ei-gap {
  color: var(--accent-primary);
  font-size: 11px;
  font-weight: 600;
}
.ei-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}
.ei-btn {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  padding: 7px 12px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  background: var(--surface-base);
}
.ei-btn.primary {
  background: var(--accent-primary);
  border-color: transparent;
  color: #0A0A0A;
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}
@media (max-width: 640px) {
  .ei-row { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================================
   Trust grid + receipt (live demo of source-grounded draft)
   ============================================================================ */
.trust-receipt {
  margin: 36px 0 0;
  padding: 22px 26px 20px;
  background: var(--surface-overlay);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.trust-receipt-cap {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.trust-receipt-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 600;
}
.trust-receipt-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-style: italic;
}
.trust-receipt-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
}
.trust-receipt-body em {
  font-style: italic;
  color: var(--accent-primary);
}
.trust-receipt-body strong {
  color: #fff;
  font-weight: 600;
}

/* Inline source-citation chip (reused in workflow + trust + routing) */
.pm-cite-chip {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  padding: 1px 7px;
  margin: 0 1px;
  border-radius: 4px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--accent-primary);
  border: 1px solid var(--border-accent);
  vertical-align: 1px;
  cursor: help;
  transition: background var(--dur-base, 180ms) ease;
  white-space: nowrap;
}
.pm-cite-chip:hover {
  background: rgba(167, 139, 250, 0.22);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 1180px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .trust-grid { grid-template-columns: 1fr; } }

.trust-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.trust-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid var(--border-accent);
  color: var(--accent-primary);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.trust-card h3 {
  margin: 0;
  font-size: 16px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.trust-card p {
  margin: 0;
  font-size: 13px; line-height: 1.55;
  color: var(--text-secondary);
}

/* ============================================================================
   Section alternation — black ↔ charcoal
   ============================================================================ */
.section-charcoal {
  background: #131313;
}
.section-charcoal.section-divider {
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* ============================================================================
   Customer proof band
   ============================================================================ */
.customer-band {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(167, 139, 250, 0.04), transparent 70%),
    var(--surface-base);
  padding: 22px 0;
}
.customer-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  justify-content: center;
}
.customer-band-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.customer-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.customer-list li {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  position: relative;
}
.customer-list li + li::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  width: 3px; height: 3px;
  border-radius: 999px;
  background: var(--text-dim);
  transform: translateY(-50%);
}

/* ============================================================================
   Before / After — pursuit-week vignette grid (Today vs With Propagent)
   ============================================================================ */
.va-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

/* Column headers — small caps, one-time orient */
.va-headers {
  display: grid;
  grid-template-columns: 150px 1fr 40px 1fr;
  gap: 18px;
  padding: 0 6px 6px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 4px;
}
.va-headers-spacer { display: block; }
.va-headers-then,
.va-headers-now {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.va-headers-then { color: var(--text-muted); }
.va-headers-now  { color: var(--accent-primary); }
.va-headers-arrow { display: block; }

/* Row: moment label · then card · arrow · now card */
.va-row {
  display: grid;
  grid-template-columns: 150px 1fr 40px 1fr;
  gap: 18px;
  align-items: stretch;
}

.va-moment {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  padding-left: 6px;
  border-left: 2px solid var(--accent-primary);
}
.va-moment-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  color: var(--accent-primary);
  font-weight: 600;
}
.va-moment-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

.va-card {
  background: var(--surface-overlay);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg, 10px);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.va-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.va-then {
  background: rgba(248, 113, 113, 0.04);
  border-color: rgba(248, 113, 113, 0.18);
}
.va-then p { color: var(--text-secondary); }

.va-now {
  background:
    linear-gradient(180deg, rgba(167, 139, 250, 0.08), transparent 80%),
    var(--surface-overlay);
  border-color: var(--border-accent);
}
.va-now p { color: var(--text-primary); }

.va-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  line-height: 1.4;
  flex-shrink: 0;
}
.va-then .va-chip {
  background: rgba(248, 113, 113, 0.10);
  color: rgba(248, 113, 113, 0.92);
}
.va-now .va-chip {
  background: rgba(167, 139, 250, 0.14);
  color: var(--accent-primary);
}

.va-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-primary);
  font-weight: 600;
}

/* Bottom summary chip */
.va-summary {
  margin-top: 32px;
  padding: 16px 22px;
  background: var(--surface-overlay);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.va-summary-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 600;
}
.va-summary-val {
  font-size: 14.5px;
  color: var(--text-primary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .va-headers { display: none; }
  .va-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-default);
  }
  .va-row:last-child { border-bottom: none; }
  .va-moment {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    padding-left: 8px;
  }
  .va-arrow {
    padding: 4px 0;
    font-size: 18px;
    transform: rotate(90deg);
  }
}

/* ============================================================================
   Persona switcher — CSS-only tabs via radio inputs
   ============================================================================ */
.persona-switcher .ps-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.persona-switcher .ps-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 36px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0;
}
@media (max-width: 760px) {
  .persona-switcher .ps-tabs { grid-template-columns: 1fr 1fr; }
}
.persona-switcher .ps-tab {
  cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard);
}
.persona-switcher .ps-tab:hover {
  background: var(--surface-hover);
}
.persona-switcher .ps-tab-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--text-dim);
}
.persona-switcher .ps-tab-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}

/* Active tab state, driven by checked radio */
#ps-principal:checked ~ .ps-tabs label[for="ps-principal"],
#ps-bd:checked        ~ .ps-tabs label[for="ps-bd"],
#ps-pm:checked        ~ .ps-tabs label[for="ps-pm"],
#ps-sme:checked       ~ .ps-tabs label[for="ps-sme"] {
  background: var(--surface-overlay);
  border-color: var(--border-subtle);
  border-bottom-color: var(--accent-primary);
}
#ps-principal:checked ~ .ps-tabs label[for="ps-principal"] .ps-tab-num,
#ps-bd:checked        ~ .ps-tabs label[for="ps-bd"]        .ps-tab-num,
#ps-pm:checked        ~ .ps-tabs label[for="ps-pm"]        .ps-tab-num,
#ps-sme:checked       ~ .ps-tabs label[for="ps-sme"]       .ps-tab-num {
  color: var(--accent-primary);
}
#ps-principal:checked ~ .ps-tabs label[for="ps-principal"] .ps-tab-name,
#ps-bd:checked        ~ .ps-tabs label[for="ps-bd"]        .ps-tab-name,
#ps-pm:checked        ~ .ps-tabs label[for="ps-pm"]        .ps-tab-name,
#ps-sme:checked       ~ .ps-tabs label[for="ps-sme"]       .ps-tab-name {
  color: var(--text-primary);
}

.persona-switcher .ps-panels {
  position: relative;
  background: var(--surface-overlay);
  border: 1px solid var(--border-subtle);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 28px 28px 32px;
}
.persona-switcher .ps-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 860px) {
  .persona-switcher .ps-panel { grid-template-columns: 1fr; }
}

#ps-principal:checked ~ .ps-panels [data-tab="ps-principal"],
#ps-bd:checked        ~ .ps-panels [data-tab="ps-bd"],
#ps-pm:checked        ~ .ps-panels [data-tab="ps-pm"],
#ps-sme:checked       ~ .ps-panels [data-tab="ps-sme"] {
  display: grid;
}

.persona-switcher .ps-copy {
  display: flex; flex-direction: column; gap: 12px;
}
.persona-switcher .ps-side-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.persona-switcher .ps-side-tag.accent {
  color: var(--accent-primary);
  border-bottom-color: var(--border-accent);
}
.persona-switcher .ps-visual {
  display: flex; flex-direction: column; gap: 12px;
}
.persona-switcher .ps-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}
.persona-switcher .ps-copy p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.persona-switcher .ps-pain {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.persona-switcher .ps-pain li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-secondary);
}
.persona-switcher .ps-pain li::before {
  content: "✕";
  position: absolute; left: 0;
  color: var(--status-error-fg);
  font-size: 11px;
  top: 2px;
}

.persona-switcher .ps-gain {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.persona-switcher .ps-gain li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-primary);
}
.persona-switcher .ps-gain li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent-primary);
  font-size: 11px;
  font-weight: 700;
  top: 2px;
}

.persona-switcher .ps-visual {
  display: flex;
}
.persona-switcher .ps-visual .mv-card {
  width: 100%;
  max-width: 100%;
}

/* ============================================================================
   Benchmarks band — peer-category outcome chips (Vercel move)
   ============================================================================ */
.benchmarks {
  padding: 96px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.bench-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 22px;
}
.bench-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}
@media (max-width: 980px) { .bench-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bench-grid { grid-template-columns: 1fr; } }
.bench {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 14px;
  border-right: 1px solid var(--border-subtle);
  text-align: left;
}
.bench:last-child { border-right: none; }
@media (max-width: 980px) {
  .bench { border-right: none; padding: 6px 14px; }
  .bench:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
}
@media (max-width: 560px) {
  .bench, .bench:nth-child(odd) { border-right: none; }
}
.bench-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--accent-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.bench-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-primary);
  margin-left: 2px;
  letter-spacing: 0;
}
.bench-lbl {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-primary);
  margin-top: 2px;
}
.bench-src {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-top: 4px;
}
.bench-caveat {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.bench-caveat em {
  font-style: italic;
  color: var(--text-primary);
}

/* ============================================================================
   Operational memory tape
   ============================================================================ */
.memory-tape {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .memory-tape { grid-template-columns: 1fr; }
}
.memory-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.memory-card.now {
  border-color: var(--border-accent);
  background:
    linear-gradient(180deg, rgba(167, 139, 250, 0.06), transparent 70%),
    var(--surface-raised);
  box-shadow: var(--shadow-accent);
}
.memory-pill {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.10em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--surface-base);
}
.memory-card.now .memory-pill {
  color: var(--accent-primary);
  border-color: var(--border-accent);
}
.memory-card strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
}
.memory-card p {
  margin: 0;
  font-size: 13.5px; line-height: 1.5;
  color: var(--text-secondary);
}
.memory-arrow {
  display: grid; place-items: center;
  color: var(--accent-primary);
  font-family: var(--font-mono);
  font-size: 22px;
  align-self: center;
}
@media (max-width: 980px) { .memory-arrow { transform: rotate(90deg); } }

/* ============================================================================
   Pricing — 4-tier extension of v10's 3-tier
   ============================================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.pricing-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1180px) {
  .pricing-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing, .pricing-4 { grid-template-columns: 1fr; }
}

.price-card {
  position: relative;
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.price-card.featured {
  border-color: var(--border-accent);
  background:
    linear-gradient(180deg, rgba(167, 139, 250, 0.04), transparent 70%),
    var(--surface-raised);
  box-shadow: var(--shadow-accent);
}
.featured-flag {
  position: absolute;
  top: -10px; left: 22px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-primary);
  color: #0A0A0A;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.price-card .tier-name {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-secondary);
}
.price-card.featured .tier-name { color: var(--accent-primary); }
.price-card .price {
  font-family: var(--font-sans);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.02em; color: #fff;
  line-height: 1;
}
.price-card .price .per {
  font-size: 13px; color: var(--text-muted);
  font-weight: 400; margin-left: 4px;
}
.price-card .desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.5; min-height: 38px;
}
.price-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-card ul li {
  font-size: 13px; color: var(--text-primary);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.price-card ul li::first-letter { color: var(--accent-primary); font-weight: 600; }

/* ============================================================================
   Contact
   ============================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-copy h2 {
  margin-bottom: 14px;
}

.mono-label-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.mono-label-list li {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.mono-label-list li::before {
  content: "";
  width: 16px; height: 1px;
  background: var(--accent-primary);
  flex: none;
}

.contact-form {
  display: grid; gap: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.contact-form label { display: grid; gap: 6px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-base);
  color: var(--text-primary);
  font: inherit;
  font-size: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  margin-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 980px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

.footer h5 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px; font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul li, .footer a { color: var(--text-secondary); font-size: 13px; }
.footer a:hover { color: var(--text-primary); }
.footer-tag {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.5; max-width: 360px;
  margin-top: 12px;
}
.footer-bottom {
  margin-top: 36px; padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--text-dim);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .pulse, .live-dot { animation: none !important; }
}

/* ============================================================================
   v17 additions — storytelling-audit fixes
   - Hero subhead + thesis (Webflow-style trust load)
   - Inline stake stat strip in Before/After lede
   - Testimonial slab (advisors + customers)
   - Lifecycle memory band + loop arrow
   ============================================================================ */

/* Hero subhead replaces the v15 hero-essay treatment with a tighter trust
   load. Thesis line absorbs the v15 Manifesto Fraunces sentence. */
.hero-subhead {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.0vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  text-wrap: balance;
}
.hero-subhead .live-with {
  color: var(--accent-primary);
  font-style: italic;
  font-weight: 500;
}
.hero-thesis {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--text-secondary);
  max-width: 460px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-subtle);
}
.hero-thesis em {
  color: var(--accent-primary);
  font-style: italic;
  font-weight: 500;
}

/* Stake stat strip — single line, monospace, sits inside the Before/After
   lede area. Folds the v15 standalone Stakes section into context. */
.bf-stake-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  max-width: 760px;
}
.bf-stake-strip > span {
  display: inline-flex;
  align-items: center;
}
.bf-stake-strip > span:not(:last-child)::after {
  content: "·";
  margin: 0 14px;
  color: var(--text-dim);
}
.bf-stake-strip em {
  font-style: normal;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Lifecycle memory band — sits underneath the Propagent track and conveys
   that capture/learning happens across the entire lifecycle, not after
   Submit. The loop arrow replaces the v15 "keeps going →" arrow. */
.lc-memory-wrap {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: stretch;
  min-width: 900px;
  margin-top: -4px;
}
.lc-memory-spacer {
  /* aligns the band with the stage column, not the track-name column */
}
.lc-memory-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.14), rgba(167, 139, 250, 0.04) 80%);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
}
.lc-memory-band-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 600;
  white-space: nowrap;
}
.lc-memory-band-label::before {
  content: "↓ ";
  letter-spacing: 0;
  margin-right: 2px;
}
.lc-memory-band-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  white-space: nowrap;
}
.lc-loop-arrow {
  flex: none;
  align-self: center;
  margin-left: 12px;
  padding-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-primary);
  border-left: 1px dashed var(--border-accent);
}
.lc-loop-arrow::before {
  content: "↻ ";
  margin-right: 2px;
}

@media (max-width: 980px) {
  .lc-memory-wrap { grid-template-columns: 1fr; }
}

/* ============================================================================
   ACCENT-DARK SYSTEM — Linear / Vercel direction
   Page stays committed to dark. Variation comes from:
     * Accent-purple gradient section dividers (replaces grey 1px borders)
     * Radial accent glow modifiers (.section--glow-tl/-tr/-bl/-br)
     * One deep-purple "feature wash" for the spine section (.section--feature)
   No light sections, no parallel light-theme component overrides.
   ============================================================================ */

/* Override the plain grey border-top divider with a gradient accent line */
.section-divider {
  border-top: 0;
  position: relative;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(167, 139, 250, 0.35) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Radial accent-glow corner washes — soft, low-opacity, behind the content */
.section--glow-tl,
.section--glow-tr,
.section--glow-bl,
.section--glow-br {
  position: relative;
  overflow: hidden;
}
.section--glow-tl::after,
.section--glow-tr::after,
.section--glow-bl::after,
.section--glow-br::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle at center,
    rgba(167, 139, 250, 0.16),
    rgba(167, 139, 250, 0.06) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.section--glow-tl::after { top: -280px; left: -280px; }
.section--glow-tr::after { top: -280px; right: -280px; }
.section--glow-bl::after { bottom: -280px; left: -280px; }
.section--glow-br::after { bottom: -280px; right: -280px; }

/* keep content above the glow */
.section--glow-tl > *,
.section--glow-tr > *,
.section--glow-bl > *,
.section--glow-br > * {
  position: relative;
  z-index: 1;
}

/* Feature wash — for the spine section that anchors the page. Stays dark
   but with a deep-purple-tinted radial wash at top + accent bloom at bottom,
   so the section visually announces itself as the heart of the story. */
.section--feature {
  background:
    radial-gradient(ellipse 1200px 700px at 50% 0%, rgba(167, 139, 250, 0.12), transparent 60%),
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(139, 92, 246, 0.07), transparent 70%),
    #0E0A1F;
}
.section--feature.section-divider::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(167, 139, 250, 0.55) 50%,
    transparent 100%
  );
}

/* Mobile: shrink the glow radius so it doesn't dominate narrow viewports */
@media (max-width: 720px) {
  .section--glow-tl::after,
  .section--glow-tr::after,
  .section--glow-bl::after,
  .section--glow-br::after {
    width: 420px;
    height: 420px;
  }
  .section--glow-tl::after { top: -160px; left: -160px; }
  .section--glow-tr::after { top: -160px; right: -160px; }
  .section--glow-bl::after { bottom: -160px; left: -160px; }
  .section--glow-br::after { bottom: -160px; right: -160px; }
}
/* ============================================================================
   FROM RFP TO RESPONSE — three-moments card layout
   (replaces the v17 va-grid before/after vignette in #what-changes)
   ============================================================================ */
.bp-wrap { max-width: 1180px; margin: 0 auto; }
.bp-head { margin-bottom: 40px; max-width: 760px; }
.bp-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; letter-spacing: -0.01em;
  margin: 14px 0 14px; line-height: 1.15;
}
.bp-head p {
  color: var(--text-secondary);
  font-size: 16px; line-height: 1.55; margin: 0;
}
.bp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.bp-quote-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.bp-quote-body { padding: 28px 26px 24px; }
.bp-symptom-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-primary);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(167, 139, 250, 0.10);
  border: 1px solid var(--border-accent);
  margin-bottom: 18px; font-weight: 500;
}
.bp-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 19px; line-height: 1.5;
  color: var(--text-primary); margin: 0;
  text-wrap: balance;
}
.bp-attr {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 26px;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-overlay);
}
.bp-attr-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em; flex-shrink: 0;
  font-weight: 500;
}
.bp-attr-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bp-attr-name {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--status-error-fg);
  letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 500;
}
.bp-counter {
  padding: 18px 26px 22px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.10), rgba(167, 139, 250, 0.04));
  border-top: 1px solid var(--border-accent);
  display: flex; gap: 12px; align-items: baseline;
}
.bp-counter-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-primary);
  flex-shrink: 0; padding-top: 1px;
  font-weight: 500;
}
.bp-counter-text {
  font-size: 13.5px; line-height: 1.55;
  color: var(--text-primary);
}
.bp-counter-text em {
  color: var(--accent-primary);
  font-style: italic; font-weight: 500;
}

/* Light-theme overrides for the cream-background context */
.section--cream .bp-quote-card {
  background: rgba(255, 250, 235, 0.85);
  border-color: var(--border-on-cream-default);
}
.section--cream .bp-quote { color: var(--text-on-cream); }
.section--cream .bp-symptom-tag {
  background: rgba(109, 78, 209, 0.10);
  border-color: rgba(109, 78, 209, 0.35);
  color: var(--accent-on-light);
}
.section--cream .bp-attr {
  background: rgba(255, 250, 235, 0.55);
  border-top-color: var(--border-on-cream-default);
}
.section--cream .bp-attr-avatar {
  background: rgba(255, 250, 235, 0.95);
  border-color: var(--border-on-cream-default);
  color: var(--text-on-cream-muted);
}
.section--cream .bp-attr-name { color: #7C2020; }
.section--cream .bp-counter {
  background: linear-gradient(180deg, rgba(109, 78, 209, 0.10), rgba(109, 78, 209, 0.03));
  border-top-color: rgba(109, 78, 209, 0.35);
}
.section--cream .bp-counter-tag { color: var(--accent-on-light); }
.section--cream .bp-counter-text { color: var(--text-on-cream); }
.section--cream .bp-counter-text em { color: var(--accent-on-light); }

/* ============================================================================
   VS RESPONSE TOOLS — pursuit spine (replaces the v17 #wedge lifecycle diagram)
   Dark / charcoal context only — no light-theme override needed
   ============================================================================ */
.ps-wrap { max-width: 1200px; margin: 0 auto; }
.ps-head { text-align: center; margin-bottom: 28px; max-width: 800px; margin-left: auto; margin-right: auto; }
.ps-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; letter-spacing: -0.01em;
  margin: 14px 0 14px; line-height: 1.15;
}
.ps-head p {
  color: var(--text-secondary);
  font-size: 16px; line-height: 1.55; margin: 0;
}

/* Legend */
.ps-legend {
  display: flex; gap: 28px;
  justify-content: center; align-items: center;
  margin-bottom: 28px; padding: 12px 22px;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  width: max-content; margin-left: auto; margin-right: auto;
}
.ps-legend-item { display: flex; gap: 8px; align-items: center; }
.ps-legend-label { letter-spacing: 0.06em; text-transform: uppercase; }
.ps-legend .ps-mark { width: 11px; height: 11px; }

/* 5 phase columns */
.ps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
@media (max-width: 980px) { .ps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ps-grid { grid-template-columns: 1fr; } }
.ps-col {
  background: var(--surface-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 22px 18px 20px;
  display: flex; flex-direction: column;
}
.ps-col-name {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.10em; font-weight: 600;
  color: #fff; text-transform: uppercase;
  margin-bottom: 4px;
}
.ps-col-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 12px; color: var(--accent-primary);
  margin-bottom: 18px; line-height: 1.3;
}

/* Two-bubble activity rows */
.ps-act {
  padding: 12px 0; border-top: 1px solid var(--border-subtle);
  font-size: 13px; line-height: 1.5;
  color: var(--text-primary);
  display: flex; gap: 10px; align-items: flex-start;
}
.ps-act-marks {
  display: flex; gap: 4px; flex-shrink: 0;
  padding-top: 4px;
}
.ps-mark {
  width: 10px; height: 10px; border-radius: 999px;
  display: inline-block; flex-shrink: 0;
}
.ps-mark.us {
  background: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}
.ps-mark.them.empty {
  background: transparent;
  border: 1px dashed rgba(248, 113, 113, 0.55);
}
.ps-mark.them.full {
  background: var(--status-error-fg);
  border: 1px solid var(--status-error-fg);
}
.ps-mark.them.partial {
  background: linear-gradient(90deg, var(--status-error-fg) 50%, transparent 50%);
  border: 1px solid var(--status-error-fg);
}
.ps-act-text { flex: 1; }
.ps-act-text b { color: var(--accent-primary); font-weight: 500; }

/* Pursuit memory box */
.ps-memory {
  margin-top: 18px;
  padding: 24px 26px 22px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.12), rgba(167, 139, 250, 0.04));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}
.ps-memory-head {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.ps-memory-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-primary);
  padding: 4px 12px;
  background: rgba(167, 139, 250, 0.16);
  border: 1px solid var(--border-accent);
  border-radius: 999px; font-weight: 600;
}
.ps-memory-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 15px; color: var(--text-primary);
  line-height: 1.5;
}
.ps-memory-sub b {
  font-style: normal; font-weight: 500;
  color: var(--accent-primary);
}
.ps-memory-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
@media (max-width: 980px) { .ps-memory-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ps-memory-grid { grid-template-columns: 1fr; } }
.ps-memory-chip {
  background: var(--surface-raised);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.ps-memory-chip-from {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
}
.ps-memory-chip-val {
  font-size: 13.5px; color: #fff; font-weight: 500; line-height: 1.3;
}
.ps-memory-foot {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--border-accent);
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--text-primary);
}
.ps-memory-foot em {
  font-style: italic; color: var(--accent-primary); font-weight: 500;
}
.ps-memory-foot b {
  font-style: normal; font-weight: 500;
  color: var(--accent-primary);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}

/* ============================================================================
   CONTACT — Calendly inline embed
   ============================================================================ */
.contact-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calendly-inline-widget {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--surface-overlay);
  overflow: hidden;
  min-height: 700px;
}
.contact-fallback {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}
.contact-fallback a { color: var(--accent-primary); }
.contact-fallback a:hover { color: var(--accent-primary-strong); }

