/* =========================================================================
   L&D Foundry — Landing page
   Builds on assets/foundations.css. Spreadsheet-grade clarity.
   ========================================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-page);
  color: var(--fg1);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  padding-bottom: 64px; /* room for sticky footer */
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw-marketing);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.wrap-doc {
  max-width: var(--maxw-doc);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* =========================================================================
   Top utility strip + nav
   ========================================================================= */
.utility {
  background: var(--ldf-deep-navy);
  color: #fff;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.utility a { color: #fff; text-decoration: none; }
.utility a:hover { color: var(--ldf-safety-orange); }
.utility .dot { color: rgba(255,255,255,0.4); margin: 0 var(--s-2); }

.nav {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
  gap: var(--s-6);
}
.nav-brand img { height: 44px; width: auto; }
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: inherit;
}
.nav-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  border-left: 1px solid var(--border);
  padding-left: var(--s-3);
}
.nav-name {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 11px;
  color: var(--ldf-slate);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .nav-wordmark { display: none; }
  .nav-brand img { height: 36px; }
}
.nav-links {
  display: flex;
  gap: var(--s-6);
  font-size: var(--fs-sm);
}
.nav-links a {
  color: var(--ldf-graphite);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--ldf-safety-orange); color: var(--ldf-deep-navy); }
