/* =====================================================================
   masculinityarchitecture.com — Tactical Research Console
   Architect-Veteran. Load-bearing aesthetics, neutral authority.
   ===================================================================== */

/* GEO Extract — direct-answer block placed after question-format H2s.
   Distinct from .aeo (primary definition, full gold border) and .pull
   (pull quote, thick left border, italic). Light, compact, quotable. */
.geo-extract {
  border-left: 2px solid var(--gold-faint);
  background: rgba(201, 168, 76, 0.03);
  padding: 16px 20px;
  margin: 0 0 36px;
  max-width: 64ch;
}
.geo-extract .geo-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.geo-extract p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory-mute);
  margin: 0;
}
.geo-extract p + p { margin-top: 10px; }


:root {
  /* Palette */
  --void: #1a1a1a;
  --void-2: #141414;
  --void-3: #0f0f0f;
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.55);
  --gold-faint: rgba(201, 168, 76, 0.22);
  --gold-vapor: rgba(201, 168, 76, 0.08);
  --ivory: #e8e4dc;
  --ivory-mute: rgba(242, 239, 232, 0.97);
  --ivory-dim: rgba(232, 228, 220, 0.38);
  --ivory-faint: rgba(232, 228, 220, 0.18);
  --signal-red: #b9533c;
  --signal-green: #6e8d5a;

  /* Type */
  --serif: 'EB Garamond', 'Iowan Old Style', 'Palatino', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* Rhythm */
  --col-w: 1200px;
  --rail: 88px;

  /* Grain */
  --grain-blur: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: oldstyle-nums;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Paper / static grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.74  0 0 0 0 0.65  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Blueprint grid — fixed parallax layer */
.blueprint-bg {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, var(--gold-faint) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gold-faint) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 90%);
  opacity: 0.55;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.blueprint-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,228,220,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,228,220,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
}

/* Crosshair markers */
.crosshair {
  position: fixed;
  pointer-events: none;
  z-index: 2;
  width: 16px; height: 16px;
}
.crosshair::before, .crosshair::after {
  content: "";
  position: absolute;
  background: var(--gold-soft);
}
.crosshair::before { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.crosshair::after  { top: 50%; left: 0; height: 1px; width: 100%; transform: translateY(-50%); }
.crosshair.tl { top: 24px; left: 24px; }
.crosshair.tr { top: 24px; right: 24px; }
.crosshair.bl { bottom: 24px; left: 24px; }
.crosshair.br { bottom: 24px; right: 24px; }

/* =====================================================================
   Header — tactical bar
   ===================================================================== */
.tac-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 56px;
  display: flex;
  align-items: stretch;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--gold-faint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tac-header .cell {
  display: flex; align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--gold-faint);
  color: var(--ivory-mute);
  white-space: nowrap;
  gap: 8px;
}
.tac-header .cell.brand {
  color: var(--ivory);
  letter-spacing: 0.22em;
  font-weight: 500;
}
.tac-header .cell.brand b {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.32em;
}
.tac-header .cell.metric { color: var(--ivory-dim); }
.tac-header .cell.metric strong { color: var(--ivory); font-weight: 500; }
.tac-header .nav {
  margin-left: auto;
  display: flex;
}
.tac-header .nav a {
  display: flex; align-items: center;
  padding: 0 18px;
  border-left: 1px solid var(--gold-faint);
  color: var(--ivory);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.tac-header .nav a:hover { color: var(--gold); }
.tac-header .nav a.active { color: var(--gold); }
.tac-header .nav a.active::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: -1px;
  height: 2px; background: var(--gold);
}
.tac-header .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal-green);
  box-shadow: 0 0 0 0 rgba(110, 141, 90, 0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(110, 141, 90, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(110, 141, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 141, 90, 0); }
}

/* =====================================================================
   Layout primitives
   ===================================================================== */
.viewport {
  position: relative;
  z-index: 3;
  padding-top: 56px;
}
.shell {
  max-width: var(--col-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* Side rail with measurement ruler */
.ruler {
  position: absolute;
  top: 0; bottom: 0;
  width: 56px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ivory-dim);
  pointer-events: none;
}
.ruler.left { left: -64px; border-right: 1px solid var(--gold-faint); }
.ruler.right { right: -64px; border-left: 1px solid var(--gold-faint); text-align: left; }
.ruler .tick {
  position: absolute;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  height: 16px;
  transform: translateY(-8px);
}
.ruler.left .tick { justify-content: flex-end; }
.ruler.left .tick::after {
  content: ""; width: 8px; height: 1px; background: var(--gold-soft);
}
.ruler.right .tick::before {
  content: ""; width: 8px; height: 1px; background: var(--gold-soft);
}
.ruler .tick.major { color: var(--gold); }
.ruler .tick.major::after, .ruler .tick.major::before { width: 14px; background: var(--gold); }

/* =====================================================================
   Section header / framing
   ===================================================================== */
.section {
  padding: 96px 0;
  border-top: 1px solid var(--gold-faint);
  position: relative;
}
.section:first-of-type { border-top: 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 24px 0 0;
  font-variant-numeric: oldstyle-nums;
}
.h-display em {
  font-style: italic;
  color: var(--gold);
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
}
.h-section em { font-style: italic; color: var(--gold); }

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ivory-mute);
  max-width: 60ch;
  margin: 24px 0 0;
}

p { color: var(--ivory-mute); max-width: 64ch; }
p strong { color: var(--ivory); font-weight: 500; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* =====================================================================
   Data block — universal "instrumented box"
   ===================================================================== */
.dblock {
  position: relative;
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(0,0,0,0.18));
  padding: 28px 28px 24px;
  transition: border-color 0.3s, background-color 0.3s;
}
.dblock::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dblock:hover { border-color: var(--gold); }
.dblock:hover::before {
  border-color: var(--gold-soft);
  box-shadow: inset 0 0 22px rgba(201, 168, 76, 0.10);
}

