/* ============================================================
   Mobile Home AI Lead Machine Guide, 2026 AI Lead Gen Guide
   Lead Systems Go brand. Orange #FF6210, Outfit + Source Sans 3.
   Web-first, print-clean for PDF export.
   ============================================================ */

:root {
  --brand: #FF6210;
  --brand-light: #FF8A4C;
  --brand-dark: #CC4E0D;
  --brand-tint: #FFF5EE;
  --brand-tint-2: #FFFBF7;
  --dark-bg: #141210;
  --dark-surface: #1C1917;
  --light-bg: #F9FAFB;
  --paper: #FFFFFF;
  --accent: #0EA5E9;
  --success: #12B76A;
  --text: #1D2939;
  --text-soft: #475467;
  --text-light: #9CA3AF;
  --border: #E5E5E5;
  --border-soft: #F3F4F6;
  --header-h: 72px;
  --max-w: 740px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-bg);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin: 0 0 1.1em; }

strong { font-weight: 700; color: var(--text); }

/* ============================================================
   PASSWORD GATE
   ============================================================ */
/* Belt rule: ensure the [hidden] HTML attribute always wins over
   any author-rule display value. Without this, .password-gate's
   display: flex below would override [hidden]'s display: none. */
[hidden] { display: none !important; }

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  padding: 24px;
}
.password-gate::before,
.password-gate::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
}
.password-gate::before { top: 0; }
.password-gate::after { bottom: 0; }

.gate-card {
  background: var(--dark-surface);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  color: #F9FAFB;
}

.gate-eyebrow {
  font-family: 'Outfit', sans-serif;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 12px;
}

.gate-title {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.gate-subtitle {
  color: var(--brand-light);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 32px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gate-form label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
.gate-form input {
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  border-radius: 8px;
  transition: border 0.2s ease;
}
.gate-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.gate-form input:focus {
  outline: none;
  border-color: var(--brand);
}

.gate-submit {
  padding: 14px 24px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease;
}
.gate-submit:hover { background: var(--brand-dark); }

.gate-error {
  color: #F87171;
  font-size: 14px;
  margin: 8px 0 0;
}

.gate-footer {
  margin: 28px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.gate-footer a { color: var(--brand-light); }

@media (max-width: 480px) {
  .gate-card { padding: 36px 24px; }
  .gate-title { font-size: 24px; }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--brand);
  z-index: 1000;
  transition: width 0.1s ease-out;
  width: 0;
}

/* ============================================================
   HEADER (canonical leadsystemsgo.com site header)
   The gate JS toggles `hidden` on #site-header to reveal it
   after unlock. Class `.header` matches the main marketing site.
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  flex-shrink: 0;
}
.header__logo:hover { text-decoration: none; }

.header__logo-lead {
  background: #FFFFFF;
  color: var(--dark-bg);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  margin-right: 8px;
}

.header__logo-systems {
  font-weight: 800;
  font-style: italic;
  font-size: 1rem;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.header__logo-go {
  font-weight: 700;
  font-size: 0.625rem;
  color: #FFFFFF;
  margin-left: 4px;
  align-self: flex-end;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  text-decoration: none;
}
.header__nav a:hover { text-decoration: none; }

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--brand);
  transition: width 250ms ease;
}
.header__nav a:hover::after { width: 100%; }

.header__phone {
  display: none;
  color: #9CA3AF;
  font-size: 0.875rem;
  font-family: 'Space Grotesk', sans-serif;
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__phone { display: block; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background-color: var(--brand);
  color: #FFFFFF;
  padding: 12px 24px;
}
.btn--primary:hover {
  background-color: var(--brand-light);
  box-shadow: 0 8px 24px rgba(255, 98, 16, 0.15);
}

.btn--nav {
  padding: 8px 20px;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 9999px;
  transition: transform 250ms ease, opacity 250ms ease;
}
.hamburger.active span:first-child { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:last-child { transform: rotate(-45deg) translateY(-7px); }

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 18, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.mobile-nav.active { opacity: 1; pointer-events: auto; }

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 150ms ease;
}
.mobile-nav a:hover { color: var(--brand); text-decoration: none; }

/* ============================================================
   READER LAYOUT
   ============================================================ */
.reader {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px 80px;
  background: var(--paper);
  min-height: calc(100vh - var(--header-h));
}

@media (min-width: 900px) {
  .reader {
    padding: 72px 64px 100px;
    box-shadow: 0 0 60px rgba(0,0,0,0.04);
  }
}

/* ============================================================
   COVER
   ============================================================ */
.cover {
  text-align: center;
  padding: 24px 0 64px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 48px;
}

.cover-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin: 0 0 24px;
}

.cover-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--dark-bg);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.cover-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 600px;
  line-height: 1.3;
}