.nav-cta {
  font-size: var(--fs-sm);
  color: var(--ldf-deep-navy);
  text-decoration: none;
  font-weight: var(--fw-bold);
  border-bottom: 2px solid var(--ldf-safety-orange);
  padding-bottom: 2px;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  padding: var(--s-16) 0 var(--s-12) 0;
  border-bottom: 1px solid var(--border);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-12);
  align-items: center;
}
.hero-eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-4);
}
.hero h1 {
  font-size: var(--fs-4xl);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-5);
}
.hero h1 .accent { color: var(--ldf-safety-orange); }
.hero-three-beat {
  font-size: var(--fs-xl);
  color: var(--ldf-graphite);
  line-height: 1.45;
  margin-bottom: var(--s-5);
  font-weight: var(--fw-bold);
}
.hero-three-beat span { display: block; }
.hero-three-beat span + span { color: var(--ldf-slate); }
.hero-three-beat span:first-child { color: var(--ldf-deep-navy); }
.hero-sub {
  font-size: var(--fs-md);
  color: var(--ldf-graphite);
  max-width: 460px;
  margin-bottom: var(--s-6);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: var(--s-4);
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 18px;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  font-family: var(--font-sans);
  border-radius: var(--radius-2);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 140ms ease-out, color 140ms ease-out;
}
.btn-primary {
  background: var(--ldf-deep-navy);
  color: #fff;
  border-color: var(--ldf-deep-navy);
}
.btn-primary:hover { background: #163057; color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--ldf-deep-navy);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: #EFEEE9; color: var(--ldf-deep-navy); }
.btn .arrow { font-family: var(--font-sans); font-weight: var(--fw-regular); }

/* Hero artifact (the VM-002 screenshot rendered in HTML) */
.artifact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-2);
  font-family: var(--font-sans);
  overflow: hidden;
}
.artifact-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 18px 10px 18px;
  border-bottom: 1px solid var(--border);
}
.artifact-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  margin: 0;
}
.artifact-id {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ldf-slate);
  margin-top: 2px;
}
.artifact-meta {
  font-size: 10px;
  color: var(--ldf-slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: right;
}
.vm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.vm-table th, .vm-table td {
  text-align: left;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.vm-table th {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ldf-deep-navy);
  background: var(--ldf-off-white);
  font-weight: var(--fw-bold);
  white-space: nowrap;
}
.vm-table td { color: var(--ldf-graphite); }
.vm-table tr:last-child td { border-bottom: 0; }
.vm-table .mono { font-family: var(--font-mono); font-size: 10px; color: var(--ldf-slate); }
.vm-table .col-c { text-align: center; }
.artifact-foot {
  padding: 10px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--ldf-slate);
  font-style: italic;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 1px 7px;
  border-radius: var(--radius-1);
  font-size: 9px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.chip-ready    { color: #2E7D32; background: #E0F0E1; }
.chip-verified { color: #1F3864; background: #DDE5F0; }
.chip-needs    { color: #F26B2B; background: #FFE9DD; }
.chip-gap      { color: #C62828; background: #FAE0E0; }
.chip-yes      { color: #2E7D32; background: #E0F0E1; }
.chip-partial  { color: #8A4B05; background: #FBE2A0; }
.chip-no       { color: #C62828; background: #FAE0E0; }

/* =========================================================================
   Lead magnet (PAC-01)
   ========================================================================= */
.lead {
  background: var(--ldf-deep-navy);
  color: #fff;
  padding: var(--s-10) 0;
}
.lead .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-10);
  align-items: center;
}
.lead .eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-3);
}
.lead h2 { color: #fff; font-size: var(--fs-3xl); margin-bottom: var(--s-3); }
.lead p { color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 0; }
.lead-form {
  background: #fff;
  border-radius: var(--radius-2);
  padding: var(--s-5);
}
.lead-form .label-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ldf-slate); margin-bottom: var(--s-2);
}
.lead-form .label-row .id { font-family: var(--font-mono); }
.lead-form h3 {
  margin: 0 0 var(--s-1) 0;
  font-size: var(--fs-lg);
  color: var(--ldf-deep-navy);
}
.lead-form .desc { font-size: 12px; color: var(--ldf-slate); margin-bottom: var(--s-4); }
.lead-form .field {
  display: flex;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2);
  overflow: hidden;
}
.lead-form input {
  flex: 1;
  border: 0;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--ldf-graphite);
  background: #fff;
  outline: none;
}
.lead-form input:focus { background: #FBFAF6; }
.lead-form button {
  border: 0;
  background: var(--ldf-deep-navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  padding: 0 16px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lead-form button:hover { background: #163057; }
.lead-form .footnote { font-size: 11px; color: var(--ldf-slate); margin-top: var(--s-3); }
.lead-form .success {
  font-size: var(--fs-sm);
  color: #2E7D32;
  margin-top: var(--s-3);
  display: none;
}
.lead-form.sent .success { display: block; }

/* =========================================================================
   Section header pattern
   ========================================================================= */
.section { padding: var(--s-12) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s-8);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
  gap: var(--s-6);
}
.section-head .eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ldf-slate);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-1);
}
.section-head h2 { margin: 0; font-size: var(--fs-3xl); }
.section-head .right {
  font-size: var(--fs-sm);
  color: var(--ldf-slate);
  font-style: italic;
  text-align: right;
  max-width: 360px;
}

/* =========================================================================
   Catalog — product cards
   ========================================================================= */
.catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
.product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: border-color 140ms ease-out;
}
.product:hover { border-color: var(--border-strong); }
.product.hero-product {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  padding: var(--s-8);
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--ldf-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-meta .id { font-family: var(--font-mono); }
.product-meta .price {
  color: var(--ldf-deep-navy);
  font-weight: var(--fw-bold);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.product h3 {
  font-size: var(--fs-2xl);
  line-height: 1.2;
  margin: 0;
}
.hero-product h3 { font-size: var(--fs-3xl); }
.product .grade {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--ldf-safety-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================================
   Hero principle card — replaces the fabricated VM-002 hero artifact
   ========================================================================= */
.principle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  margin: 0;
  box-shadow: 0 1px 0 rgba(31,56,100,0.04), 0 14px 40px -28px rgba(31,56,100,0.25);
  overflow: hidden;
  align-self: start;
}
.pc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--ldf-deep-navy);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pc-head .pc-rev { color: rgba(255,255,255,0.7); }
.pc-body { padding: var(--s-2) var(--s-5) var(--s-3); }
.pc-row {
  display: grid;
  grid-template-columns: 56px 1fr 60px;
  align-items: start;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
}
.pc-row:last-child { border-bottom: 0; }
.pc-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--ldf-safety-orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pc-text .pc-verb {
  font-family: var(--font-display, "Source Serif 4", serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pc-text p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ldf-graphite);
}
.pc-text p em { font-style: italic; color: var(--ldf-deep-navy); }
.pc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  background: #F1EFE9;
  border: 1px solid var(--border);
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.1em;
  align-self: start;
  border-radius: 2px;
}
.pc-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: #FAFAF8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--ldf-slate);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.pc-foot em {
  font-family: var(--font-display, "Source Serif 4", serif);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--ldf-deep-navy);
  letter-spacing: 0;
  text-transform: none;
}

/* =========================================================================
   Credibility line — honest stand-in for missing testimonials
   ========================================================================= */