.dblock .meta {
  position: absolute;
  top: -1px; left: 16px;
  transform: translateY(-50%);
  background: var(--void);
  padding: 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.dblock .corner {
  position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--gold-soft);
}
.dblock .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dblock .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.dblock .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dblock .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }

.dblock .footnote {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--gold-faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 12px;
}

.dblock .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal-green);
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(110,141,90,0.6);
  animation: pulse 2.6s infinite;
}
.dblock .status-dot.gold { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.6); animation-name: pulseGold; }
.dblock .status-dot.red  { background: var(--signal-red); box-shadow: 0 0 8px rgba(185,83,60,0.6); }
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* Mono labels */
.mono-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.mono-label.gold { color: var(--gold); }

/* =====================================================================
   Resolve animation — text scans in
   ===================================================================== */
.resolve {
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease, transform .8s ease;
}
.resolve.in { opacity: 1; transform: translateY(0); }
.resolve.scan::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.18) 50%, transparent 100%);
  pointer-events: none;
  animation: scanSweep 1.4s ease-out forwards;
}
@keyframes scanSweep {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(110%); opacity: 0; }
}

/* =====================================================================
   Buttons / Links
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.btn::after {
  content: "→";
  font-family: var(--mono);
}
.btn:hover {
  background: var(--gold);
  color: var(--void);
  text-decoration: none;
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.35);
}
.btn.ghost {
  border-color: var(--ivory-faint);
  color: var(--ivory-mute);
}
.btn.ghost:hover {
  border-color: var(--ivory);
  background: transparent;
  color: var(--ivory);
  box-shadow: 0 0 18px rgba(232,228,220,0.15);
}

/* Inline link with arrow */
.tac-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.tac-link::after { content: "→"; transition: transform .2s; }
.tac-link:hover::after { transform: translateX(4px); }

/* =====================================================================
   Footer
   ===================================================================== */
.tac-footer {
  border-top: 1px solid var(--gold-faint);
  padding: 56px 0 40px;
  margin-top: 80px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.tac-footer .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.tac-footer h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 500;
}
.tac-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tac-footer a { color: var(--ivory-mute); text-decoration: none; }
.tac-footer a:hover { color: var(--gold); }
.tac-footer .colophon {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed var(--gold-faint);
  display: flex; justify-content: space-between;
  color: var(--ivory-dim);
}

/* Print-style citation block */
.cite {
  border-left: 1px solid var(--gold-soft);
  padding: 8px 0 8px 18px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-mute);
  font-size: 19px;
  line-height: 1.55;
}
.cite cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Tag chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--gold-faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.chip.gold { color: var(--gold); border-color: var(--gold-soft); }

/* Image / figure placeholder — striped */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(201,168,76,0.05) 0 12px,
      rgba(201,168,76,0.10) 12px 13px
    ),
    var(--void-2);
  border: 1px solid var(--gold-faint);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
  padding: 20px;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
  .ruler { display: none; }
  .tac-header .cell.metric { display: none; }
  .tac-footer .row { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   THEME TOGGLE — site-wide button styles
   ===================================================================== */
.tac-header .theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid var(--gold-faint);
  background: transparent;
  color: var(--ivory-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.tac-header .theme-toggle:hover { color: var(--gold); }
.tac-header .theme-toggle .icon {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset -4px -2px 0 0 var(--void);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.tac-header .theme-toggle .label-dark { display: none; }
.tac-header .theme-toggle .label-light { display: inline; }

/* =====================================================================
   LIGHT THEME — paper & ink. Triggered by <html data-theme="light">.
   Site-wide. Page-specific overrides live in each page's <style>.
   ===================================================================== */
[data-theme="light"] {
  --void:   #efe9db;
  --void-2: #e6dfcd;
  --void-3: #ddd5c0;

  --ivory:       #1f1a14;
  --ivory-mute:  rgba(31, 26, 20, 0.94);
  --ivory-dim:   rgba(31, 26, 20, 0.50);
  --ivory-faint: rgba(31, 26, 20, 0.18);

  --gold:       #8b6f24;
  --gold-soft:  rgba(139, 111, 36, 0.60);
  --gold-faint: rgba(139, 111, 36, 0.30);
  --gold-vapor: rgba(139, 111, 36, 0.10);

  --signal-red:   #9a3a25;
  --signal-green: #4d6a3a;
}
[data-theme="light"] body::before {
  opacity: 0.42;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.22  0 0 0 0 0.18  0 0 0 0 0.12  0 0 0 0.20 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
[data-theme="light"] .blueprint-bg { opacity: 0.62; }
[data-theme="light"] .blueprint-bg::after {
  background-image:
    linear-gradient(to right, rgba(31,26,20,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,26,20,0.05) 1px, transparent 1px);
}
[data-theme="light"] .tac-header { background: rgba(239, 233, 219, 0.82); }
[data-theme="light"] .dblock {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(31,26,20,0.025));
}
[data-theme="light"] .btn:hover { box-shadow: 0 0 24px rgba(139, 111, 36, 0.28); }
[data-theme="light"] .chip { background: rgba(255, 255, 255, 0.4); }
[data-theme="light"] .tac-header .theme-toggle .icon {
  box-shadow: 0 0 0 1px var(--gold-soft);
  transform: rotate(180deg);
}
[data-theme="light"] .tac-header .theme-toggle .label-light { display: none; }
[data-theme="light"] .tac-header .theme-toggle .label-dark { display: inline; }

/* =====================================================================
   BOOK SALES TEMPLATE — long-form direct-response modules, all .bs- prefixed
   ===================================================================== */

/* Placeholder block — dev-visible, production-invisible via body.bs-prod */
.bs-placeholder {
  display: block;
  border: 1px dashed var(--gold-soft);
  background: rgba(201, 168, 76, 0.04);
  padding: 22px 26px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ivory-mute);
  position: relative;
}
.bs-placeholder::before {
  content: "PENDING · " attr(data-pending);
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
body.bs-prod .bs-placeholder { display: none; }

/* Hero */
.bs-hero {
  padding: 130px 0 80px;
  border-bottom: 1px solid var(--gold-faint);
  position: relative;
}
.bs-pre-headline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.bs-pre-headline::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.bs-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 28px;
}
.bs-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0 0 28px;
}
.bs-hero h1 em { font-style: italic; color: var(--gold); }
.bs-hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.5;
  color: var(--ivory-mute);
  max-width: 56ch;
  margin: 0 0 32px;
}
.bs-hero-stamp {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.bs-hero-stamp b { color: var(--ivory); font-weight: 500; }

.bs-hero-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid var(--gold-faint);
  background:
    repeating-linear-gradient(135deg, rgba(201,168,76,0.06) 0 12px, rgba(201,168,76,0.12) 12px 13px),
    var(--void-2);
  box-shadow:
    0 32px 60px -22px rgba(0,0,0,0.65),
    16px 0 28px -22px rgba(0,0,0,0.55);
  transform: rotate(-1.4deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.bs-hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bs-hero-cover .bs-cover-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0));
  border-right: 1px solid var(--gold-faint);
}

