/* ========================================
   MENTAL LOAD INDEX — PRINTABLE REPORT
   Extends beta design tokens from styles-beta.css
   ======================================== */

.report-page {
  background: var(--color-light-cream);
}

/* ---------- Sticky chrome (header + toolbar) ---------- */
/* Stack header and toolbar as one sticky unit so Print/Download
   stay below .site-header instead of sliding under it at top: 0. */
.report-chrome {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.report-page .report-chrome .site-header {
  position: static;
}

/* ---------- Screen toolbar ---------- */
.report-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-light);
}

.report-toolbar-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  min-width: 0;
}

.report-toolbar-back {
  font-size: var(--font-size-body-reduced-tight);
  font-weight: 500;
  color: var(--color-deep-indigo);
  text-decoration: none;
  white-space: nowrap;
}

.report-toolbar-back:hover {
  color: var(--color-royal-blue);
}

.report-toolbar-label {
  font-size: var(--font-size-caption);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.report-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.report-print-btn,
.report-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-family: var(--font-family);
  font-size: var(--font-size-body-reduced-tight);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.report-print-btn {
  border: none;
  background: var(--color-deep-indigo-cta);
  color: var(--color-white);
}

.report-print-btn:hover {
  background: var(--color-deep-indigo);
}

.report-download-btn {
  border: 1.5px solid var(--color-deep-indigo-cta);
  background: transparent;
  color: var(--color-deep-indigo);
}

.report-download-btn:hover {
  background: var(--color-deep-indigo-light);
  border-color: var(--color-deep-indigo);
  color: var(--color-deep-indigo);
}

/* ---------- Document stage (screen) ---------- */
.report-stage {
  padding: clamp(32px, 5vw, 64px) 16px clamp(80px, 10vw, 120px);
}

.report-document {
  width: min(100%, 8.5in);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.report-sheet {
  position: relative;
  width: 8.5in;
  max-width: 100%;
  height: 11in;
  min-height: 11in;
  max-height: 11in;
  box-sizing: border-box;
  background: var(--color-page-bg);
  border-radius: 4px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(59, 47, 160, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.report-sheet--cover {
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(87, 80, 193, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(44, 168, 164, 0.16), transparent 50%),
    linear-gradient(165deg, #FEFDFB 0%, #F9F5EB 45%, #E7E4FF 100%);
}

.report-sheet-body {
  flex: 1;
  padding: 0.65in 0.7in 0.85in;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-sizing: border-box;
  overflow: hidden;
}

.report-sheet--cover .report-sheet-body {
  padding: 0.8in 0.75in 0.9in;
  justify-content: space-between;
}

.report-sheet-footer {
  position: absolute;
  left: 0.7in;
  right: 0.7in;
  bottom: 0.38in;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-gray-2);
  border-top: 1px solid var(--color-gray-light);
  padding-top: 10px;
}

.report-sheet--cover .report-sheet-footer {
  border-top: none;
  color: var(--color-gray);
}

.report-page-num::before {
  content: none;
}

/* ---------- Typography ---------- */
.report-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-deep-indigo);
}

.report-cover-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.report-cover-logo {
  height: 28px;
  width: auto;
}

.report-cover-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray);
}

.report-cover-main {
  max-width: 6.4in;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 1.2in;
}

.report-cover-title {
  font-family: 'Nunito Sans', var(--font-family);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.report-cover-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-deep-indigo);
  max-width: 5.8in;
}

.report-cover-lede {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray);
  max-width: 5.5in;
}

.report-cover-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 0.35in;
}

.report-cover-compiled {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
}

.report-section-rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--color-deep-indigo-cta);
  margin-bottom: 10px;
}

.report-section-rule--indigo { background: var(--color-deep-indigo); }
.report-section-rule--royal { background: var(--color-royal-blue); }
.report-section-rule--teal { background: var(--color-teal); }
.report-section-rule--coral { background: var(--color-coral-pink); }
.report-section-rule--orange { background: var(--color-orange); }

.report-section-title {
  font-family: 'Nunito Sans', var(--font-family);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-black);
  margin: 0;
}

.report-lead {
  font-family: 'Nunito Sans', var(--font-family);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-black);
  margin: 0;
  max-width: 6.2in;
}

.report-divider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  min-height: 100%;
  padding: 1.4in 0;
}

.report-divider-number {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-deep-indigo);
}

.report-divider-title {
  font-family: 'Nunito Sans', var(--font-family);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  max-width: 5.5in;
}

.report-divider-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-gray);
  max-width: 5.2in;
}

.report-prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-black);
  max-width: 6.4in;
}

.report-prose p {
  margin: 0;
}

.report-prose strong {
  font-weight: 700;
}

.report-h3 {
  font-family: 'Nunito Sans', var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  margin: 4px 0 0;
  color: var(--color-black);
}