.credibility-line {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: var(--s-3);
  align-items: start;
  background: #FAFAF8;
  border-left: 3px solid var(--ldf-safety-orange);
  padding: var(--s-3) var(--s-4);
  margin-top: var(--s-4);
  border-radius: 0 var(--radius-2) var(--radius-2) 0;
}
.credibility-line .cl-mark {
  color: var(--ldf-safety-orange);
  font-size: 12px;
  line-height: 1.6;
  padding-top: 2px;
}
.credibility-line .cl-body { display: block; }
.credibility-line strong {
  display: block;
  font-family: var(--font-display, "Source Serif 4", serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.credibility-line .cl-note {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-sm);
  color: var(--ldf-graphite);
  line-height: 1.55;
  font-style: italic;
}
.product p { color: var(--ldf-graphite); font-size: var(--fs-md); line-height: 1.55; margin: 0; }
.product .for-who {
  font-size: var(--fs-xs);
  color: var(--ldf-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--border);
  padding-top: var(--s-3);
}
.product .for-who strong { color: var(--ldf-deep-navy); }
.product-cols {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px var(--s-4);
  font-size: var(--fs-sm);
  color: var(--ldf-graphite);
}
.product-cols li {
  display: flex;
  gap: 6px;
  align-items: baseline;
  padding-left: 10px;
  position: relative;
}
.product-cols li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  background: var(--ldf-safety-orange);
}
.product-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  margin-top: auto;
  padding-top: var(--s-2);
}
.product-actions a {
  font-size: var(--fs-sm);
  color: var(--ldf-deep-navy);
  text-decoration: none;
  font-weight: var(--fw-bold);
}
.product-actions a.primary {
  border-bottom: 2px solid var(--ldf-safety-orange);
  padding-bottom: 2px;
}
.product-actions a:hover { color: var(--ldf-safety-orange); }

.hero-product-art {
  background: var(--ldf-off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: var(--s-3);
  font-size: 11px;
}
.hero-product-art .mini-doc {
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px;
  font-size: 11px;
  line-height: 1.4;
}
.hero-product-art h4 {
  font-size: 12px;
  color: var(--ldf-deep-navy);
  margin: 0 0 8px 0;
  text-transform: none;
  letter-spacing: 0;
}
.jbs-row {
  display: grid;
  grid-template-columns: 18px 1fr 1fr;
  gap: 6px;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--ldf-graphite);
}
.jbs-row:first-of-type { border-top: 0; }
.jbs-row .step { font-weight: var(--fw-bold); color: var(--ldf-deep-navy); }
.jbs-row .label { color: var(--ldf-slate); font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }

/* =========================================================================
   Worked example — VM-002 with S. Ramos
   ========================================================================= */