/* AIO block — primary definition surface */
.bs-aio {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.05), rgba(0,0,0,0.2));
  padding: 32px 36px;
  margin: 0 0 24px;
  position: relative;
  max-width: 100% !important;
}
.bs-aio::before {
  content: "AIO // PRIMARY DEFINITION";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.bs-aio h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 14px;
}
.bs-aio h2 em { font-style: italic; color: var(--gold); }
.bs-aio p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 68ch;
}
.bs-aio p strong { color: var(--ivory); font-weight: 500; }

/* Veteran voice / pain agitation */
.bs-veteran {
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(201,168,76,0.04), rgba(0,0,0,0.18));
  padding: 36px 40px;
  position: relative;
  margin-top: 40px;
}
.bs-veteran::before {
  content: "EXPERIENCE SIGNIFIER // VETERAN VOICE";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.bs-veteran .corner { position: absolute; width: 10px; height: 10px; border: 1px solid var(--gold-soft); }
.bs-veteran .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.bs-veteran .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.bs-veteran .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.bs-veteran p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ivory-mute);
  margin: 0 0 16px;
  max-width: 64ch;
}
.bs-veteran p:last-child { margin-bottom: 0; }
.bs-veteran p strong { color: var(--ivory); font-weight: 500; }

/* Mechanism / Architecture cards (numbered) */
.bs-mechanism-stack {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.bs-mechanism-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(201,168,76,0.04), rgba(0,0,0,0.18));
  padding: 32px 36px;
  position: relative;
  transition: border-color .3s;
}
.bs-mechanism-card:hover { border-color: var(--gold); }
.bs-mechanism-card .corner { position: absolute; width: 8px; height: 8px; border: 1px solid var(--gold-soft); }
.bs-mechanism-card .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.bs-mechanism-card .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.bs-mechanism-card .bs-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 88px;
  line-height: 0.85;
  color: var(--gold);
  font-variant-numeric: oldstyle-nums;
  margin-bottom: 6px;
}
.bs-mechanism-card .bs-num-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.bs-mechanism-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 14px;
}
.bs-mechanism-card h3 em { font-style: italic; color: var(--gold); }
.bs-mechanism-card p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 64ch;
}

/* Author credibility module */
.bs-author-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.bs-headshot {
  width: 240px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold-faint);
  background:
    repeating-linear-gradient(135deg, rgba(201,168,76,0.05) 0 10px, rgba(201,168,76,0.10) 10px 11px),
    var(--void-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
  padding: 12px;
  position: relative;
}
.bs-headshot img { width: 100%; height: 100%; object-fit: cover; }

.bs-credential-cell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-faint);
  margin: 0 0 28px;
}
.bs-credential-cell .cell {
  padding: 18px 20px;
  border-right: 1px solid var(--gold-faint);
}
.bs-credential-cell .cell:last-child { border-right: 0; }
.bs-credential-cell .num {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: oldstyle-nums;
  display: block;
  margin-bottom: 8px;
}
.bs-credential-cell .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

.bs-author-bio {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ivory-mute);
}
.bs-author-bio p { margin: 0 0 16px; max-width: 62ch; }
.bs-author-bio p strong { color: var(--ivory); font-weight: 500; }
.bs-author-bio p em { font-style: italic; color: var(--gold); }

/* Origin / long narrative */
.bs-origin {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ivory-mute);
  margin-top: 36px;
}
.bs-origin > * { max-width: 64ch; }
.bs-origin p { margin: 16px 0; }
.bs-origin p strong { color: var(--ivory); font-weight: 500; }
.bs-origin p em { font-style: italic; }
.bs-origin h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  color: var(--ivory);
  margin: 56px 0 8px;
  letter-spacing: -0.005em;
}
.bs-origin .bs-pull {
  margin: 40px 0;
  padding: 24px 30px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(201,168,76,0.06), rgba(201,168,76,0));
  max-width: 100% !important;
}
.bs-origin .bs-pull p {
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ivory);
  margin: 0;
  max-width: 100%;
}
.bs-origin .bs-dropcap::first-letter {
  font-family: var(--serif);
  font-size: 78px;
  line-height: 0.85;
  float: left;
  color: var(--gold);
  padding: 6px 14px 0 0;
  font-style: italic;
}

