:root {
  --bg-primary: #000000;
  --bg-card: #0A0A0A;
  --bg-card-alt: #080808;
  --border: #262626;
  --text-primary: #FAFAFA;
  --text-secondary: #A3A3A3;
  --text-muted: #737373;
  --accent: #FAFAFA;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #000000; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.back-link {
  position: fixed; top: 20px; left: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 100; color: var(--text-muted); text-decoration: none;
  transition: color 150ms;
}
.back-link:hover { color: var(--text-primary); }
@media print { .back-link { display: none; } }

.cover {
  min-height: 100vh; display: flex; flex-direction: column;
  padding: 80px 0 60px; page-break-after: always;
}
.cover .logo { width: 80px; height: 80px; flex-shrink: 0; }
.cover .logo svg { width: 100%; height: 100%; }
.cover .cover-spacer { flex: 1.2; }
.cover h1 {
  font-size: 52px; font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; text-transform: uppercase;
}
.cover .cover-bottom { flex: 2; display: flex; flex-direction: column; justify-content: flex-end; }
.cover .meta-block { margin-bottom: 24px; }
.cover .meta-block:last-child { margin-bottom: 0; }
.cover .meta-label { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.cover .meta-value { font-size: 15px; color: var(--text-secondary); }
.cover .meta-detail { font-size: 15px; color: var(--text-secondary); }
.cover .tag-row { margin-top: 8px; display: flex; gap: 8px; flex-wrap: wrap; }

section { padding: 48px 0; }
.section-label {
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-muted); margin-bottom: 12px;
}
.section-header { page-break-after: avoid; }
.section-title {
  font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 32px; text-transform: uppercase;
}
h3 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-top: 40px; margin-bottom: 16px;
  font-family: var(--font-mono);
}
h4 { font-size: 17px; font-weight: 600; color: var(--text-primary); margin-top: 24px; margin-bottom: 12px; }
p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
p strong { color: var(--text-primary); font-weight: 600; }
p.transition {
  font-size: 17px; color: var(--text-primary); font-weight: 500;
  margin: 32px 0 16px; font-style: italic;
}
ul { list-style: none; padding: 0; margin-bottom: 24px; }
ul li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  color: var(--text-secondary); line-height: 1.7;
}
ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted);
}
ul li strong { color: var(--text-primary); font-weight: 600; }

.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-secondary); border: 1px solid var(--border);
  border-radius: 4px; padding: 4px 9px;
}

.recap-card {
  background: var(--bg-card); border: 1px solid var(--text-muted);
  border-radius: 12px; padding: 32px; margin: 24px 0 32px;
}
.recap-card .recap-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-primary); margin-bottom: 16px;
}
.recap-card .recap-headline {
  font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.4; color: var(--text-primary); margin-bottom: 20px;
}
.recap-card .recap-points { margin: 0; padding: 0; list-style: none; }
.recap-card .recap-points li {
  padding-left: 0; margin-bottom: 10px;
  color: var(--text-secondary); font-size: 15px; line-height: 1.7;
}
.recap-card .recap-points li::before { display: none; }
.recap-card .recap-points li strong { color: var(--text-primary); }

.situation-list { list-style: none; padding: 0; }
.situation-list li {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 20px; margin-bottom: 8px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
  padding-left: 20px;
}
.situation-list li::before { display: none; }
.situation-list li strong { color: var(--text-primary); }

/* Divided rows — one container, hairline dividers (house list style) */
.list-rows {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--bg-card); margin: 24px 0 8px;
}
.list-rows .row {
  padding: 18px 24px; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}
.list-rows .row:last-child { border-bottom: none; }
.list-rows .row strong { color: var(--text-primary); font-weight: 600; }

/* Numbered ledger — mono index + text, divider rows (for sequential lists) */
.list-ledger { margin: 24px 0 8px; }
.list-ledger .item {
  display: grid; grid-template-columns: 36px 1fr; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.list-ledger .item:last-child { border-bottom: none; }
.list-ledger .num { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); padding-top: 3px; }
.list-ledger .txt { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.list-ledger .txt strong { color: var(--text-primary); font-weight: 600; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin-bottom: 16px;
}
.service-card .component-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 8px;
}
.service-card h4 { margin-top: 0; margin-bottom: 16px; font-size: 18px; }
.service-card ul { margin-bottom: 0; }
.service-card ul li { font-size: 14px; }
.service-card ul li::before { width: 4px; height: 4px; left: 4px; top: 9px; }

.outcome-block {
  background: var(--bg-card); border: 1px solid var(--text-muted);
  border-radius: 12px; padding: 32px; margin-top: 32px;
}
.outcome-block h3 { margin-top: 0; margin-bottom: 12px; color: var(--text-primary); }
.outcome-block p { font-size: 16px; color: var(--text-secondary); margin: 0; line-height: 1.7; }

.findings-list { list-style: none; padding: 0; }
.findings-list li {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 18px 22px; margin-bottom: 10px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  padding-left: 22px;
}
.findings-list li::before { display: none; }
.findings-list li strong { color: var(--text-primary); font-weight: 600; }

.recommendation-box {
  background: var(--bg-card); border: 1px solid var(--text-muted);
  border-radius: 12px; padding: 32px; margin-top: 32px;
}
.recommendation-box h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text-primary); font-family: var(--font-mono);
  font-weight: 600; margin-bottom: 20px; margin-top: 0;
}
.recommendation-box .recommendation-headline {
  font-size: 18px; font-weight: 600; color: var(--text-primary);
  letter-spacing: -0.01em; line-height: 1.4; margin: 0 0 12px;
}
.recommendation-box .recommendation-body {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0;
}

