/* Preppr × MSI — Vertical Sales Field Kit
   Layout + components. Tokens come from assets/tokens.css (loaded first). */

* { box-sizing: border-box; }

html, body {
  background: var(--bg-alt);            /* paper-on-desk */
  color: var(--fg);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}
body { margin: 0; }

/* ============================================================
   APP FRAME — fixed navy sidebar + scrolling content
   ============================================================ */
.app { display: flex; min-height: 100vh; }

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: var(--bg-chrome);
  color: var(--fg-on-dark);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2xl);
  z-index: 50;
}
.sidebar__brand {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border-chrome);
}
.sidebar__brand img { height: 26px; width: auto; display: block; }
.sidebar__kicker {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-on-dark-muted); margin-top: 2px;
}
.sidebar__nav {
  flex: 1; overflow-y: auto; padding: 16px 14px 28px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.sidebar__nav::-webkit-scrollbar { width: 7px; }
.sidebar__nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

.nav-group__label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-on-dark-muted);
  padding: 18px 12px 8px;
}
.nav-link {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 12px; border-radius: var(--radius-md);
  color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 600; line-height: 1.25;
  text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease;
  position: relative;
}
.nav-link:hover { background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; }
.nav-link.is-active { background: rgba(255,255,255,0.10); color: #fff; }
.nav-link.is-active::before {
  content: ""; position: absolute; left: 0; top: 7px; bottom: 7px;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--ln, var(--preppr-green));
}
.nav-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ln, var(--preppr-green)); flex-shrink: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ln, var(--preppr-green)) 22%, transparent);
}
.nav-link svg { width: 17px; height: 17px; stroke-width: 2; flex-shrink: 0; color: rgba(255,255,255,0.7); }
.nav-link.is-active svg { color: #fff; }
.nav-num {
  margin-left: auto; font-size: 11px; font-weight: 700;
  color: var(--fg-on-dark-muted); font-variant-numeric: tabular-nums;
}

/* ============================================================
   CONTENT COLUMN
   ============================================================ */
.content {
  margin-left: 0;
  flex: 1;
  padding: 44px 40px 72px;
  display: flex; flex-direction: column; align-items: center;
}

/* Paper page */
.page {
  width: 100%; max-width: 816px;
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  margin: 0 auto 40px;
  padding: 64px 72px 72px;
  scroll-margin-top: 24px;
}

/* ============================================================
   COVER
   ============================================================ */
.cover {
  width: 100%; max-width: 816px;
  background: var(--bg-chrome);
  color: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-2xl);
  margin: 0 auto 40px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.cover__inner { padding: 56px 64px 60px; position: relative; z-index: 2; }
.cover__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 30px; margin-bottom: 40px;
  border-bottom: 1px solid var(--border-chrome);
}
.cover__logo { height: 30px; width: auto; }
.cover__partner {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-on-dark-muted); font-weight: 600;
  text-align: right; line-height: 1.5;
}
.cover__partner b { color: #fff; font-weight: 700; }
.cover__eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--preppr-green); font-weight: 700; margin-bottom: 18px;
}
.cover h1 {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1.02; font-weight: 700;
  color: #fff; margin: 0 0 20px; letter-spacing: -0.02em;
  max-width: 11ch;
}
.cover__lede {
  font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.82);
  max-width: 33ch; margin: 0 0 34px; position: relative; z-index: 3;
}
.cover__verticals {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; max-width: 500px;
  position: relative; z-index: 3;
}
.cover__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 12px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-chrome);
  font-size: 13px; font-weight: 600; color: #fff;
}
.cover__chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--ln); display: block; }
.cover__note {
  font-size: 12.5px; line-height: 1.6; color: var(--fg-on-dark-muted);
  max-width: 64ch; padding-top: 22px; border-top: 1px solid var(--border-chrome);
}
.cover__mascot {
  position: absolute; right: 18px; bottom: -6px; width: 224px;
  z-index: 1; opacity: 0.95;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.4));
  pointer-events: none;
}

/* ============================================================
   TYPE inside pages
   ============================================================ */