.worked {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-12) 0;
}
.worked-doc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.worked-doc-head {
  background: var(--ldf-off-white);
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.worked-doc-head h3 {
  margin: 0;
  font-size: var(--fs-lg);
  color: var(--ldf-deep-navy);
}
.worked-doc-head .id {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ldf-slate);
  margin-top: 2px;
}
.worked-doc-head .right {
  font-size: var(--fs-xs);
  color: var(--ldf-slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.worked-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.worked-table th, .worked-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.worked-table th {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ldf-deep-navy);
  background: var(--ldf-off-white);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.worked-table td.mono {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ldf-slate);
  white-space: nowrap;
}
.worked-table tr.weak td { background: #FFF7F1; }
.worked-table tr.strong td { background: #F4F8F1; }
.worked-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-6);
}
.callout {
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: var(--s-4) var(--s-5);
  background: #fff;
}
.callout .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-2);
}
.callout.weak .label { color: #C62828; }
.callout.strong .label { color: #2E7D32; }
.callout p { font-size: var(--fs-sm); color: var(--ldf-graphite); line-height: 1.55; margin: 0; }
.callout .quote {
  margin-top: var(--s-3);
  font-style: italic;
  color: var(--ldf-slate);
  font-size: var(--fs-xs);
  border-left: 2px solid var(--border);
  padding-left: var(--s-3);
}

/* =========================================================================
   Pricing comparison
   ========================================================================= */
.pricing {
  background: var(--ldf-off-white);
  padding: var(--s-12) 0;
  border-top: 1px solid var(--border);
}

/* Bundle spotlight cards — primary buying surface */
.bundle-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-6);
  margin-bottom: var(--s-6);
}
.bundle-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, border-color 140ms ease-out;
}
.bundle-card:hover {
  transform: translateY(-2px);
  border-color: var(--ldf-deep-navy);
  box-shadow: 0 18px 44px -28px rgba(31,56,100,0.4);
}
.bundle-card.recommended {
  background: var(--ldf-deep-navy);
  color: #fff;
  border-color: var(--ldf-deep-navy);
}
.bundle-card.recommended::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -10px;
  right: var(--s-4);
  background: var(--ldf-safety-orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 2px;
}
.bundle-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ldf-safety-orange);
}
.bundle-card.recommended .bundle-tag { color: #FFB182; }
.bundle-card h3 {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin: 0;
  color: var(--ldf-deep-navy);
  letter-spacing: -0.02em;
}
.bundle-card.recommended h3 { color: #fff; }
.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
}
.bundle-card.recommended .bundle-price-row { border-bottom-color: rgba(255,255,255,0.2); }
.bundle-price {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: 36px;
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bundle-card.recommended .bundle-price { color: #fff; }
.bundle-save {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}
.bundle-pitch {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--ldf-graphite);
  margin: 0;
}
.bundle-card.recommended .bundle-pitch { color: rgba(255,255,255,0.85); }
.bundle-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ldf-graphite);
}
.bundle-includes li {
  padding-left: 16px;
  position: relative;
}
.bundle-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
}
.bundle-card.recommended .bundle-includes { color: rgba(255,255,255,0.85); }
.bundle-card.recommended .bundle-includes li::before { color: #FFB182; }
.bundle-when {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ldf-slate);
  padding: var(--s-2) var(--s-3);
  background: #FAFAF8;
  border-left: 2px solid var(--ldf-safety-orange);
  border-radius: 0 4px 4px 0;
  margin-top: auto;
}
.bundle-when strong { color: var(--ldf-deep-navy); display: block; margin-bottom: 2px; }
.bundle-card.recommended .bundle-when {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}
.bundle-card.recommended .bundle-when strong { color: #fff; }
.bundle-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--ldf-deep-navy);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  text-decoration: none;
  border-radius: var(--radius-1);
  letter-spacing: 0.02em;
  transition: background 140ms ease-out;
}
.bundle-cta:hover { background: var(--ldf-safety-orange); }
.bundle-card.recommended .bundle-cta { background: var(--ldf-safety-orange); }
.bundle-card.recommended .bundle-cta:hover { background: #fff; color: var(--ldf-deep-navy); }

/* Compare table — collapsed under a disclosure */
.bundle-compare {
  margin-top: var(--s-4);
  border-top: 1px solid var(--border);
  padding-top: var(--s-4);
}
.bundle-compare summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ldf-deep-navy);
  padding: var(--s-2) 0;
  list-style: none;
}
.bundle-compare summary::-webkit-details-marker { display: none; }
.bundle-compare summary:hover { color: var(--ldf-safety-orange); }
.bundle-compare[open] summary { margin-bottom: var(--s-3); }

@media (max-width: 960px) {
  .bundle-spotlight { grid-template-columns: 1fr; }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  overflow: hidden;
  font-size: var(--fs-sm);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px var(--s-4);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.price-table thead th {
  background: var(--ldf-deep-navy);
  color: #fff;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 0;
  font-weight: var(--fw-bold);
}
.price-table thead th .price {
  display: block;
  font-size: var(--fs-xl);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.price-table thead th .save {
  display: block;
  font-size: 10px;
  font-weight: var(--fw-regular);
  color: var(--ldf-safety-orange);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-table tbody td:first-child {
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
}
.price-table tbody td:first-child .product-id {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ldf-slate);
  font-weight: var(--fw-regular);
  margin-top: 2px;
  letter-spacing: 0;
}
.price-table .check {
  text-align: center;
  color: var(--ldf-deep-navy);
  font-weight: var(--fw-bold);
  font-size: 14px;
}
.price-table .dash { text-align: center; color: var(--ldf-light-line); }
.price-table tfoot td {
  background: var(--ldf-off-white);
  border-bottom: 0;
  text-align: center;
  padding: 14px var(--s-4);
}
.price-table tfoot td a {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--ldf-safety-orange);
  padding-bottom: 2px;
}
.price-table tfoot td a:hover { color: var(--ldf-safety-orange); }
.price-table tfoot td.recommended {
  background: var(--ldf-deep-navy);
  color: #fff;
}
.price-table tfoot td.recommended a {
  color: #fff;
  border-bottom-color: var(--ldf-safety-orange);
}

/* =========================================================================
   About Shade
   ========================================================================= */
.about {
  padding: var(--s-12) 0;
}
.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-12);
  align-items: start;
}
.about-side .eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ldf-slate);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-3);
}
.about-side h2 { font-size: var(--fs-3xl); }
.about-content p {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--ldf-graphite);
  max-width: 640px;
}
.about-content .signoff {
  font-style: italic;
  color: var(--ldf-slate);
  margin-top: var(--s-5);
  font-size: var(--fs-sm);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-8);
  border-top: 1px solid var(--border);
  padding-top: var(--s-5);
}
.about-stats .stat .num {
  font-size: var(--fs-3xl);
  color: var(--ldf-deep-navy);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.about-stats .stat .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ldf-slate);
}