.phase-timeline {
  position: relative; padding-left: 40px;
  border-left: 2px solid var(--border);
  margin-left: 16px; margin-top: 24px;
}
.phase-item { position: relative; margin-bottom: 32px; padding-bottom: 8px; }
.phase-item::before {
  content: attr(data-phase); position: absolute; left: -52px; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-primary); border: 2px solid var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
}
.phase-item h4 { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.phase-item .phase-meta {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); margin-bottom: 10px;
}
.phase-item p { font-size: 14px; margin: 0 0 8px; }

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin-bottom: 16px; position: relative;
}
.pricing-card.recommended { border-color: var(--text-muted); padding-top: 44px; }
.pricing-card .recommended-badge {
  position: absolute; top: 0; left: 28px; transform: translateY(-50%);
  background: var(--text-primary); color: var(--bg-primary);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px;
}
.pricing-card .pricing-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border); gap: 16px;
}
.pricing-card .tier-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 6px;
}
.pricing-card .service-name {
  font-size: 22px; font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.01em; line-height: 1.2;
}
.pricing-card .price {
  font-family: var(--font-mono); font-size: 20px; font-weight: 600;
  color: var(--text-primary); white-space: nowrap; line-height: 1.2;
  text-align: right;
}
.pricing-card .price-note {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  margin-top: 4px; letter-spacing: 0.02em; text-align: right;
}
.pricing-card .pricing-description {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 18px;
}
.pricing-card ul { margin-bottom: 0; }
.pricing-card ul li { font-size: 14px; padding-left: 20px; }
.pricing-card ul li::before { width: 4px; height: 4px; left: 4px; top: 9px; }

.stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 24px 0 8px;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.stat-card .stat-value {
  font-family: var(--font-mono); font-size: 28px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.1;
}
.stat-card .stat-label {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted); margin-top: 8px;
}
.stat-card .stat-detail {
  font-size: 13px; color: var(--text-secondary); margin-top: 10px; line-height: 1.6;
}
@media (max-width: 600px) { .stat-grid { grid-template-columns: 1fr; } }

.data-table {
  width: 100%; border-collapse: collapse; margin: 24px 0 8px;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  background: var(--bg-card-alt); font-size: 14px;
}
.data-table thead th {
  text-align: left; padding: 14px 18px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.data-table tbody td {
  padding: 14px 18px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border); line-height: 1.6; vertical-align: top;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody td strong { color: var(--text-primary); font-weight: 600; }
.data-table .price-cell {
  font-family: var(--font-mono); color: var(--text-primary);
  font-weight: 600; white-space: nowrap;
}

.email-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin-bottom: 16px;
}
.email-card .email-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 8px;
}
.email-card h4 { margin-top: 0; margin-bottom: 6px; font-size: 18px; }
.email-card .email-source {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px;
}
.email-card p { font-size: 14px; margin-bottom: 12px; }
.email-card p:last-child { margin-bottom: 0; }
.email-card .email-body {
  font-size: 14px; color: var(--text-secondary); line-height: 1.8;
  white-space: pre-wrap; font-family: var(--font-sans);
  background: var(--bg-card-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 20px; margin-top: 12px;
}
.email-card .email-body strong { color: var(--text-primary); }
.email-card .slot {
  color: var(--text-primary); border-bottom: 1px dashed var(--text-muted);
}

.next-step {
  padding: 18px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 40px 1fr; gap: 20px; align-items: start;
}
.next-step:last-child { border-bottom: none; }
.next-step-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--text-muted); padding-top: 2px;
}
.next-step-title {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 4px;
}
.next-step-body { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }

.footer { padding: 40px 0; text-align: center; }
.footer p { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }

/* ---- Facet pages (campaign sub-pages) ---- */
.docnav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.docnav .inner {
  max-width: 800px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.docnav .nav-brand {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-right: auto;
}
.docnav .nav-brand a { color: var(--text-muted); text-decoration: none; transition: color 120ms; }
.docnav .nav-brand a:hover { color: var(--text-primary); }
.docnav a.nav-link {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary); text-decoration: none;
  padding: 7px 14px; border: 1px solid var(--border); border-radius: 6px;
  transition: color 120ms, border-color 120ms, background 120ms;
}
.docnav a.nav-link:hover { color: var(--text-primary); border-color: var(--text-muted); }
.docnav a.nav-link.active { color: var(--text-primary); border-color: var(--text-muted); background: rgba(255,255,255,0.04); }
@media print { .docnav { display: none; } }

.facet-head { padding: 56px 0 8px; }
.facet-head .facet-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.facet-head h1 {
  font-size: 44px; font-weight: 700; letter-spacing: -0.03em;
  text-transform: uppercase; margin-top: 12px; line-height: 1.1;
}
@media (max-width: 640px) { .facet-head h1 { font-size: 32px; } }

.subhead {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); font-family: var(--font-mono);
  margin: 40px 0 14px;
}

@page { margin: 0; }
@media print {
  .cover { min-height: 100vh; page-break-after: always; }
  section { padding: 48px 0 32px; page-break-before: always; break-before: always; }
  .section-label, .section-title, .section-header { page-break-after: avoid; }
  h3 { page-break-after: avoid; orphans: 3; widows: 3; }
  .situation-list li, .list-rows, .list-ledger .item, .service-card, .pricing-card, .outcome-block,
  .stat-card, .email-card, .phase-item { page-break-inside: avoid; }
  .data-table { page-break-inside: avoid; }
  ul li { page-break-inside: avoid; }
  p { orphans: 3; widows: 3; }
}
@media (max-width: 640px) {
  .cover h1 { font-size: 36px; }
  .section-title { font-size: 24px; }
  .recap-card .recap-headline { font-size: 18px; }
}