/* Chapter teasers (details) */
.bs-chapters {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  border-top: 1px solid var(--gold-faint);
}
.bs-chapter-details {
  border-bottom: 1px solid var(--gold-faint);
  transition: background .25s;
}
.bs-chapter-details[open] { background: rgba(201,168,76,0.025); }
.bs-chapter-details > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px;
  display: grid;
  grid-template-columns: 90px 1fr 32px;
  gap: 24px;
  align-items: center;
  transition: color .25s;
}
.bs-chapter-details > summary::-webkit-details-marker { display: none; }
.bs-chapter-details > summary:hover { color: var(--gold); }
.bs-chapter-details .bs-ch-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.bs-chapter-details .bs-ch-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ivory);
}
.bs-chapter-details .bs-ch-title em { font-style: italic; color: var(--gold); }
.bs-chapter-details .bs-ch-toggle {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--gold);
  text-align: right;
  transition: transform .25s;
  user-select: none;
}
.bs-chapter-details[open] .bs-ch-toggle { transform: rotate(45deg); }
.bs-chapter-details .bs-ch-body {
  padding: 0 8px 28px 122px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory-mute);
  max-width: 72ch;
}
.bs-chapter-details .bs-ch-body em { font-style: italic; color: var(--ivory); }

/* CTA stack */
.bs-cta-stack {
  margin: 64px 0 0;
  padding: 48px 40px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.06), rgba(0,0,0,0.3));
  position: relative;
  text-align: center;
}
.bs-cta-stack::before {
  content: "ACQUISITION // ORDER";
  position: absolute;
  top: -1px; left: 32px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.bs-cta-stack .corner { position: absolute; width: 12px; height: 12px; border: 1px solid var(--gold); }
.bs-cta-stack .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.bs-cta-stack .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.bs-cta-stack .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.bs-cta-stack .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.bs-cta-stack .bs-cta-prices {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: baseline;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.bs-cta-stack .bs-anchor {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--ivory-dim);
  text-decoration: line-through;
  text-decoration-color: var(--signal-red);
  text-decoration-thickness: 2px;
}
.bs-cta-stack .bs-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bs-cta-stack .bs-price {
  font-family: var(--serif);
  font-variant-numeric: oldstyle-nums;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
}
.bs-cta-stack .bs-price-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 8px;
}

.bs-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  height: 56px;
  padding: 0 32px;
  background: var(--gold);
  color: var(--void);
  border: 1px solid var(--gold);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}
.bs-cta-button::after { content: "→"; font-family: var(--mono); }
.bs-cta-button:hover {
  background: var(--void);
  color: var(--gold);
  text-decoration: none;
  box-shadow: 0 0 32px rgba(201,168,76,0.4);
}

.bs-cta-trust {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.bs-cta-trust span { display: inline-flex; gap: 8px; align-items: center; }
.bs-cta-trust span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--signal-green);
  display: inline-block;
}

/* Sticky CTA bar */
.bs-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-top: 1px solid var(--gold);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  font-family: var(--mono);
  pointer-events: none;
}
.bs-sticky-cta.visible { transform: translateY(0); pointer-events: auto; }
.bs-sticky-cta .bs-sticky-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.bs-sticky-cta .bs-sticky-label b { color: var(--ivory); font-weight: 500; letter-spacing: 0.24em; }
.bs-sticky-cta .bs-sticky-price { color: var(--gold); }
.bs-sticky-cta .bs-sticky-price s {
  color: var(--ivory-dim);
  text-decoration-color: var(--signal-red);
  margin-right: 6px;
}
.bs-sticky-cta a.bs-sticky-cta-btn {
  height: 40px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--void);
  border: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .25s;
}
.bs-sticky-cta a.bs-sticky-cta-btn:hover { opacity: 0.88; text-decoration: none; }
.bs-sticky-cta a.bs-sticky-cta-btn::after { content: "→"; }
.bs-sticky-cta .bs-sticky-close {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--ivory-faint);
  color: var(--ivory-mute);
  font-family: var(--mono);
  font-size: 14px;
  cursor: pointer;
  transition: all .25s;
}
.bs-sticky-cta .bs-sticky-close:hover { color: var(--gold); border-color: var(--gold); }

/* Testimonial grid */
.bs-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.bs-testimonial-card {
  border: 1px solid var(--gold-faint);
  padding: 26px 26px;
  background: rgba(20,20,20,0.5);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bs-testimonial-card .bs-tm-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}
.bs-testimonial-card .bs-tm-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.10) 0 4px, rgba(201,168,76,0.18) 4px 5px);
  border: 1px solid var(--gold-faint);
}
.bs-testimonial-card .bs-tm-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ivory);
  line-height: 1.2;
}
.bs-testimonial-card .bs-tm-cred {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.bs-testimonial-card .bs-tm-quote {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ivory-mute);
  font-style: italic;
  margin: 0;
}

/* Bonus stack */
.bs-bonus-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  border-top: 1px dashed var(--gold-faint);
}
.bs-bonus-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px dashed var(--gold-faint);
}
.bs-bonus-row .bs-bonus-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
}
.bs-bonus-row .bs-bonus-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  line-height: 1.25;
  margin: 0 0 4px;
}
.bs-bonus-row .bs-bonus-desc {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ivory-mute);
  margin: 0;
  line-height: 1.5;
}
.bs-bonus-row .bs-bonus-value {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-align: right;
}