/* =========================================================================
   Substack
   ========================================================================= */
.substack {
  background: var(--ldf-off-white);
  border-top: 1px solid var(--border);
  padding: var(--s-10) 0;
}
.substack .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-8);
}
.substack .meta {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-2);
}
.substack h3 { margin: 0 0 var(--s-2) 0; font-size: var(--fs-2xl); }
.substack p { margin: 0; color: var(--ldf-graphite); max-width: 520px; }

/* =========================================================================
   FAQ — audit-binder style
   ========================================================================= */
.faq { padding: var(--s-12) 0; }
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
}
.faq-item .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ldf-slate);
  padding: var(--s-5) var(--s-2) var(--s-5) 0;
  letter-spacing: 0.06em;
}
.faq-item .body {
  padding: var(--s-5) 0;
  border-left: 1px solid var(--border);
  padding-left: var(--s-6);
}
.faq-item .q {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  margin: 0 0 var(--s-2) 0;
}
.faq-item .a {
  font-size: var(--fs-sm);
  color: var(--ldf-graphite);
  margin: 0;
  line-height: 1.6;
  max-width: 720px;
}

/* =========================================================================
   Footer
   ========================================================================= */
footer.site {
  background: var(--ldf-deep-navy);
  color: #fff;
  padding: var(--s-10) 0 var(--s-6) 0;
  margin-top: var(--s-12);
}
footer.site h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--s-3) 0;
}
footer.site .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-8);
}
footer.site a { color: rgba(255,255,255,0.85); text-decoration: none; }
footer.site a:hover { color: var(--ldf-safety-orange); }
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); font-size: var(--fs-sm); }
footer.site .brand img { height: 24px; margin-bottom: var(--s-3); }
footer.site .brand p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  max-width: 320px;
}
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: var(--s-8);
  padding-top: var(--s-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: space-between;
}

/* =========================================================================
   Sticky bottom strip — "I'm Shade. DM me, I'll send the sample."
   ========================================================================= */
.shade-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 8px rgba(31,56,100,0.06);
  z-index: 50;
  font-size: var(--fs-sm);
  transition: transform 200ms ease-out;
}
.shade-bar.dismissed { transform: translateY(100%); }
.shade-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: var(--s-4);
}
.shade-bar .who {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.shade-bar .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ldf-deep-navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.shade-bar .msg { color: var(--ldf-graphite); }
.shade-bar .msg em { color: var(--ldf-slate); }
.shade-bar .actions { display: flex; align-items: center; gap: var(--s-3); }
.shade-bar a.dm {
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--ldf-safety-orange);
  padding-bottom: 2px;
}
.shade-bar a.dm:hover { color: var(--ldf-safety-orange); }
.shade-bar .dismiss {
  background: transparent;
  border: 0;
  color: var(--ldf-slate);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.shade-bar .dismiss:hover { color: var(--ldf-graphite); }

/* =========================================================================
   Thumbnails — link to redesigned product previews
   ========================================================================= */
.thumb-link {
  position: relative;
  display: block;
  background: #F8F7F4;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-2);
  text-decoration: none;
  transition: border-color 140ms ease-out, transform 140ms ease-out;
}
.thumb-link:hover { border-color: var(--ldf-deep-navy); transform: translateY(-2px); }
.thumb-link svg { width: 100%; height: auto; display: block; }
.thumb-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(31,56,100,0.92) 0%, rgba(31,56,100,0) 100%);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 28px 14px 10px;
  opacity: 0;
  transition: opacity 140ms ease-out;
}
.thumb-link:hover .thumb-overlay { opacity: 1; }
.product-thumb { margin-bottom: var(--s-2); }