.report-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.report-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Pull quotes & callouts ---------- */
.report-pull-quote {
  margin: 0;
  padding: 8px 0 8px 18px;
  border-left: 2px solid var(--color-deep-indigo);
}

.report-pull-quote p {
  margin: 0;
  font-family: 'Nunito Sans', var(--font-family);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.35;
  color: var(--color-deep-indigo);
}

.report-pull-quote--royal {
  border-left-color: var(--color-royal-blue);
}

.report-pull-quote--royal p {
  color: #122863;
}

.report-pull-quote--teal {
  border-left-color: var(--color-teal);
}

.report-pull-quote--teal p {
  color: #1a5c59;
}

.report-pull-quote--coral {
  border-left-color: var(--color-coral-pink);
}

.report-pull-quote--coral p {
  color: #8b3d38;
}

.report-callout {
  margin: 0;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.report-callout p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-white);
}

.report-callout--indigo { background: var(--color-deep-indigo); }
.report-callout--royal { background: var(--color-royal-blue); }
.report-callout--teal { background: var(--color-teal); }
.report-callout--coral { background: var(--color-coral-pink); }
.report-callout--orange { background: var(--color-orange); }

.report-callout--peach {
  background: var(--color-peach-callout);
}

.report-callout--peach p {
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.4;
}

.report-callout-cite {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.report-callout--peach .report-callout-cite {
  opacity: 0.7;
  color: var(--color-gray);
}

/* ---------- Stats bubbles (reuse homepage pattern) ---------- */
.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.report-stats--2 {
  grid-template-columns: repeat(2, 1fr);
}

.report-stat {
  --report-stat-bg: var(--color-deep-indigo-cta);
  --report-stat-ellipse: #4d47b0;
  position: relative;
  min-height: 118px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--report-stat-bg);
}

.report-stat--teal {
  --report-stat-bg: var(--color-teal);
  --report-stat-ellipse: #279a96;
}

.report-stat--coral {
  --report-stat-bg: var(--color-coral-pink);
  --report-stat-ellipse: #e66b63;
}

.report-stat--orange {
  --report-stat-bg: var(--color-orange);
  --report-stat-ellipse: #e57f35;
}

.report-stat--royal {
  --report-stat-bg: var(--color-royal-blue);
  --report-stat-ellipse: #3a5fd0;
}

.report-stat--indigo {
  --report-stat-bg: var(--color-deep-indigo);
  --report-stat-ellipse: #352990;
}

.report-stat-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding: 16px 18px;
}

.report-stat-value {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
}

.report-stat-label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  max-width: 90%;
}

.report-stat::after {
  content: '';
  position: absolute;
  right: -28px;
  top: -28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--report-stat-ellipse);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Framework steps (Daminger) ---------- */
.report-framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.report-framework-step {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 148px;
}

.report-framework-step:nth-child(1) { border-top: 3px solid var(--color-deep-indigo); }
.report-framework-step:nth-child(2) { border-top: 3px solid var(--color-royal-blue); }
.report-framework-step:nth-child(3) { border-top: 3px solid var(--color-teal); }
.report-framework-step:nth-child(4) { border-top: 3px solid var(--color-coral-pink); }

.report-framework-num {
  width: 24px;
  height: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  background: var(--color-deep-indigo-light);
  color: var(--color-deep-indigo);
}

.report-framework-step:nth-child(2) .report-framework-num {
  background: #d4e2ff;
  color: var(--color-royal-blue);
}

.report-framework-step:nth-child(3) .report-framework-num {
  background: rgba(44, 168, 164, 0.18);
  color: #1a5c59;
}

.report-framework-step:nth-child(4) .report-framework-num {
  background: rgba(238, 119, 111, 0.2);
  color: #8b3d38;
}

.report-framework-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.report-framework-text {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-gray);
}

/* ---------- Comparison bars ---------- */
.report-compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
}

.report-compare-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.report-bar-row {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  gap: 10px;
  align-items: center;
}

.report-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
}

.report-bar-track {
  height: 14px;
  border-radius: 999px;
  background: var(--color-gray-light);
  overflow: hidden;
}

.report-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.report-bar-fill--mothers {
  width: 71%;
  background: var(--color-deep-indigo);
}

.report-bar-fill--fathers {
  width: 45%;
  background: var(--color-teal);
}

.report-bar-value {
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  color: var(--color-black);
}

.report-compare-note {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-gray);
}