.page > h2, .sec-title {
  font-family: var(--font-display);
  font-size: 30px; line-height: 1.12; font-weight: 700;
  color: var(--fg-heading); letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.lede {
  font-size: 18px; line-height: 1.55; color: var(--fg-muted);
  margin: 0 0 8px; max-width: 62ch;
}
.page p { font-size: 15.5px; line-height: 1.62; color: var(--fg); margin: 0 0 14px; }
.page p:last-child { margin-bottom: 0; }

/* Page header (platform sections) */
.page-head {
  position: relative;
  padding-bottom: 20px; margin-bottom: 34px;
  border-bottom: 2px solid var(--border);
}
.page-head .eyebrow2 {
  position: relative; z-index: 1;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--preppr-green); margin-bottom: 10px;
}
.page-head .sec-title { position: relative; z-index: 1; margin: 0; }
.page-head__ghost {
  position: absolute; right: -2px; top: 50%; transform: translateY(-56%);
  font-family: var(--font-display); font-weight: 800; font-size: 94px; line-height: 1;
  letter-spacing: -0.04em; color: color-mix(in srgb, var(--preppr-green) 15%, #fff);
  z-index: 0; pointer-events: none; user-select: none;
}
.page-head__ghost svg {
  width: 72px; height: 72px; stroke-width: 2.2;
  color: color-mix(in srgb, var(--preppr-green) 22%, #fff);
  display: block;
}

/* Sub-block heading inside a page */
.block { margin-top: 38px; }
.block:first-of-type { margin-top: 0; }
.block__head {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px;
}
.block__rule { width: 22px; height: 3px; border-radius: 3px; background: var(--accent, var(--preppr-green)); flex-shrink: 0; position: relative; top: -5px; }
.block h3 {
  flex: 1 1 auto; min-width: 0;
  font-family: var(--font-sans); font-size: 19px; font-weight: 700;
  color: var(--fg-heading); margin: 0; line-height: 1.25; letter-spacing: -0.005em;
}

/* lead-in bold phrase */
.page b, .page strong { font-weight: 700; color: var(--fg-heading); }

/* ============================================================
   LISTS
   ============================================================ */
ul.clean { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
ul.clean > li {
  position: relative; padding-left: 26px;
  font-size: 15.5px; line-height: 1.6; color: var(--fg);
}
ul.clean > li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent, var(--preppr-green));
  transform: rotate(45deg);
}
ul.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
@media (max-width: 720px){ ul.audience { grid-template-columns: 1fr; } }

ul.rules { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
ul.rules > li {
  position: relative; padding: 16px 18px 16px 20px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--accent, var(--preppr-green)) 5%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent, var(--preppr-green)) 18%, var(--border));
  border-left: 4px solid var(--accent, var(--preppr-green));
  font-size: 15px; line-height: 1.6;
}
ul.rules > li b { color: var(--fg-heading); }

/* ============================================================
   PAIN QUOTE / CALLOUT
   ============================================================ */
.pain {
  border-left: 4px solid var(--accent, var(--preppr-green));
  background: color-mix(in srgb, var(--accent, var(--preppr-green)) 6%, #fff);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 22px 26px;
}
.pain p { font-size: 16px; line-height: 1.6; color: var(--fg-heading); margin: 0 0 12px; }
.pain p:last-child { margin: 0; }

/* inline pull-quote */
.quote {
  margin: 18px 0; padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-chat);
  border: 1px solid var(--border);
}
.quote__mark { color: var(--accent, var(--preppr-green)); font-weight: 800; }
.quote p { font-size: 16.5px; line-height: 1.5; font-style: italic; color: var(--fg-heading); margin: 0 0 8px; font-weight: 600; }
.quote cite { font-style: normal; font-size: 13px; color: var(--fg-muted); font-weight: 600; }

/* position blocks: bold lead sentences */
.positions { display: flex; flex-direction: column; gap: 18px; }
.positions p { margin: 0; }

/* ============================================================
   DESIGN → RUN → DOCUMENT stepper
   ============================================================ */
.loop-intro { margin-bottom: 20px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  padding: 0 0 24px; position: relative;
}
.step:last-child { padding-bottom: 0; }
.step__rail { display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent, var(--preppr-green)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; flex-shrink: 0; z-index: 1;
}
.step__line { flex: 1; width: 2px; background: color-mix(in srgb, var(--accent, var(--preppr-green)) 35%, var(--border)); margin: 4px 0 -4px; }
.step:last-child .step__line { display: none; }
.step__body { padding-top: 5px; }
.step__body h4 {
  font-size: 16px; font-weight: 700; color: var(--fg-heading); margin: 0 0 5px;
  font-family: var(--font-sans);
}
.step__body p { font-size: 14.5px; line-height: 1.58; color: var(--fg-muted); margin: 0; }

/* ============================================================
   DISCOVERY QUESTIONS
   ============================================================ */
ol.discovery { list-style: none; margin: 0; padding: 0; counter-reset: dq; display: flex; flex-direction: column; gap: 12px; }
ol.discovery > li {
  position: relative; counter-increment: dq; padding-left: 42px;
  font-size: 15px; line-height: 1.55; color: var(--fg);
  padding-top: 3px; min-height: 28px;
}
ol.discovery > li::before {
  content: counter(dq); position: absolute; left: 0; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent, var(--preppr-green)) 12%, #fff);
  color: var(--accent, var(--preppr-green)); border: 1.5px solid color-mix(in srgb, var(--accent, var(--preppr-green)) 40%, transparent);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   OBJECTIONS
   ============================================================ */