/* JBS hero thumb (in hero-product) */
.jbs-thumb { background: #F8F7F4; padding: 0; }

/* Lead magnet — form panel */
.lead-card {
  background: #fff;
  border-radius: var(--radius-2);
  padding: var(--s-4);
}
.lead-card .lead-form { padding: var(--s-3) var(--s-4); }
/* PAC graphic now sits in the left column, under the headline */
.lead .pac-thumb {
  margin-top: var(--s-6);
  max-width: 560px;
  border-radius: var(--radius-2);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.lead .pac-thumb svg { width: 100%; height: auto; display: block; }
@media (max-width: 720px) {
  .lead .pac-thumb { max-width: 100%; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .hero .wrap,
  .lead .wrap,
  .about .wrap { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: 1fr; }
  .product.hero-product { grid-template-columns: 1fr; padding: var(--s-6); }
  .substack .wrap { flex-direction: column; align-items: flex-start; }
  footer.site .wrap { grid-template-columns: 1fr 1fr; }
  .worked-callout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .hero-three-beat { font-size: var(--fs-lg); }
  .lead-form .field { flex-direction: column; }
  .lead-form button { padding: 12px; }
  footer.site .wrap { grid-template-columns: 1fr; }
  .shade-bar .wrap { flex-wrap: wrap; gap: var(--s-2); }
  .price-table { font-size: 11px; }
  .price-table th, .price-table td { padding: 8px 6px; }
}

/* =========================================================================
   Bundle hero cards (Change 1) — three jobs, three systems
   Reuses existing tokens: var(--border), var(--ldf-deep-navy),
   var(--ldf-safety-orange), var(--font-mono), .btn-primary, .recommended.
   ========================================================================= */
.bundles-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
  margin-bottom: var(--s-8);
}
.bundle-feat {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  padding: var(--s-5) var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, border-color 140ms ease-out;
}
.bundle-feat:hover {
  transform: translateY(-2px);
  border-color: var(--ldf-deep-navy);
  box-shadow: 0 18px 44px -28px rgba(31,56,100,0.4);
}
.bundle-feat.recommended {
  border-color: var(--ldf-safety-orange);
  box-shadow: 0 0 0 1px var(--ldf-safety-orange) inset;
}
.bf-flag {
  position: absolute;
  top: -10px;
  left: var(--s-5);
  background: var(--ldf-safety-orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 2px;
}
.bf-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
  gap: var(--s-3);
}
.bf-id {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--ldf-deep-navy);
}
.bundle-feat.recommended .bf-id { color: var(--ldf-safety-orange); }
.bf-price {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bundle-feat h3 {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin: 0;
  color: var(--ldf-deep-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bf-desc {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--ldf-graphite);
}
.bf-flow {
  list-style: none;
  margin: var(--s-1) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-3) 0;
}
.bf-flow li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
}
.bf-step {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--ldf-safety-orange);
  letter-spacing: 0.04em;
}
.bf-act {
  color: var(--ldf-deep-navy);
  font-weight: var(--fw-medium, 500);
}
.bf-prod {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ldf-slate);
  letter-spacing: 0.04em;
  font-weight: var(--fw-bold);
}
.bf-includes {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ldf-graphite);
}
.bf-includes::before {
  content: "+ ";
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
}
.bf-foot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--s-2);
}
.bf-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.bundle-feat.recommended .bf-cta {
  background: var(--ldf-safety-orange);
  border-color: var(--ldf-safety-orange);
}
.bundle-feat.recommended .bf-cta:hover {
  background: #D55720;
  border-color: #D55720;
}
.bf-save {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ldf-slate);
  text-align: center;
}
.bundle-feat.recommended .bf-save { color: var(--ldf-safety-orange); }

@media (max-width: 960px) {
  .bundles-hero { grid-template-columns: 1fr; }
}