/* Pricing anchor */
.bs-pricing-anchor {
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(201,168,76,0.04), rgba(0,0,0,0.2));
  padding: 36px 40px;
  margin-top: 36px;
  position: relative;
}
.bs-pricing-anchor::before {
  content: "STACK // VALUE BREAKDOWN";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.bs-pricing-rows { display: flex; flex-direction: column; margin-bottom: 0; }
.bs-pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--gold-faint);
  align-items: baseline;
}
.bs-pricing-row .lbl { font-family: var(--serif); font-size: 18px; color: var(--ivory); }
.bs-pricing-row .lbl small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.bs-pricing-row .val { font-family: var(--mono); font-size: 16px; color: var(--gold); }
.bs-pricing-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0 0;
  margin-top: 14px;
  border-top: 1px solid var(--gold);
  align-items: center;
}
.bs-anchor-big {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--ivory-dim);
  text-decoration: line-through;
  text-decoration-color: var(--signal-red);
  text-decoration-thickness: 2px;
  font-variant-numeric: oldstyle-nums;
}
.bs-anchor-big small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ivory-dim);
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 6px;
}
.bs-final-big {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: oldstyle-nums;
}
.bs-final-big small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Guarantee badge */
.bs-guarantee-badge {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.05), rgba(0,0,0,0.25));
  padding: 36px 40px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
}
.bs-guarantee-badge::before {
  content: "RISK REVERSAL // GUARANTEE";
  position: absolute;
  top: -1px; left: 32px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.bs-grt-seal {
  width: 140px; height: 140px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
  flex-shrink: 0;
}
.bs-grt-seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--gold-soft);
}
.bs-grt-seal .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
  font-variant-numeric: oldstyle-nums;
}
.bs-grt-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 12px;
}
.bs-grt-body h3 em { font-style: italic; color: var(--gold); }
.bs-grt-body p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 64ch;
}

/* FAQ */
.bs-faq {
  margin-top: 36px;
  border-top: 1px solid var(--gold-faint);
}
.bs-faq details { border-bottom: 1px solid var(--gold-faint); }
.bs-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 24px;
  align-items: center;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ivory);
  transition: color .25s;
}
.bs-faq summary::-webkit-details-marker { display: none; }
.bs-faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--gold);
  text-align: right;
  line-height: 1;
}
.bs-faq details[open] summary::after { content: "−"; }
.bs-faq summary:hover { color: var(--gold); }
.bs-faq details > div {
  padding: 0 8px 24px 8px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory-mute);
  max-width: 72ch;
}

/* PS blocks */
.bs-ps-block {
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px dashed var(--gold-faint);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ivory-mute);
  max-width: 64ch;
}
.bs-ps-block .bs-ps-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.bs-ps-block strong { color: var(--ivory); font-weight: 500; }
.bs-ps-block em { font-style: italic; color: var(--ivory); }

/* Final urgency / deployment window */
.bs-deployment {
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(201,168,76,0.04), rgba(0,0,0,0.2));
  padding: 36px 40px;
  margin-top: 36px;
  position: relative;
}
.bs-deployment::before {
  content: "DEPLOYMENT WINDOW // STATUS";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.bs-deployment-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 6px;
  border-top: 1px solid var(--gold-faint);
  border-bottom: 1px solid var(--gold-faint);
}
.bs-deployment-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-right: 1px solid var(--gold-faint);
}
.bs-deployment-cell:last-child { border-right: 0; }
.bs-deployment-cell .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.bs-deployment-cell .val {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ivory);
  font-variant-numeric: oldstyle-nums;
}
.bs-deployment-cell .val.gold { color: var(--gold); }
.bs-deployment-note {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory-mute);
  max-width: 64ch;
}

/* Section utility wrapper inside book sales template */
.bs-section { padding: 88px 0; border-top: 1px solid var(--gold-faint); position: relative; }
.bs-section:first-of-type { border-top: 0; }
.bs-section .eyebrow { margin-bottom: 4px; }
.bs-section .h-section { margin-top: 12px; }
body.bs-page main.viewport { padding-bottom: 96px; }

/* Responsive */
@media (max-width: 900px) {
  .bs-hero-grid,
  .bs-author-grid,
  .bs-pricing-final,
  .bs-guarantee-badge { grid-template-columns: 1fr; gap: 28px; }
  .bs-mechanism-card { grid-template-columns: 1fr; gap: 16px; padding: 26px 24px; }
  .bs-mechanism-card .bs-num { font-size: 64px; }
  .bs-testimonial-grid { grid-template-columns: 1fr; }
  .bs-deployment-row { grid-template-columns: 1fr; }
  .bs-deployment-cell { border-right: 0; border-bottom: 1px dashed var(--gold-faint); }
  .bs-deployment-cell:last-child { border-bottom: 0; }
  .bs-cta-stack { padding: 36px 22px; }
  .bs-cta-button { min-width: 0; width: 100%; padding: 0 18px; font-size: 11px; letter-spacing: 0.22em; }
  .bs-bonus-row { grid-template-columns: 48px 1fr; padding: 18px 4px; }
  .bs-bonus-row .bs-bonus-icon { width: 48px; height: 48px; font-size: 22px; }
  .bs-bonus-row .bs-bonus-value { grid-column: 1 / -1; text-align: left; padding-left: 60px; }
  .bs-chapter-details > summary { grid-template-columns: 70px 1fr 24px; gap: 14px; }
  .bs-chapter-details .bs-ch-body { padding-left: 8px; padding-right: 8px; }
  .bs-hero-cover { transform: none; max-width: 240px; margin: 12px auto 0; }
  .bs-sticky-cta { grid-template-columns: 1fr auto; padding: 10px 16px; }
  .bs-sticky-cta .bs-sticky-close { display: none; }
  .bs-sticky-cta .bs-sticky-label { font-size: 9px; gap: 8px; }
  .bs-sticky-cta a.bs-sticky-cta-btn { height: 36px; padding: 0 14px; }
  .bs-section { padding: 64px 0; }
  .bs-veteran, .bs-pricing-anchor, .bs-deployment, .bs-aio { padding: 26px 22px; }
  .bs-guarantee-badge { padding: 26px 22px; justify-items: center; text-align: center; }
}