/* ---------- Beside layout (prose + stacked split cards) ---------- */
.report-beside {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.report-beside-copy {
  margin: 0;
}

.report-beside-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- Split card infographic ---------- */
.report-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.report-split--stack {
  grid-template-columns: 1fr;
  gap: 10px;
  height: 100%;
}

.report-split-card {
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}

.report-split--stack .report-split-card {
  min-height: 0;
  flex: 1;
  padding: 12px 14px;
  gap: 6px;
}

.report-split-card--cream {
  background: var(--color-light-cream);
  border: 1px solid var(--color-gray-light);
}

.report-split-card--indigo {
  background: var(--color-deep-indigo-light);
}

.report-split-card h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.report-split--stack .report-split-card h4 {
  font-size: 12px;
  line-height: 1.2;
}

.report-split-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-gray);
}

.report-split--stack .report-split-card p {
  font-size: 11px;
  line-height: 1.4;
}

.report-split-card--indigo p {
  color: #3b3470;
}

/* ---------- Hours gap visual ---------- */
.report-hours {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.report-hours-hero {
  --report-stat-ellipse: #e66b63;
  background: var(--color-coral-pink);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.report-hours-hero::after {
  content: '';
  position: absolute;
  right: -28px;
  top: -28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--report-stat-ellipse);
  z-index: 0;
  pointer-events: none;
}

.report-hours-value {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.report-hours-label {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.report-hours-detail {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.report-hours-detail p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-gray);
}

.report-hours-detail strong {
  color: var(--color-black);
}

/* ---------- Cost trio ---------- */
.report-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.report-cost-card {
  border-radius: var(--radius-md);
  padding: 16px 14px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-cost-card--mental {
  background: var(--color-deep-indigo);
  color: var(--color-white);
}

.report-cost-card--econ {
  background: var(--color-teal);
  color: var(--color-white);
}

.report-cost-card--civic {
  background: var(--color-royal-blue);
  color: var(--color-white);
}

.report-cost-eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.report-cost-value {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.report-cost-text {
  margin: 0;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
}

/* ---------- Sources ---------- */
.report-sources {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: source;
}

.report-sources li {
  counter-increment: source;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-light);
}

.report-sources li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.report-source-num {
  width: 24px;
  height: 24px;
  border-radius: 20px;
  background: var(--color-deep-indigo-light);
  color: var(--color-deep-indigo);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-source-num::before {
  content: counter(source);
}

.report-source-body {
  min-width: 0;
}

.report-source-title {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-black);
}

.report-source-title a {
  color: var(--color-royal-blue);
  text-decoration: none;
}

.report-source-title a:hover {
  text-decoration: underline;
}

.report-source-meta {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-gray);
}

.report-source-meta a {
  color: var(--color-royal-blue);
  text-decoration: none;
  word-break: break-all;
}

.report-source-meta a:hover {
  text-decoration: underline;
}

/* ---------- Manifesto believe cards ---------- */
.report-believe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.report-believe-card {
  background: var(--color-deep-indigo);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}

.report-believe-card--wide {
  grid-column: 1 / -1;
}

.report-believe-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
}

.report-believe-text {
  margin: 0;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.report-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.report-toc-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-light);
  text-decoration: none;
  color: inherit;
}

.report-toc-item:last-child {
  border-bottom: none;
}

.report-toc-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  width: 1.5rem;
}

.report-toc-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.report-toc-dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-gray-light);
  transform: translateY(-4px);
  min-width: 24px;
}

.report-toc-page {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray);
}

/* ---------- Screen responsive ---------- */
@media (max-width: 720px) {
  .report-stage {
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: auto;
  }

  .report-document {
    width: 8.5in;
    max-width: none;
  }

  .report-sheet,
  .report-sheet--cover {
    width: 8.5in;
    height: 11in;
    min-height: 11in;
    max-height: 11in;
    max-width: none;
  }

  .report-toolbar-label {
    display: none;
  }
}

/* ========================================
   PRINT — US Letter PDF
   ======================================== */