/* Catalog card: Includes line + Also-in badge (Change 3) + catalog pointer (Change 6) */
.includes-line {
  font-size: var(--fs-xs);
  color: var(--ldf-graphite);
  margin: var(--s-2) 0 0;
  line-height: 1.5;
}
.includes-line::before {
  content: "+ ";
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
}
.also-in {
  font-size: 11px;
  color: var(--ldf-slate);
  margin: 6px 0 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.also-in a {
  color: var(--ldf-slate);
  text-decoration: none;
  border-bottom: 1px dotted var(--ldf-slate);
}
.also-in a:hover { color: var(--ldf-deep-navy); border-bottom-color: var(--ldf-deep-navy); }
.catalog-pointer {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--ldf-slate);
  margin-top: var(--s-7);
  margin-bottom: 0;
}
.catalog-pointer a {
  color: var(--ldf-slate);
  text-decoration: none;
  border-bottom: 1px solid var(--ldf-slate);
  font-style: normal;
  font-weight: var(--fw-bold);
}
.catalog-pointer a:hover { color: var(--ldf-safety-orange); border-bottom-color: var(--ldf-safety-orange); }

/* Choose your path — decision table (Priority 4) */
.chooser { padding: var(--s-8) 0; background: var(--ldf-paper, #F8F7F4); }
.path-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s-6);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  overflow: hidden;
}
.path-table tr + tr td { border-top: 1px solid var(--border); }
.path-table td {
  padding: var(--s-4) var(--s-5);
  vertical-align: middle;
  font-size: var(--fs-base);
  line-height: 1.45;
}
.path-table .situation {
  color: var(--ldf-deep-navy);
  font-style: italic;
  width: 55%;
}
.path-table .arrow {
  width: 1%;
  font-family: var(--font-mono);
  color: var(--ldf-safety-orange);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
}
.path-table .path-pick { text-align: right; }
.path-table .path-pick a {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--ldf-deep-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--ldf-safety-orange);
  padding-bottom: 2px;
  letter-spacing: 0.02em;
}
.path-table .path-pick a:hover { color: var(--ldf-safety-orange); }
@media (max-width: 720px) {
  .path-table td { display: block; width: auto; padding: var(--s-3) var(--s-4); }
  .path-table .arrow { display: none; }
  .path-table .situation { padding-bottom: 0; }
  .path-table .path-pick { text-align: left; padding-top: var(--s-2); }
  .path-table tr + tr td:first-child { border-top: 1px solid var(--border); }
  .path-table tr + tr td:not(:first-child) { border-top: 0; }
}

/* =========================================================================
   Density / readability overrides — fix squeezed copy across the page.
   The base 13px / 1.5 was tuned for spreadsheet density; marketing surfaces
   need more breathing room. These rules upsize body copy on long-form
   sections only, and add vertical rhythm where text was packed.
   ========================================================================= */

/* Marketing body copy: 15px / 1.65 in long-form sections.
   Leaves the price-table and form controls untouched. */
.lead p,
.product p,
.product-desc,
.bf-desc,
.about-content p,
.faq-item .a,
.worked-callout p,
.callout p,
.substack p {
  font-size: 15px;
  line-height: 1.65;
}
.about-content p { font-size: 16px; line-height: 1.7; }
.about-content p + p { margin-top: var(--s-4); }

/* Section header — extra room before content begins. */
.section-head { margin-bottom: var(--s-10); }
.section-head h2 { margin-bottom: var(--s-2); }
.section-head .right {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ldf-graphite);
  max-width: 420px;
}

/* Hero subhead + lede a bit more open. */
.hero p { line-height: 1.6; }

/* Catalog cards — looser internal stack so description / includes /
   for-who / actions / also-in don't crush each other. */
.product { padding: var(--s-6) var(--s-6) var(--s-5); }
.product.hero-product { padding: 0; } /* hero card uses its own grid */
.product h3 { margin-bottom: var(--s-3); }
.product p + .for-who,
.product p + .includes-line { margin-top: var(--s-3); }
.product .for-who {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  line-height: 1.55;
}
.product .includes-line { margin-top: var(--s-2); margin-bottom: 0; }
.product-actions { padding-top: var(--s-4); margin-top: var(--s-2); }
.product .also-in { margin-top: var(--s-3); }

/* Bundle hero card — slightly more padding + airier flow list. */
.bundle-feat { padding: var(--s-6); gap: var(--s-4); }
.bf-flow { gap: 10px; padding: var(--s-4) 0; }
.bf-flow li { font-size: 14px; }
.bundle-feat h3 { line-height: 1.25; }
.bf-foot { gap: 10px; padding-top: var(--s-3); }

/* FAQ — generous Q→A gap and section padding. */
.faq-item { padding: var(--s-6) 0; }
.faq-item .q { margin-bottom: var(--s-3); }
.faq-item .a { line-height: 1.7; }