/* Light theme — page-specific surfaces */
[data-theme="light"] .bs-testimonial-card,
[data-theme="light"] .bs-mechanism-card,
[data-theme="light"] .bs-veteran,
[data-theme="light"] .bs-pricing-anchor,
[data-theme="light"] .bs-deployment,
[data-theme="light"] .bs-cta-stack,
[data-theme="light"] .bs-aio,
[data-theme="light"] .bs-guarantee-badge {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(31,26,20,0.025));
}
[data-theme="light"] .bs-sticky-cta { background: rgba(239,233,219,0.92); }
[data-theme="light"] .bs-headshot,
[data-theme="light"] .bs-hero-cover { background: rgba(255,255,255,0.4); }
[data-theme="light"] .bs-placeholder { background: rgba(139,111,36,0.06); }

/* =====================================================================
   DISPATCH (squeeze page + thank-you) — all .dp- prefixed
   ===================================================================== */

/* Body-level mode for full-bleed squeeze layout */
body.dp-page main.viewport { padding-bottom: 0; }
body.dp-page .dp-section { padding: 72px 0; border-top: 1px solid var(--gold-faint); position: relative; }
body.dp-page .dp-section:first-of-type { border-top: 0; }

/* Hero */
.dp-hero {
  padding: 120px 0 72px;
  border-bottom: 1px solid var(--gold-faint);
  position: relative;
}
.dp-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.dp-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.dp-hero-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.dp-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0 0 24px;
}
.dp-hero h1 em { font-style: italic; color: var(--gold); }
.dp-hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ivory-mute);
  max-width: 52ch;
  margin: 0 0 28px;
}

/* Promise bullets */
.dp-promise-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 52ch;
}
.dp-promise-bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ivory);
}
.dp-promise-bullets li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
}
.dp-promise-bullets li b { color: var(--gold); font-style: italic; font-weight: 400; }

/* Hero form */
.dp-hero-form {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.05), rgba(0,0,0,0.25));
  position: relative;
  max-width: 520px;
}
.dp-hero-form::before {
  content: "ENROL // DISPATCH";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.dp-hero-form .corner { position: absolute; width: 10px; height: 10px; border: 1px solid var(--gold); }
.dp-hero-form .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-hero-form .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.dp-hero-form .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-hero-form .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }

.dp-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.dp-form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 6px;
}
.dp-form-row label b { color: var(--gold); font-weight: 500; }
.dp-form-row input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--void-2);
  border: 1px solid var(--gold-faint);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color .2s;
}
.dp-form-row input[type="email"]:focus { border-color: var(--gold); }
.dp-form-row input[type="email"]::placeholder { color: var(--ivory-dim); letter-spacing: 0.1em; }

.dp-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0 24px;
  background: var(--gold);
  color: var(--void);
  border: 1px solid var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  margin-top: 14px;
}
.dp-cta-button::after { content: "→"; }
.dp-cta-button:hover {
  background: var(--void);
  color: var(--gold);
  text-decoration: none;
  box-shadow: 0 0 28px rgba(201,168,76,0.4);
}
.dp-cta-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent;
  color: var(--ivory-dim);
  border-color: var(--gold-faint);
  box-shadow: none;
}

.dp-form-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dp-form-status .ok { color: var(--signal-green); display: inline-flex; gap: 6px; align-items: center; }
.dp-form-status .ok::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--signal-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(110,141,90,0.6);
}

/* Trust strip */
.dp-trust-strip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.dp-trust-strip span { display: inline-flex; gap: 8px; align-items: center; }
.dp-trust-strip span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--signal-green);
  display: inline-block;
}

/* Lead magnet preview card */
.dp-lm-preview {
  position: relative;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.05), rgba(0,0,0,0.25));
  padding: 28px;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
.dp-lm-preview::before {
  content: "DELIVERABLE // FREE";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.dp-lm-preview .corner { position: absolute; width: 12px; height: 12px; border: 1px solid var(--gold); }
.dp-lm-preview .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-lm-preview .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.dp-lm-preview .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-lm-preview .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.dp-lm-preview .bg {
  position: absolute; inset: 1px;
  background:
    repeating-linear-gradient(135deg, rgba(201,168,76,0.06) 0 12px, rgba(201,168,76,0.12) 12px 13px),
    var(--void-2);
  z-index: 0;
}
.dp-lm-preview img { position: absolute; inset: 1px; width: calc(100% - 2px); height: calc(100% - 2px); object-fit: cover; z-index: 1; }
.dp-lm-preview .meta {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.dp-lm-preview h3 {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ivory);
  margin: 0 0 12px;
}
.dp-lm-preview h3 em { font-style: italic; color: var(--gold); }
.dp-lm-preview .lm-sub {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 30ch;
}

/* What's inside */
.dp-inside {
  display: flex;
  flex-direction: column;
  border-top: 1px dashed var(--gold-faint);
  margin-top: 36px;
}
.dp-inside-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px dashed var(--gold-faint);
  align-items: start;
}
.dp-inside-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: oldstyle-nums;
}
.dp-inside-row .body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ivory);
  max-width: 64ch;
}
.dp-inside-row .body small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Mini credential cell (author block) */
.dp-author-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 32px;
}
.dp-headshot {
  width: 180px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--gold-faint);
  background:
    repeating-linear-gradient(135deg, rgba(201,168,76,0.05) 0 10px, rgba(201,168,76,0.10) 10px 11px),
    var(--void-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
  padding: 12px;
}
.dp-headshot img { width: 100%; height: 100%; object-fit: cover; }