.cover-tagline {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.cover-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cover-tag {
  display: inline-block;
  background: var(--brand-tint);
  color: var(--brand-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  margin: 56px 0;
}

.section-welcome {
  margin-top: 0;
  padding: 32px;
  background: var(--brand-tint-2);
  border-radius: 12px;
  border-left: 4px solid var(--brand);
}

.section-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin: 0 0 12px;
}

.section-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-tint);
  border-radius: 4px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-bg);
  margin: 12px 0 28px;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--dark-bg);
}

.prose p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}

.prose .lead-paragraph {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--dark-bg);
  border-left: 4px solid var(--brand);
  padding: 4px 0 4px 20px;
  margin: 28px 0 28px;
}

.numbered-list {
  padding-left: 24px;
  margin: 20px 0 28px;
}
.numbered-list li {
  margin-bottom: 14px;
  padding-left: 8px;
  font-size: 18px;
  line-height: 1.65;
}
.numbered-list li::marker {
  color: var(--brand);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

/* ============================================================
   PART DIVIDERS
   ============================================================ */
.part-divider {
  text-align: center;
  padding: 80px 0 40px;
  margin: 64px 0 0;
  border-top: 1px solid var(--border-soft);
}

.part-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin: 0 0 12px;
}

.part-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: var(--dark-bg);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.part-tagline {
  font-size: 18px;
  color: var(--text-soft);
  font-style: italic;
  margin: 0;
}

/* ============================================================
   PERSONA CARDS (Dan vs Pat)
   ============================================================ */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 32px;
}

.persona-card {
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.persona-card .persona-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 6px;
  opacity: 0.7;
}

.persona-card .persona-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 4px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.persona-card .persona-stat {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}

.persona-card .persona-desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.persona-dan {
  background: #F5F4F2;
  border-color: #E5E2DD;
}
.persona-dan .persona-eyebrow { color: #6B7280; }
.persona-dan .persona-name { color: #374151; }
.persona-dan .persona-stat { background: #E5E2DD; color: #6B7280; }
.persona-dan .persona-desc { color: #4B5563; }

.persona-pat {
  background: linear-gradient(135deg, var(--brand-tint) 0%, var(--brand-tint-2) 100%);
  border-color: var(--brand-light);
}
.persona-pat .persona-eyebrow { color: var(--brand-dark); }
.persona-pat .persona-name { color: var(--dark-bg); }
.persona-pat .persona-stat { background: var(--brand); color: white; }
.persona-pat .persona-desc { color: var(--text); }

@media (max-width: 600px) {
  .persona-grid { grid-template-columns: 1fr; }
}

.callout-end-part {
  background: var(--dark-bg);
  border-left: 4px solid var(--brand);
  color: white;
  padding: 26px 28px;
  margin: 36px 0;
  border-radius: 0 12px 12px 0;
}
.callout-end-part .callout-eyebrow { color: var(--brand-light); }
.callout-end-part p { color: white; font-size: 16px; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.compare-table thead th {
  background: var(--dark-bg);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.compare-table thead th:first-child {
  background: var(--dark-surface);
}

.compare-table tbody td:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-soft);
  background: var(--brand-tint-2);
  font-size: 14px;
}

.compare-table tbody td:last-child {
  background: var(--brand-tint);
  font-weight: 600;
  color: var(--brand-dark);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   FUNNEL DIAGRAM
   ============================================================ */
.funnel-diagram {
  margin: 32px 0;
  padding: 28px 24px;
  background: var(--dark-bg);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.funnel-step {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 4px 12px rgba(255, 98, 16, 0.2);
}

.funnel-num {
  background: rgba(255,255,255,0.2);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.funnel-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.funnel-desc {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

.funnel-arrow {
  color: var(--brand-light);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 600px) {
  .funnel-step { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ============================================================
   CALLOUT (Investor's Notebook style)
   ============================================================ */
.callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--brand-tint-2);
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
}

.callout-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-dark);
  margin: 0 0 10px;
}

.callout p:last-child { margin-bottom: 0; }
.callout p { font-size: 17px; }

/* ============================================================
   SOFT CTA BLOCKS
   ============================================================ */
.cta-soft {
  margin: 48px 0;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
}

.cta-soft .cta-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-light);
  margin: 0 0 10px;
}

.cta-soft .cta-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin: 0 0 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-soft .cta-fineprint {
  font-size: 13px;
  color: var(--text-light);
  margin: 14px 0 0;
}

.cta-button {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 0 4px 12px rgba(255, 98, 16, 0.3);
}
.cta-button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 98, 16, 0.4);
  text-decoration: none;
}

.cta-button-secondary {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  box-shadow: none;
}
.cta-button-secondary:hover {
  background: var(--brand);
  color: white;
}

.cta-button-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* v4 Playbook CTA variant, lighter style */
.cta-soft-v4 {
  background: var(--brand-tint);
  color: var(--text);
}
.cta-soft-v4 .cta-eyebrow { color: var(--brand-dark); }
.cta-soft-v4 .cta-headline { color: var(--text); }

/* ============================================================
   FINAL CTA (back matter)
   ============================================================ */
.cta-final {
  text-align: center;
  margin: 32px 0;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--brand-tint) 0%, var(--brand-tint-2) 100%);
  border-radius: 12px;
  border: 1px solid var(--brand-light);
}

.cta-final-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-bg);
  margin: 0 0 24px;
}