/* Worked example — give the doc breathing room. */
.worked-doc { padding: var(--s-7); }
.worked-callout { gap: var(--s-5); }

/* Path table — bigger row padding + situation type. */
.path-table td { padding: var(--s-5) var(--s-5); font-size: 15px; }
.path-table .situation { font-size: 16px; line-height: 1.55; }

/* Bundles section — vertical rhythm before the comparison table. */
.bundles-hero { margin-bottom: var(--s-10); }
.price-table { margin-top: var(--s-4); }

/* About — looser column rhythm. */
.about-content { display: flex; flex-direction: column; gap: var(--s-4); }

/* Kit embed — make it sit native inside the lead card.
   Kit injects its own form; we restyle the chrome to match the page. */
.kit-wrap .formkit-form,
.kit-wrap .seva-form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 var(--s-3) 0 !important;
  font-family: var(--font-sans) !important;
  max-width: none !important;
  width: 100% !important;
}
.kit-wrap .formkit-fields { gap: var(--s-2) !important; }
.kit-wrap .formkit-input {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-1) !important;
  padding: 12px 14px !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  color: var(--ldf-deep-navy) !important;
  background: #fff !important;
}
.kit-wrap .formkit-input:focus {
  border-color: var(--ldf-deep-navy) !important;
  outline: 2px solid rgba(31,56,100,0.2) !important;
  outline-offset: 0 !important;
}
.kit-wrap .formkit-submit,
.kit-wrap button.formkit-submit {
  background: var(--ldf-safety-orange) !important;
  border: 1px solid var(--ldf-safety-orange) !important;
  border-radius: var(--radius-1) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-weight: var(--fw-bold) !important;
  font-size: 15px !important;
  padding: 12px 18px !important;
  letter-spacing: 0.01em !important;
  transition: background 140ms ease-out !important;
}
.kit-wrap .formkit-submit:hover { background: #D55720 !important; border-color: #D55720 !important; }
.kit-wrap .formkit-submit > span { padding: 0 !important; }
.kit-wrap .formkit-disclaimer,
.kit-wrap .formkit-powered-by-convertkit-container,
.kit-wrap .formkit-header,
.kit-wrap .formkit-subheader { display: none !important; }
.kit-wrap .formkit-alert {
  font-size: 14px !important;
  padding: 10px 12px !important;
  border-radius: var(--radius-1) !important;
}
.kit-wrap .formkit-alert-success {
  background: #E0F0E1 !important;
  color: #2E7D32 !important;
  border: 1px solid #B8DDB9 !important;
}

/* Footer — readable list rhythm. */
footer.site ul li { line-height: 1.9; }
footer.site h4 { margin-bottom: var(--s-3); }

/* Sticky shade bar — make sure it never crashes content. */
body { padding-bottom: 76px; }
.shade-bar .msg { line-height: 1.5; }

/* Eyebrows — a touch more space below. */
.eyebrow + h2,
.section-head .eyebrow { margin-bottom: var(--s-3); }

/* Mobile: tighten only the section padding, keep type comfortable. */
/* Trust band (under hero) */
.trust-band {
  background: var(--ldf-off-white, #F8F7F4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-6) 0;
}
.trust-band .wrap { display: flex; flex-direction: column; gap: var(--s-3); align-items: flex-start; }
.trust-line {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ldf-deep-navy);
  font-weight: var(--fw-bold);
  max-width: 880px;
}
.trust-standards {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  color: var(--ldf-slate);
  text-transform: uppercase;
}

/* Audit-asks — reuses .faq, with product-code tag highlight */
.audit-asks .prod-tag {
  font-family: var(--font-mono);
  font-weight: var(--fw-bold);
  color: var(--ldf-safety-orange);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.audit-asks .faq-item .q { color: var(--ldf-deep-navy); }
@media (max-width: 720px) {
  .trust-band .wrap { gap: var(--s-2); }
  .trust-line { font-size: 15px; }
  .section, .pricing, .about, .faq, .worked, .lead { padding-top: var(--s-10); padding-bottom: var(--s-10); }
  .section-head { flex-direction: column; align-items: flex-start; gap: var(--s-3); margin-bottom: var(--s-7); }
  .section-head .right { max-width: none; }
  .product { padding: var(--s-5); }
  .worked-doc { padding: var(--s-5); }
}