.dp-credential-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-faint);
  margin: 0 0 22px;
}
.dp-credential-mini .cell {
  padding: 14px 16px;
  border-right: 1px solid var(--gold-faint);
}
.dp-credential-mini .cell:last-child { border-right: 0; }
.dp-credential-mini .num {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: oldstyle-nums;
  display: block;
  margin-bottom: 6px;
}
.dp-credential-mini .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.dp-author-bio {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory-mute);
}
.dp-author-bio p { margin: 0 0 12px; max-width: 60ch; }
.dp-author-bio p strong { color: var(--ivory); font-weight: 500; }
.dp-author-bio p em { font-style: italic; color: var(--gold); }

/* Veteran block — reused .bs-veteran from book sales; lighter padding for dispatch */
.dp-veteran {
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(201,168,76,0.04), rgba(0,0,0,0.18));
  padding: 28px 32px;
  position: relative;
  margin-top: 32px;
}
.dp-veteran::before {
  content: "EXPERIENCE SIGNIFIER";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.dp-veteran .corner { position: absolute; width: 8px; height: 8px; border: 1px solid var(--gold-soft); }
.dp-veteran .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-veteran .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-veteran p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ivory-mute);
  margin: 0 0 14px;
  max-width: 64ch;
}
.dp-veteran p:last-child { margin-bottom: 0; }
.dp-veteran p strong { color: var(--ivory); font-weight: 500; }

/* Tighter FAQ accordion (no per-question eyebrow) */
.dp-faq {
  margin-top: 28px;
  border-top: 1px solid var(--gold-faint);
}
.dp-faq details { border-bottom: 1px solid var(--gold-faint); }
.dp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 8px;
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 20px;
  align-items: center;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--ivory);
  transition: color .25s;
}
.dp-faq summary::-webkit-details-marker { display: none; }
.dp-faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: var(--gold);
  text-align: right;
  line-height: 1;
}
.dp-faq details[open] summary::after { content: "−"; }
.dp-faq summary:hover { color: var(--gold); }
.dp-faq details > div {
  padding: 0 8px 22px 8px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory-mute);
  max-width: 68ch;
}

/* Stripped footer (squeeze page only) */
.dp-stripped-footer {
  border-top: 1px solid var(--gold-faint);
  padding: 24px 0 28px;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.dp-stripped-footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dp-stripped-footer a { color: var(--ivory-mute); }
.dp-stripped-footer a:hover { color: var(--gold); }
.dp-stripped-footer .links { display: flex; gap: 18px; }

/* =====================================================================
   DISPATCH THANK-YOU — .dp-thanks- prefixed
   ===================================================================== */

.dp-thanks-hero {
  padding: 140px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--gold-faint);
}
.dp-thanks-seal {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  border: 1px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 40px rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.04);
}
.dp-thanks-seal svg { width: 40px; height: 40px; color: var(--gold); }
.dp-thanks-seal .corner { position: absolute; width: 10px; height: 10px; border: 1px solid var(--gold); }
.dp-thanks-seal .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.dp-thanks-seal .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-thanks-seal .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-thanks-seal .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.dp-thanks-stamp {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.dp-thanks-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0 0 18px;
}
.dp-thanks-hero h1 em { font-style: italic; color: var(--gold); }
.dp-thanks-hero p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ivory-mute);
  margin: 0 auto;
  max-width: 52ch;
}

/* Lead-magnet delivery block */
.dp-thanks-delivery {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,168,76,0.05), rgba(0,0,0,0.25));
  padding: 32px 36px;
  margin: 40px auto 0;
  max-width: 720px;
  position: relative;
  text-align: center;
}
.dp-thanks-delivery::before {
  content: "DELIVERY // READY";
  position: absolute;
  top: -1px; left: 32px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.dp-thanks-delivery .corner { position: absolute; width: 10px; height: 10px; border: 1px solid var(--gold); }
.dp-thanks-delivery .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-thanks-delivery .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.dp-thanks-delivery .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-thanks-delivery .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.dp-thanks-delivery h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 16px;
}
.dp-thanks-delivery h3 em { font-style: italic; color: var(--gold); }
.dp-thanks-delivery .note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin: 16px 0 0;
}
.dp-thanks-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 32px;
  background: var(--gold);
  color: var(--void);
  border: 1px solid var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}
.dp-thanks-download::after { content: "↓"; }
.dp-thanks-download:hover {
  background: var(--void);
  color: var(--gold);
  text-decoration: none;
  box-shadow: 0 0 28px rgba(201,168,76,0.4);
}

/* Timeline */
.dp-thanks-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.dp-thanks-timeline-cell {
  border: 1px solid var(--gold-faint);
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(201,168,76,0.03), rgba(0,0,0,0.18));
  position: relative;
}
.dp-thanks-timeline-cell .corner { position: absolute; width: 8px; height: 8px; border: 1px solid var(--gold-soft); }
.dp-thanks-timeline-cell .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-thanks-timeline-cell .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-thanks-timeline-cell .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.dp-thanks-timeline-cell .when {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.dp-thanks-timeline-cell h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ivory);
  margin: 0 0 8px;
}
.dp-thanks-timeline-cell p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 36ch;
}