.objections { display: flex; flex-direction: column; gap: 18px; }
.objection {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff;
}
.objection__q {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 15px 20px; background: var(--neutral-50);
  border-bottom: 1px solid var(--border);
}
.objection__q .tag {
  flex-shrink: 0; font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent, var(--preppr-green));
  background: color-mix(in srgb, var(--accent, var(--preppr-green)) 12%, #fff);
  padding: 4px 9px; border-radius: var(--radius-full); margin-top: 1px;
}
.objection__q p { margin: 0; font-size: 15px; font-weight: 700; color: var(--fg-heading); font-style: italic; line-height: 1.4; }
.objection__a { padding: 16px 20px 18px; }
.objection__a p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--fg); }

/* ============================================================
   COMMERCIAL FIT table
   ============================================================ */
.spec { display: grid; grid-template-columns: 190px 1fr; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.spec__row { display: contents; }
.spec dt {
  background: var(--neutral-50); padding: 13px 18px;
  font-size: 13px; font-weight: 700; color: var(--fg-heading);
  border-top: 1px solid var(--border); border-right: 1px solid var(--border);
  display: flex; align-items: center;
}
.spec dd {
  margin: 0; padding: 13px 20px; font-size: 14.5px; line-height: 1.5; color: var(--fg);
  border-top: 1px solid var(--border);
}
.spec dt:first-of-type, .spec dd:first-of-type { border-top: none; }
@media (max-width: 620px){ .spec { grid-template-columns: 1fr; } .spec dt { border-right: none; } }

/* ============================================================
   PLATFORM — six tools grid
   ============================================================ */
.tools { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 4px; }
@media (max-width: 720px){ .tools { grid-template-columns: 1fr; } }
.tool {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px 20px 22px; background: #fff; position: relative;
}
.tool__icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--preppr-blue) 8%, #fff);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.tool__icon svg { width: 21px; height: 21px; color: var(--preppr-blue); stroke-width: 2; }
.tool__phase {
  position: absolute; top: 20px; right: 18px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--preppr-green);
}
.tool h4 { font-size: 17px; font-weight: 700; color: var(--fg-heading); margin: 0 0 7px; font-family: var(--font-sans); }
.tool p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* engine / generic callout */
.callout {
  margin: 22px 0; padding: 22px 26px; border-radius: var(--radius-lg);
  background: var(--preppr-blue); color: #fff;
}
.callout h4 { color: #fff; font-size: 16px; margin: 0 0 8px; font-family: var(--font-sans); font-weight: 700; }
.callout p { color: rgba(255,255,255,0.86); font-size: 14.5px; line-height: 1.6; margin: 0; }
.callout p + p { margin-top: 10px; }
.callout b, .callout strong { color: #fff; }

/* security list */
ul.security { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
ul.security > li {
  position: relative; padding-left: 30px; font-size: 15px; line-height: 1.6;
}
ul.security > li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--success-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233abb91' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   PRICING
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0 24px; }
@media (max-width: 780px){ .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 20px; background: #fff; display: flex; flex-direction: column;
}
.tier.is-feature { border: 2px solid var(--preppr-green); box-shadow: var(--shadow-md); }
.tier__name { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-heading); margin-bottom: 8px; }
.tier.is-feature .tier__name { color: var(--primary-700); }
.tier__price { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--fg-heading); line-height: 1.1; }
.tier__price small { font-size: 14px; font-weight: 600; color: var(--fg-muted); }
.tier__meta { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13.5px; line-height: 1.6; color: var(--fg-muted); }
.tier__badge { align-self: flex-start; margin-bottom: 12px; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--preppr-green); background: var(--success-bg); padding: 4px 10px; border-radius: var(--radius-full); }