@media print {
  @page {
    size: letter;
    margin: 0;
  }

  html,
  body.report-page {
    background: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .site-header,
  .promo-banner,
  .header,
  .footer,
  .report-chrome,
  .report-toolbar,
  .waitlist-modal,
  .resource-download-modal,
  noscript {
    display: none !important;
  }

  .report-stage {
    padding: 0;
    margin: 0;
  }

  .report-document {
    width: 100%;
    max-width: none;
    gap: 0;
    margin: 0;
  }

  .report-sheet {
    width: 8.5in;
    height: 11in;
    min-height: 11in;
    max-height: 11in;
    max-width: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    page-break-after: always;
    break-after: page;
    break-inside: avoid;
    /* Global section fade-in must never blank printed sheets */
    opacity: 1 !important;
    transform: none !important;
  }

  .report-sheet:last-child {
    page-break-after: auto;
    break-after: auto;
  }

  .report-sheet--cover {
    background:
      radial-gradient(ellipse 90% 60% at 100% 0%, rgba(87, 80, 193, 0.18), transparent 55%),
      radial-gradient(ellipse 70% 50% at 0% 100%, rgba(44, 168, 164, 0.16), transparent 50%),
      linear-gradient(165deg, #FEFDFB 0%, #F9F5EB 45%, #E7E4FF 100%) !important;
  }

  .report-sheet-body {
    padding: 0.65in 0.7in 0.9in;
  }

  .report-sheet--cover .report-sheet-body {
    padding: 0.8in 0.75in 0.9in;
  }

  .report-sheet-footer {
    position: absolute;
    left: 0.7in;
    right: 0.7in;
    bottom: 0.38in;
  }

  .report-source-title a,
  .report-source-meta a {
    color: var(--color-gray) !important;
    text-decoration: none;
  }

  a[href]::after {
    content: none !important;
  }

  .report-stat,
  .report-callout,
  .report-hours-hero,
  .report-cost-card,
  .report-framework-step,
  .report-split-card,
  .mission-believe-card,
  .mission-callout,
  .mission-image {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ========================================
   MANIFESTO LETTER LAYOUT
   Reuses mission page components, scaled for Letter
   ======================================== */
.manifesto-print .manifesto-body {
  gap: 14px;
  padding-bottom: 0.95in;
}

.manifesto-print .mission-row.manifesto-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  max-width: none;
  margin: 0;
  padding: 0;
}

.manifesto-print .mission-col {
  min-width: 0;
}

.manifesto-print .mission-col-media {
  order: 0;
}

.manifesto-print .mission-image {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.manifesto-print .mission-image img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

.manifesto-print .mission-section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.manifesto-print .mission-rule {
  transform: scaleX(1);
  width: 56px;
}

.manifesto-print .mission-intro {
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}

.manifesto-print .mission-section-title {
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
}

.manifesto-print .mission-prose,
.manifesto-print .mission-prose--continuation {
  gap: 10px;
  font-size: 11.5px;
  line-height: 1.5;
}

.manifesto-print .mission-pull-quote {
  padding: 6px 0 6px 14px;
  margin-top: 4px;
}

.manifesto-print .mission-pull-quote p {
  font-size: 14px;
  line-height: 1.35;
}

.manifesto-print .mission-pull-quote--large p {
  font-size: 16px;
}

.manifesto-print .mission-callout {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin: 0;
}

.manifesto-print .mission-callout--impact {
  padding: 18px 20px;
}

.manifesto-print .mission-callout p,
.manifesto-print .mission-callout--impact p {
  font-size: 16px;
  line-height: 1.25;
}

.manifesto-print .mission-believe.manifesto-believe {
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}

.manifesto-print .mission-believe-header {
  gap: 10px;
  text-align: left;
  align-items: flex-start;
  margin: 0;
  max-width: none;
}

.manifesto-print .mission-believe-title {
  font-size: 28px;
  line-height: 1.1;
}

.manifesto-print .mission-believe-intro {
  font-size: 12px;
  line-height: 1.45;
  max-width: none;
  text-align: left;
}

.manifesto-print .mission-believe-grid.manifesto-believe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-content: stretch;
}

.manifesto-print .mission-believe-card {
  flex: none;
  width: 100%;
  max-width: none;
  min-height: 0;
  padding: 16px 14px;
  gap: 8px;
  border-radius: var(--radius-md);
}

.manifesto-print .mission-believe-card:nth-child(5) {
  grid-column: 1 / -1;
}

.manifesto-print .mission-believe-card-title {
  font-size: 14px;
  line-height: 1.25;
}

.manifesto-print .mission-believe-card-text {
  font-size: 11px;
  line-height: 1.4;
}

.manifesto-print .mission-reveal {
  opacity: 1;
  transform: none;
}

/* ========================================
   PDF VIEWER PAGE (embed same file as Download)
   ======================================== */
.pdf-viewer-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-light-cream);
}

.pdf-viewer-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: 100vw;
  padding: 0 0 16px;
  box-sizing: border-box;
}

.pdf-viewer-frame-wrap {
  flex: 1;
  width: 100%;
  min-height: calc(100vh - 180px);
  padding: 0 clamp(8px, 1.5vw, 16px);
  box-sizing: border-box;
}

.pdf-viewer-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 180px);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.pdf-viewer-fallback {
  margin: 12px 0 0;
  padding: 0 16px;
  font-size: var(--font-size-body-reduced-tight);
  font-weight: 500;
  color: var(--color-gray);
  text-align: center;
}

.pdf-viewer-fallback a {
  color: var(--color-deep-indigo);
}

@media print {
  .pdf-viewer-page .site-header,
  .pdf-viewer-page .report-chrome,
  .pdf-viewer-page .report-toolbar,
  .pdf-viewer-fallback {
    display: none !important;
  }

  .pdf-viewer-main,
  .pdf-viewer-frame-wrap {
    padding: 0;
  }

  .pdf-viewer-frame {
    border: none;
    border-radius: 0;
    min-height: 100vh;
  }
}