/* Cross-sell */
.dp-cross-sell {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--gold-faint);
  background: linear-gradient(180deg, rgba(201,168,76,0.04), rgba(0,0,0,0.2));
  padding: 28px 32px;
  position: relative;
  margin-top: 32px;
}
.dp-cross-sell::before {
  content: "WHILE YOU WAIT // BOOK 1";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gold);
}
.dp-cross-sell .corner { position: absolute; width: 10px; height: 10px; border: 1px solid var(--gold-soft); }
.dp-cross-sell .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.dp-cross-sell .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.dp-cross-sell-cover {
  width: 180px;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--gold-faint);
  background:
    repeating-linear-gradient(135deg, rgba(201,168,76,0.06) 0 12px, rgba(201,168,76,0.12) 12px 13px),
    var(--void-2);
  box-shadow: 0 18px 32px -16px rgba(0,0,0,0.6);
  transform: rotate(-1.2deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-align: center;
  padding: 12px;
}
.dp-cross-sell-cover img { width: 100%; height: 100%; object-fit: cover; }
.dp-cross-sell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 10px;
}
.dp-cross-sell h3 em { font-style: italic; color: var(--gold); }
.dp-cross-sell p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 56ch;
}
.dp-cross-sell-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
}
.dp-cross-sell-btn::after { content: "→"; }
.dp-cross-sell-btn:hover {
  background: var(--gold);
  color: var(--void);
  text-decoration: none;
  box-shadow: 0 0 24px rgba(201,168,76,0.35);
}

/* Social chips */
.dp-social-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.dp-social-chips a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--gold-faint);
  color: var(--ivory);
  background: rgba(20,20,20,0.5);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
}
.dp-social-chips a::after {
  content: "→";
  color: var(--gold);
  margin-left: 6px;
}
.dp-social-chips a:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
  background: rgba(201,168,76,0.06);
}
.dp-social-chips a .plat {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}

/* Cohort placeholder */
.dp-cohort-pending {
  border: 1px dashed var(--gold-soft);
  background: rgba(201,168,76,0.04);
  padding: 24px 28px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  position: relative;
}
.dp-cohort-pending::before {
  content: "PENDING · cohort";
  position: absolute;
  top: -1px; left: 22px; transform: translateY(-50%);
  background: var(--void);
  padding: 0 10px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.24em; color: var(--gold);
}
.dp-cohort-pending h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 6px;
}
.dp-cohort-pending p {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ivory-mute);
  margin: 0;
  max-width: 56ch;
}

/* Responsive */
@media (max-width: 900px) {
  .dp-hero-grid,
  .dp-author-grid,
  .dp-cross-sell { grid-template-columns: 1fr; gap: 28px; }
  .dp-thanks-timeline { grid-template-columns: 1fr; }
  .dp-cross-sell { text-align: center; justify-items: center; }
  .dp-cross-sell-cover { transform: none; }
  .dp-lm-preview { max-width: 280px; aspect-ratio: 3 / 4; padding: 22px; }
  .dp-credential-mini { grid-template-columns: 1fr 1fr 1fr; }
  .dp-cohort-pending { grid-template-columns: 1fr; }
  body.dp-page .dp-section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .dp-credential-mini { grid-template-columns: 1fr; }
  .dp-credential-mini .cell { border-right: 0; border-bottom: 1px solid var(--gold-faint); }
  .dp-credential-mini .cell:last-child { border-bottom: 0; }
  .dp-stripped-footer .row { flex-direction: column; gap: 12px; text-align: center; }
}

/* Light theme overrides */
[data-theme="light"] .dp-hero-form,
[data-theme="light"] .dp-lm-preview,
[data-theme="light"] .dp-veteran,
[data-theme="light"] .dp-cross-sell,
[data-theme="light"] .dp-thanks-delivery,
[data-theme="light"] .dp-thanks-timeline-cell,
[data-theme="light"] .dp-social-chips a {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(31,26,20,0.025));
}
[data-theme="light"] .dp-cohort-pending { background: rgba(139,111,36,0.06); }
[data-theme="light"] .dp-headshot { background: rgba(255,255,255,0.4); }
[data-theme="light"] .dp-form-row input[type="email"] { background: rgba(255,255,255,0.6); }




/* =====================================================================
   UX POLISH LAYER — site-wide affordances (07.2026)
   ===================================================================== */
::selection { background: var(--gold); color: var(--void); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
a, button, summary { touch-action: manipulation; }
h1, h2, h3, h4, .h-section, .h-display { text-wrap: balance; }
p, li, .lede { text-wrap: pretty; }
summary { user-select: none; }
html { scroll-padding-top: 76px; scrollbar-color: var(--gold-faint) var(--void); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
/* Mobile: nav links scroll instead of clipping; bigger tap targets */
@media (max-width: 768px) {
  .tac-header .nav { overflow-x: auto; scrollbar-width: none; }
  .tac-header .nav::-webkit-scrollbar { display: none; }
  .tac-header .nav a { padding: 0 14px; white-space: nowrap; }
}

/* Books dropdown (nav) */
.nav .nav-drop { position: relative; display: inline-block; }
.nav .nav-drop .drop {
  display: none; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--void-2, #111); border: 1px solid var(--gold-faint);
  padding: 6px 0; z-index: 60;
}
.nav .nav-drop:hover .drop, .nav .nav-drop:focus-within .drop { display: block; }
.nav .nav-drop .drop a { display: block; padding: 9px 16px; white-space: nowrap; }