.notes2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-note { font-size: 13px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 18px; padding-left: 2px; }
.price-note b { color: var(--fg-heading); font-weight: 700; }
@media (max-width: 620px){ .notes2 { grid-template-columns: 1fr; } }
.note-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 18px; background: var(--neutral-50); }
.note-card h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-heading); margin: 0 0 7px; font-family: var(--font-sans); }
.note-card p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* principles */
.principle { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.principle:last-child { border-bottom: none; }
.principle__n {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: var(--radius-md);
  background: var(--preppr-green); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.principle p { margin: 0; font-size: 15px; line-height: 1.6; }

/* ============================================================
   VERTICAL OPENER (accent band)
   ============================================================ */
.vhead {
  margin: -64px -72px 34px;
  background: var(--accent);
  color: #fff;
  padding: 46px 72px 40px;
  position: relative; overflow: hidden;
}
.vhead__num {
  position: absolute; right: 56px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800; font-size: 150px;
  color: rgba(255,255,255,0.10); line-height: 1; letter-spacing: -0.04em;
}
.vhead__eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 12px; position: relative; z-index: 1; }
.vhead h2 { font-family: var(--font-display); font-size: 42px; line-height: 1.05; font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: -0.015em; position: relative; z-index: 1; }
.vhead .vhead__tag { font-size: 17px; line-height: 1.5; color: #fff; max-width: 56ch; margin: 0; position: relative; z-index: 1; }

.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* small caption row */
.src-note { font-size: 12.5px; color: var(--fg-subtle); margin-top: 10px; font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.kit-foot {
  width: 100%; max-width: 816px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 4px; color: var(--fg-subtle); font-size: 12.5px;
}
.kit-foot img { height: 18px; opacity: 0.7; }

/* back to top */
.totop {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--preppr-blue); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.totop.show { opacity: 1; pointer-events: auto; }
.totop:hover { transform: translateY(-2px); }
.totop svg { width: 20px; height: 20px; }

/* ============================================================
   RESPONSIVE — collapse sidebar
   ============================================================ */
.sidebar__toggle { display: none; }
@media (max-width: 820px){
  .content { padding: 24px 18px 60px; }
  .page { padding: 40px 28px 48px; }
  .vhead { margin: -40px -28px 30px; padding: 36px 28px 30px; }
  .vhead h2 { font-size: 34px; }
  .cover__inner { padding: 40px 32px; }
  .cover h1 { font-size: 42px; }
  .cover__mascot { display: none; }
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.toc-group__label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--preppr-green); margin: 0 0 6px;
}
.toc-row {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 4px; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: background .15s ease;
}
.toc-row:hover { background: var(--neutral-50); text-decoration: none; }
.toc-row:last-of-type { border-bottom: none; }
.toc-badge {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--preppr-blue) 9%, #fff);
  color: var(--preppr-blue); font-family: var(--font-display); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.toc-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
}
.toc-row__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.toc-row__title { font-size: 16.5px; font-weight: 700; color: var(--fg-heading); line-height: 1.3; }
.toc-row__sub { font-size: 13.5px; color: var(--fg-muted); line-height: 1.4; }
.toc-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.toc-note {
  margin: 30px 0 0; padding: 18px 22px;
  background: var(--bg-chat); border-radius: var(--radius-lg);
  font-size: 13.5px; line-height: 1.6; color: var(--fg-muted);
}
.toc-note b { color: var(--fg-heading); font-weight: 600; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  @page { size: 8.5in 11in; margin: 0.55in; }
  @page cover { margin: 0; }
  html, body { background: #fff; }
  .sidebar, .sidebar__toggle, .totop, .kit-foot { display: none !important; }
  .content { margin-left: 0; padding: 0; display: block; }
  .page, .cover {
    box-shadow: none; border-radius: 0; margin: 0 auto 0;
    max-width: 100%; width: 100%;
    break-after: page; page-break-after: always;
  }
  .page { padding: 0; border: none; }
  .cover {
    page: cover; height: 11in; box-sizing: border-box; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 0.7in 0.8in;
    background: var(--bg-chrome) !important;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  .cover__inner { padding: 0; width: 100%; flex: 1 1 auto; display: flex; flex-direction: column; }
  .cover__note { margin-top: auto; max-width: 4.6in; }
  .cover__mascot {
    display: block !important; width: 2.6in; right: 0.55in; bottom: 0.55in;
    opacity: 1 !important; filter: none !important;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  .vhead, .callout, .tier.is-feature, .pain, ul.rules > li, .objection__q .tag,
  .step__num, .principle__n, .nav-dot, .tool__icon, .cover, .page-head__num,
  .toc-num, .toc-dot, .toc-badge {
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  .toc-row { break-inside: avoid; page-break-inside: avoid; }
  .vhead { margin: 0 0 24px; }
  .block, .step, .objection, ul.rules > li, .tool, .tier, .spec__row, .principle, li {
    break-inside: avoid; page-break-inside: avoid;
  }
  /* keep multi-column grids intact on the narrow print page */
  .tiers { grid-template-columns: repeat(3, 1fr) !important; gap: 12px; }
  .tier { padding: 16px 14px; }
  .tier__price { font-size: 21px; }
  .tier__price small { font-size: 12px; }
  .tier__meta { font-size: 11.5px; }
  .tier__badge { font-size: 9px; }
  .notes2 { grid-template-columns: 1fr 1fr !important; }
  .tools { grid-template-columns: 1fr 1fr !important; }
  ul.audience { grid-template-columns: 1fr 1fr !important; }
  .block__head, h2, h3, h4 { break-after: avoid; page-break-after: avoid; }
  .page-head { break-inside: avoid; page-break-inside: avoid; break-after: avoid; page-break-after: avoid; }
  .toc-group__label { break-after: avoid; page-break-after: avoid; }
}