.cta-final-subline {
  font-size: 15px;
  color: var(--text-soft);
  margin: 18px 0 0;
}

/* ============================================================
   ABOUT (two-column)
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.two-col h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-family: 'Outfit', sans-serif;
}
.two-col p { font-size: 15px; line-height: 1.6; }

@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTNOTES
   ============================================================ */
sup.fn {
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  margin-left: 1px;
}

.footnotes {
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}
.footnotes li {
  margin-bottom: 12px;
}
.footnotes a {
  color: var(--brand-dark);
  word-break: break-word;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  background: var(--dark-bg);
  color: var(--text-light);
  font-size: 13px;
}
.site-footer a { color: var(--brand-light); }

/* ============================================================
   PRINT STYLES (PDF EXPORT)
   ============================================================ */
@page {
  size: letter;
  margin: 0.6in 0.7in;
}

@media print {

  body {
    background: white;
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
  }

  .progress-bar,
  .header,
  .mobile-nav,
  .site-footer,
  .password-gate {
    display: none !important;
  }

  .reader {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
    background: white;
  }

  /* Page breaks */
  .cover { page-break-after: always; padding: 1in 0; min-height: 8in; }
  .part-divider { page-break-before: always; padding: 1in 0 0.6in; border-top: none; }
  .section { page-break-inside: avoid; margin: 24pt 0; }
  .section h2.section-title { page-break-after: avoid; }
  .section h3 { page-break-after: avoid; }
  .callout, .funnel-diagram, .compare-table, .cta-soft { page-break-inside: avoid; }

  /* Type scale */
  .cover-title { font-size: 56pt; line-height: 1; }
  .cover-subtitle { font-size: 18pt; }
  .cover-tagline { font-size: 13pt; color: #444; }
  .cover-tag { background: #FFF5EE; color: #CC4E0D; font-size: 9pt; }

  .part-title { font-size: 40pt; }
  .part-tagline { font-size: 13pt; }

  .section-title { font-size: 22pt; line-height: 1.15; color: #000; }
  .section-num { background: #FFF5EE; color: #CC4E0D; font-size: 10pt; }
  .prose h3 { font-size: 14pt; color: #000; }
  .prose p { font-size: 11pt; line-height: 1.55; color: #1D2939; }
  .prose .lead-paragraph { font-size: 13pt; line-height: 1.45; }

  /* CTAs convert to plain text + url for print */
  .cta-soft, .cta-final {
    background: #FFF5EE !important;
    color: #1D2939 !important;
    border: 1px solid #FF8A4C;
    padding: 16pt 18pt;
    margin: 18pt 0;
  }
  .cta-soft .cta-eyebrow,
  .cta-soft .cta-headline {
    color: #1D2939 !important;
  }
  .cta-button {
    background: transparent !important;
    color: #CC4E0D !important;
    border: 2px solid #CC4E0D;
    box-shadow: none !important;
    padding: 8pt 16pt;
    font-size: 11pt;
  }
  .cta-button-large { font-size: 12pt; padding: 10pt 20pt; }

  /* Print URLs after links inside CTAs */
  .cta-button[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #888;
    font-weight: 400;
  }

  /* Funnel diagram print fallback */
  .funnel-diagram {
    background: #1C1917 !important;
    color: white !important;
    padding: 14pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .funnel-step {
    background: #FF6210 !important;
    color: white !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Tables */
  .compare-table { font-size: 10pt; }
  .compare-table thead th { background: #1C1917 !important; color: white !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .compare-table tbody td:first-child { background: #FFFBF7 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .compare-table tbody td:last-child { background: #FFF5EE !important; color: #CC4E0D !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* Welcome */
  .section-welcome { background: #FFFBF7 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; padding: 16pt; }

  /* Callouts */
  .callout { background: #FFFBF7 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; padding: 12pt 16pt; }

  /* Footnotes */
  .footnotes { font-size: 9pt; line-height: 1.45; }
  sup.fn { color: #CC4E0D; }

  /* No widows/orphans */
  p { widows: 3; orphans: 3; }
  h1, h2, h3 { widows: 4; orphans: 4; }

  /* Print URLs after general links (but not CTA buttons or footnote links) */
  a[href]:not(.cta-button):not(.footnotes a):not(.header__logo) {
    color: #CC4E0D;
  }
}
