/* Little Systems — shared landing page styles
   Used by both Variant A (index.html, long-form) and Variant B (b.html, short-form).
   Update once, both variants reflect. */

/* ====== Tokens ====== */
:root {
  --bone:        #E8E4DB;
  --bone-deep:   #DDD8CC;
  --charcoal:    #2C3539;
  --charcoal-soft: #3D464A;
  --teal:        #3D5A6C;
  --orange:      #E07A3C;
  --orange-deep: #C5662A;
  --moss:        #3D4A3D;
  --terracotta:  #B8654A;
  --rose:        #F3E5DD;
  --green:       #4A7C59;
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:   0 12px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 60px rgba(0,0,0,0.16);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bone);
  color: var(--charcoal);
  margin: 0;
  padding: 0;
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* defensive: prevents accidental horizontal scroll on mobile */
}

/* ====== Layout ====== */
.wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.wide { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ====== Header ====== */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(232, 228, 219, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 53, 57, 0.08);
}
header.site .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  max-width: 1080px; margin: 0 auto;
}
header.site .logo img { height: 48px; width: auto; max-width: 100%; display: block; }
header.site nav a {
  color: var(--charcoal); text-decoration: none;
  font-size: 14px; font-weight: 500;
  margin-left: 22px;
}
header.site nav a:hover { color: var(--orange); }
header.site .nav-cta {
  background: var(--orange); color: #fff !important;
  padding: 9px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em;
}
header.site .nav-cta:hover { background: var(--orange-deep); color: #fff !important; }

/* ====== Hero ====== */
.hero {
  padding: 64px 24px 48px;
  text-align: center;
}
.qualifier {
  display: inline-block;
  background: rgba(61, 90, 108, 0.10);
  color: var(--teal);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
}
h1 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 auto 22px;
  max-width: 820px;
  text-transform: uppercase;
}
h1 .accent { color: var(--orange); }
h1 .strike { text-decoration: line-through; opacity: 0.45; text-decoration-thickness: 3px; }
.subhead {
  font-size: 20px;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--charcoal-soft);
  font-weight: 400;
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--charcoal-soft);
}
.hero-rating .stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.hero-rating strong { color: var(--charcoal); font-weight: 700; }
.cta-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(224, 122, 60, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cta-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224, 122, 60, 0.42);
}
.cta-primary .price { font-weight: 500; opacity: 0.85; margin-left: 6px; }
.cta-microcopy {
  margin-top: 12px;
  font-size: 12px;
  color: var(--charcoal-soft);
}
.cta-microcopy .lock { color: var(--green); }
.benefits-row {
  display: flex; justify-content: center;
  gap: 24px; margin-top: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--charcoal-soft);
}
.benefits-row span { display: inline-flex; align-items: center; gap: 6px; }
.benefits-row span::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}
.trust-strip {
  margin-top: 12px;
  font-size: 13px;
  color: var(--charcoal-soft);
  opacity: 0.85;
}
.trust-strip span { margin: 0 10px; }
.trust-strip .dot { color: var(--orange); }

/* ====== Social proof strip ====== */
.social-strip {
  background: var(--charcoal);
  color: var(--bone);
  padding: 40px 24px;
}
.social-strip .proof-row {
  display: flex; justify-content: center; gap: 56px;
  flex-wrap: wrap; text-align: center;
  max-width: 1080px; margin: 0 auto;
}
.social-strip .proof-item {
  font-size: 13px;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.social-strip .proof-item strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: #F4994E;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.social-strip .proof-item .sub {
  font-size: 14px;
  color: rgba(232, 228, 219, 0.92);
  text-transform: none;
  letter-spacing: 0.01em;
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.4;
}

/* ====== Section base ====== */
section { padding: 72px 0; }
section.dark {
  background: var(--charcoal);
  color: var(--bone);
}
section.dark h2, section.dark .pull-quote { color: var(--bone); }
section.dark p { color: rgba(232, 228, 219, 0.85); }
section.rose { background: var(--rose); }

h2 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
h3 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
p { margin: 0 0 18px; }
ul.checks { list-style: none; padding: 0; margin: 24px 0; }
ul.checks li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 17px;
  line-height: 1.45;
}
ul.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  width: 24px; height: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* ====== Hook story ====== */
.hook p { font-size: 18px; }
.pull-quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 5px solid var(--orange);
  background: rgba(61, 90, 108, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ====== Inline testimonial quote callouts ====== */
.inline-quote {
  background: rgba(255, 255, 255, 0.4);
  border-left: 4px solid var(--teal);
  padding: 22px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
section.dark .inline-quote {
  background: rgba(232, 228, 219, 0.06);
  border-left-color: var(--orange);
}
.inline-quote .stars {
  color: var(--orange); margin-bottom: 8px;
  font-size: 15px; letter-spacing: 3px;
}
.inline-quote .text {
  font-size: 17px; line-height: 1.5;
  margin: 0 0 10px;
  color: var(--charcoal);
  font-style: italic;
}
section.dark .inline-quote .text { color: var(--bone); }
.inline-quote .by {
  font-size: 13px;
  color: var(--charcoal-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}
section.dark .inline-quote .by { color: rgba(232, 228, 219, 0.7); }
.placeholder-tag {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ====== Feature grid ====== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.feature {
  background: var(--bone);
  border: 1px solid rgba(44, 53, 57, 0.10);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature .icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.feature h3 { font-size: 22px; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--charcoal-soft); margin: 0; }
section.dark .feature {
  background: var(--charcoal-soft);
  border-color: rgba(232, 228, 219, 0.12);
}
section.dark .feature p { color: rgba(232, 228, 219, 0.78); }

/* ====== Night-by-night timeline ====== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.timeline .step {
  background: var(--bone);
  border-radius: var(--radius-md);
  padding: 24px;
  border-top: 4px solid var(--orange);
  position: relative;
}
.timeline .step:nth-child(2) { border-top-color: var(--terracotta); }
.timeline .step:nth-child(3) { border-top-color: var(--teal); }
.timeline .step:nth-child(4) { border-top-color: var(--green); }
.timeline .step .night {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.timeline .step:nth-child(2) .night { color: var(--terracotta); }
.timeline .step:nth-child(3) .night { color: var(--teal); }
.timeline .step:nth-child(4) .night { color: var(--green); }
.timeline .step .night-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--charcoal-soft);
  margin-bottom: 14px;
  font-weight: 700;
}
.timeline .step h4 {
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--charcoal);
}
.timeline .step p { font-size: 14px; color: var(--charcoal-soft); margin: 0; line-height: 1.45; }

/* ====== Comparison table ====== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.compare-col {
  background: var(--bone);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(44, 53, 57, 0.12);
}
.compare-col.yes { border-color: var(--orange); border-width: 2px; }
.compare-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
  color: var(--orange);
}
.compare-col.no h4 { color: var(--charcoal-soft); opacity: 0.6; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(44, 53, 57, 0.06);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col.yes li::before {
  content: "✓"; color: var(--orange);
  position: absolute; left: 0; font-weight: 700;
}
.compare-col.no li::before {
  content: "✗"; color: var(--charcoal-soft); opacity: 0.45;
  position: absolute; left: 0; font-weight: 700;
}
.compare-col.no li { color: var(--charcoal-soft); opacity: 0.75; }

/* ====== The 8 Parents cards ====== */
.parents {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0;
}
.parent-card {
  background: var(--bone);
  border-radius: var(--radius-md);
  padding: 24px;
  border-top: 4px solid var(--orange);
}
.parent-card:nth-child(4n+2) { border-top-color: var(--terracotta); }
.parent-card:nth-child(4n+3) { border-top-color: var(--teal); }
.parent-card:nth-child(4n+4) { border-top-color: var(--moss); }
.parent-card h4 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.parent-card p { font-size: 14.5px; color: var(--charcoal-soft); margin: 0; line-height: 1.5; }

/* ====== Founder section ====== */
.founder {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  background: var(--bone-deep);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--charcoal-soft);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(232, 228, 219, 0.6);
  font-size: 12px; text-align: center; padding: 16px;
  border: 2px dashed var(--bone);
  line-height: 1.4;
}
.founder-content h3 { color: var(--orange); font-size: 22px; margin: 0 0 12px; }
.founder-content p { font-size: 15.5px; line-height: 1.6; }
.founder-content .sign {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  margin-top: 14px;
  color: var(--charcoal);
}
.founder-content .sign span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
}

/* ====== Promise box ====== */
.promise {
  background: var(--charcoal);
  color: var(--bone);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 32px 0;
  position: relative;
}
.promise .stamp {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.promise h2 { color: var(--bone); margin-bottom: 16px; }
.promise p {
  color: rgba(232, 228, 219, 0.88);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 14px;
}
.promise-caveat {
  background: rgba(232, 228, 219, 0.06);
  border: 1px solid rgba(232, 228, 219, 0.10);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  text-align: left;
  max-width: 600px;
  margin: 22px auto 18px;
}
.promise-caveat .caveat-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 10px;
}
.promise-caveat p {
  color: rgba(232, 228, 219, 0.85);
  font-size: 14.5px;
  line-height: 1.6;
  text-align: left;
  margin: 0 0 10px;
  max-width: none;
}
.promise-caveat p:last-child { margin-bottom: 0; }
.promise-caveat strong { color: #fff; }
.promise-footnote {
  font-size: 13px;
  opacity: 0.65;
  margin-top: 16px;
  font-style: italic;
}

/* ====== Bundle Mockup (sits above the value stack) ====== */
.bundle-mockup {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.bundle-mockup img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  /* No background / shadow by default - the mockup art carries its own visual weight */
}
@media (max-width: 720px) {
  .bundle-mockup { margin-bottom: 24px; max-width: 100%; }
}

/* ====== Value Stack ====== */
.value-stack {
  background: var(--bone-deep);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 28px 0;
  border: 1px solid rgba(44, 53, 57, 0.08);
}
.value-stack h4 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 22px;
  text-align: center;
  letter-spacing: 0.02em;
}
.value-stack ul { list-style: none; padding: 0; margin: 0; }
.value-stack li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 53, 57, 0.08);
  font-size: 15px;
}
.value-stack li .item { color: var(--charcoal); padding-right: 16px; }
.value-stack li .val { color: var(--charcoal-soft); font-weight: 700; font-size: 15px; white-space: nowrap; }
.value-stack li.bonus { color: var(--orange); }
.value-stack li.bonus .item::before { content: "🎁 "; }
.value-stack li.bonus .item { color: var(--orange); font-weight: 600; }
.value-stack li.bonus .val { color: var(--orange); }
.value-stack .total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0 6px;
  margin-top: 10px;
  border-top: 2px solid var(--charcoal);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}
.value-stack .total-row.crossout {
  text-decoration: line-through;
  color: var(--charcoal-soft);
  opacity: 0.55;
  border-top: none;
  padding-top: 14px;
  font-size: 20px;
}
.value-stack .total-row.real {
  color: var(--orange);
  font-size: 30px;
  border-top: 2px dashed var(--orange);
}
.value-stack .value-reassurance {
  text-align: center;
  font-size: 14px;
  color: var(--charcoal-soft);
  margin: 18px auto 0;
  letter-spacing: 0.02em;
}

/* ====== Price section ====== */
.price-card {
  background: var(--bone);
  border: 2px solid var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 32px 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.price-card .anchor-price {
  font-size: 22px;
  color: var(--charcoal-soft);
  text-decoration: line-through;
  opacity: 0.55;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.price-card .pricetag {
  font-family: 'Anton', sans-serif;
  font-size: 88px;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}
.price-card .pricetag sup {
  font-size: 32px; vertical-align: top; top: 12px; position: relative;
  margin-right: 4px;
}
.price-card .price-sub {
  font-size: 14px;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.price-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0 28px;
  font-size: 13px;
}
.price-comparison div {
  background: var(--bone-deep);
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  color: var(--charcoal-soft);
}
.price-comparison strong { display: block; color: var(--charcoal); font-size: 15px; }

/* ====== Trust badges (payment) ====== */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}
.trust-badges .badge {
  background: #fff;
  border: 1px solid rgba(44, 53, 57, 0.12);
  padding: 7px 12px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.secure-line {
  margin-top: 10px;
  font-size: 12px;
  color: var(--charcoal-soft);
}
.secure-line .lock { color: var(--green); }

/* ====== Add-ons ====== */
.addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.addon {
  background: var(--bone-deep);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--teal);
}
.addon h4 {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.addon .price-tag {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.addon p { font-size: 14px; color: var(--charcoal-soft); margin: 0; line-height: 1.5; }

/* ====== Objections ====== */
.objections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}
.objection {
  background: var(--bone);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid rgba(44, 53, 57, 0.10);
}
.objection .q {
  font-family: 'Anton', sans-serif;
  font-size: 19px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
  margin-bottom: 8px;
}
.objection .a { font-size: 16px; color: var(--charcoal); margin: 0; }

/* ====== FAQ ====== */
.faq details {
  background: var(--bone);
  border: 1px solid rgba(44, 53, 57, 0.10);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 10px;
  transition: background 0.15s;
}
.faq details[open] { background: var(--bone-deep); }
.faq summary {
  cursor: pointer;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  list-style: none;
  padding-right: 24px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  color: var(--orange); font-size: 22px; font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 12px; font-size: 15px; color: var(--charcoal-soft);
}

/* ====== Two paths final ====== */
.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.path {
  border-radius: var(--radius-md);
  padding: 28px;
}
.path.bad {
  background: rgba(232, 228, 219, 0.08);
  color: rgba(232, 228, 219, 0.6);
  border: 1px solid rgba(232, 228, 219, 0.12);
}
.path.good {
  background: var(--orange);
  color: #fff;
}
.path h4 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.path p { margin: 0; font-size: 15.5px; line-height: 1.5; }

/* ====== Risk reversal badge near CTAs ====== */
.risk-reversal {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  background: rgba(74, 124, 89, 0.10);
  border-radius: 999px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.risk-reversal::before {
  content: "🛡"; font-size: 14px;
}
section.dark .risk-reversal {
  background: rgba(74, 124, 89, 0.2);
  color: #8fc69e;
}

/* ====== Quick-Nav floating widget ====== */
html { scroll-behavior: smooth; }
header.site .logo a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
header.site .logo a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
}

.quick-nav-toggle {
  position: fixed;
  bottom: 24px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  border: none;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.20s, transform 0.20s, background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1;
}
.quick-nav-toggle.visible {
  opacity: 1;
  pointer-events: auto;
}
.quick-nav-toggle:hover { background: var(--orange); transform: translateY(-2px); }
.quick-nav-toggle[aria-expanded="true"] { background: var(--orange); }
.quick-nav-toggle .qn-icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 2.5px 0;
  border-radius: 2px;
}

.quick-nav-panel {
  position: fixed;
  bottom: 88px;
  right: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 6px 0;
  min-width: 220px;
  max-width: calc(100vw - 36px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.20);
  z-index: 101;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
  overflow: hidden;
}
.quick-nav-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.qn-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px 10px;
  border-bottom: 1px solid rgba(44,53,57,0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.qn-close {
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal-soft);
  padding: 0;
  font-family: inherit;
}
.qn-close:hover { color: var(--orange); }
.quick-nav-panel a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.quick-nav-panel a:hover {
  background: var(--bone);
  color: var(--orange-deep);
  border-left-color: var(--orange);
}
.quick-nav-panel a.qn-top {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--orange-deep);
  border-bottom: 1px solid rgba(44,53,57,0.06);
  margin-bottom: 4px;
}
.quick-nav-panel a.qn-cta {
  background: var(--orange);
  color: #fff;
  margin: 6px 8px 4px;
  border-radius: 999px;
  text-align: center;
  border-left: none;
  padding: 10px 14px;
}
.quick-nav-panel a.qn-cta:hover { background: var(--orange-deep); color: #fff; border-left: none; }

@media (max-width: 720px) {
  .quick-nav-toggle { bottom: 100px; right: 14px; }
  .quick-nav-panel { bottom: 160px; right: 14px; }
}

/* ====== Mobile sticky CTA ====== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(44, 53, 57, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  z-index: 100;
  display: none;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid rgba(232, 228, 219, 0.15);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
.mobile-sticky-cta .cta-primary {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(224, 122, 60, 0.4);
  box-sizing: border-box;
}
.mobile-sticky-cta .micro {
  display: block;
  font-size: 10px;
  color: rgba(232, 228, 219, 0.7);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ====== Footer ====== */
footer.site {
  background: var(--charcoal);
  color: rgba(232, 228, 219, 0.65);
  padding: 48px 24px 32px;
  font-size: 13px;
  text-align: center;
}
footer.site .logo img { height: 44px; width: auto; max-width: 100%; opacity: 0.75; margin-bottom: 16px; }
footer.site a { color: rgba(232, 228, 219, 0.65); text-decoration: none; margin: 0 10px; }
footer.site a:hover { color: var(--orange); }
footer.site .legal { margin-top: 22px; font-size: 11px; opacity: 0.5; }

/* ====== Mobile ====== */
@media (max-width: 960px) {
  .parents { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  header.site nav a:not(.nav-cta) { display: none; }
  .compare, .addons, .two-paths, .founder, .parents { grid-template-columns: 1fr; }
  .founder { padding: 28px; }
  .founder-photo { max-width: 200px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .social-strip .proof-row { gap: 32px; }
  .social-strip .proof-item strong { font-size: 36px; }
  .social-strip .proof-item { font-size: 12px; }
  .social-strip .proof-item .sub { font-size: 13px; }
  section { padding: 56px 0; }
  .hero { padding: 40px 20px 32px; }
  .promise { padding: 36px 24px; }
  .price-card { padding: 28px 20px; }
  .price-card .pricetag { font-size: 64px; }
  .pull-quote { padding: 22px 24px; font-size: 24px; }
  .value-stack { padding: 24px 20px; }
  .value-stack .total-row.real { font-size: 24px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 88px; }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ====== Founder Welcome Video Placeholder ====== */
.welcome-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  padding: 4px 12px;
  background: rgba(224,122,60,0.10);
  border-radius: 999px;
}
.welcome-video-frame {
  max-width: 680px;
  margin: 0 auto;
}
.welcome-placeholder {
  background: linear-gradient(135deg, #2C3539 0%, #1a2024 100%);
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.welcome-play-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(224,122,60,0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.10);
  padding-left: 5px;
  font-family: inherit;
}
.welcome-placeholder-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}
.welcome-placeholder-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 380px;
}
.welcome-video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: #000;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* ====== Founder Credentials Row ====== */
.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(44,53,57,0.10);
}
.founder-creds .cred {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal);
  background: rgba(232,228,219,0.55);
  border: 1px solid rgba(44,53,57,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1.4;
}

/* ====== Trust Signals near Checkout Embed ====== */
.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  max-width: 600px;
  margin: 0 auto 20px;
}
.checkout-trust .ct-item {
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,228,219,0.78);
  padding: 6px 11px;
  background: rgba(232,228,219,0.06);
  border: 1px solid rgba(232,228,219,0.14);
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ====== See It In Motion — Real Product Demo ====== */
.demo-frame {
  max-width: 880px;
  margin: 0 auto 48px;
}
.demo-frame-bezel {
  background: linear-gradient(180deg, #1a2024 0%, #0f1316 100%);
  border-radius: 14px 14px 8px 8px;
  padding: 10px 10px 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  cursor: pointer;
}
.demo-frame-bezel:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.demo-fullscreen-hint {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.demo-fullscreen-hint .fs-icon { font-size: 14px; line-height: 1; }
.demo-frame-bezel:hover .demo-fullscreen-hint,
.demo-frame-bezel:focus-visible .demo-fullscreen-hint {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  /* Touch devices: always show the hint so it's discoverable */
  .demo-fullscreen-hint { opacity: 1; transform: translateY(0); }
}
.demo-frame-bezel.is-fullscreen { cursor: default; }
.demo-frame-bezel.is-fullscreen .demo-fullscreen-hint { opacity: 0; }
.demo-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 8px;
}
.demo-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
}
.demo-frame-dot:nth-child(1) { background: #FF5F57; }
.demo-frame-dot:nth-child(2) { background: #FEBC2E; }
.demo-frame-dot:nth-child(3) { background: #28C840; }
.demo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #000;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.demo-caption {
  text-align: center;
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--charcoal-soft);
  font-style: italic;
}
.demo-subhead {
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .demo-frame-bezel { padding: 8px; }
  .demo-frame-bar { padding: 2px 6px 6px; }
  .demo-frame-dot { width: 8px; height: 8px; }
  .demo-subhead { font-size: 19px; }
}

/* ====== App Screenshot Gallery ====== */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.screenshot-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.screenshot-shot {
  width: 100%;
  max-width: 240px;
  border-radius: 26px;
  overflow: hidden;
  background: #0c0c0c;
  box-shadow: 0 14px 36px rgba(0,0,0,0.18), inset 0 0 0 6px rgba(255,255,255,0.06);
}
.screenshot-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.screenshot-meta {
  margin-top: 18px;
  text-align: center;
  max-width: 260px;
}
.screenshot-meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.screenshot-meta span {
  color: var(--charcoal-soft);
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .screenshot-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 440px) {
  .screenshot-grid { grid-template-columns: 1fr; }
}

/* ====== 3-Step Setup ====== */
.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.setup-step {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(44,53,57,0.08);
  padding: 32px 26px 26px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.setup-step .setup-num {
  position: absolute;
  top: -18px;
  left: 26px;
  background: var(--orange);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(224,122,60,0.40);
}
.setup-step .setup-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}
.setup-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--charcoal);
  line-height: 1.3;
}
.setup-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0;
}
@media (max-width: 820px) {
  .setup-steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ====== Childproof Callout ====== */
.childproof-callout {
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  max-width: 920px;
  margin: 36px auto 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.childproof-icon {
  font-size: 44px;
  line-height: 1;
}
.childproof-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--charcoal);
  line-height: 1.25;
}
.childproof-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin: 0 0 12px;
}
.childproof-content p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .childproof-callout {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
  .childproof-icon { font-size: 36px; }
}

/* ====== Launch Countdown / Embedded Checkout ====== */
.launch-zone {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.launch-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-bright);
  padding: 5px 14px;
  border: 1px solid rgba(244,153,78,0.40);
  border-radius: 999px;
  margin-bottom: 18px;
}
.launch-tag.live {
  color: #4ADE80;
  border-color: rgba(74,222,128,0.45);
  background: rgba(74,222,128,0.06);
}
.launch-zone h2 {
  color: #fff;
  margin-bottom: 24px;
}
.countdown-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 620px;
  margin: 0 auto 24px;
}
.cd-unit {
  background: rgba(232,228,219,0.06);
  border: 1px solid rgba(232,228,219,0.10);
  border-radius: 14px;
  padding: 22px 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--orange-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.cd-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,228,219,0.55);
  margin-top: 10px;
}
.launch-target {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  color: rgba(232,228,219,0.85);
  margin: 0 0 26px;
}
.launch-microcopy {
  font-size: 13px;
  color: rgba(232,228,219,0.55);
  margin: 10px 0 0;
}
.checkout-embed-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 760px;
  margin: 24px auto 0;
  text-align: left;
}
.checkout-embed-wrap .tc-v2-embeddable-target,
.checkout-embed-wrap iframe {
  display: block;
  width: 100% !important;
  border: 0;
}
/* Force the ThriveCart iframe to a fixed height. ThriveCart V2's
   embed defaults to a too-tall iframe (~1500px+) leaving a white-box
   gap below the actual cart content. Setting an explicit height with
   !important overrides ThriveCart's inline height attribute.

   The fallback (720px) is a sensible default for a single-product
   cart. To tune per-page, set the CSS custom property on the section:
     <section id="checkout" style="--tc-iframe-height: 820px;">
   If the buy button is clipped, increase. If there's still whitespace
   below, decrease. The postMessage listener in the countdown script
   will still apply ThriveCart's resize events when they fire, but
   this fixed height is the floor. */
.checkout-embed-wrap iframe {
  height: var(--tc-iframe-height, 3000px) !important;
  min-height: 0 !important;
  max-height: none !important;
}
@media (max-width: 600px) {
  .countdown-display { gap: 8px; }
  .cd-num { font-size: 38px; }
  .cd-unit { padding: 16px 4px 12px; }
  .cd-label { font-size: 10px; letter-spacing: 0.12em; }
  .checkout-embed-wrap { padding: 16px; }
}

/* ====== App vs. PDF Comparison ====== */
.app-vs-pdf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto 28px;
}
.contrast-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 30px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.contrast-card.passive {
  background: #F4F1EC;
  border: 1px solid rgba(44,53,57,0.08);
}
.contrast-card.passive .contrast-tag {
  background: rgba(184,101,74,0.12);
  color: var(--terracotta);
}
.contrast-card.active {
  border: 2px solid var(--moss);
  background: #fff;
}
.contrast-card.active .contrast-tag {
  background: rgba(74,124,89,0.12);
  color: var(--moss);
}
.contrast-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.contrast-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--charcoal);
  line-height: 1.25;
}
.contrast-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contrast-card ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  border-bottom: 1px solid rgba(44,53,57,0.06);
}
.contrast-card ul li:last-child { border-bottom: none; }
.contrast-card ul li::before {
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 16px;
  font-weight: 700;
}
.contrast-card.passive ul li::before { content: '✗'; color: var(--terracotta); }
.contrast-card.active ul li::before  { content: '✓'; color: var(--moss); }
.contrast-card ul li strong { color: var(--charcoal); }

.exec-quote {
  background: var(--charcoal);
  color: var(--bone);
  border-radius: var(--radius-md);
  padding: 26px 32px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.exec-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #fff;
}
.exec-quote .exec-quote-by {
  font-size: 12px;
  color: rgba(232,228,219,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 720px) {
  .app-vs-pdf { grid-template-columns: 1fr; }
}

/* ====== Multi-Kid Math ====== */
.kid-math-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto 26px;
}
.math-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
  border-top: 4px solid var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.math-card .math-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.math-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  margin: 6px 0 8px;
  color: var(--charcoal);
  line-height: 1.25;
}
.math-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin: 0;
}

.math-anchor {
  background: linear-gradient(135deg, #2C3539 0%, #1F262A 100%);
  color: var(--bone);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.math-anchor .anchor-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.math-anchor .anchor-side .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,228,219,0.60);
}
.math-anchor .anchor-side.alt .number {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(232,228,219,0.45);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 3px;
}
.math-anchor .anchor-side.us .number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--orange-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.math-anchor .anchor-side .desc {
  font-size: 13px;
  color: rgba(232,228,219,0.85);
  line-height: 1.4;
}
.math-anchor .anchor-side.us .desc { color: #fff; }
.math-anchor .anchor-divider {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(232,228,219,0.40);
}

@media (max-width: 900px) {
  .kid-math-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .math-anchor { grid-template-columns: 1fr; padding: 24px 22px; }
  .math-anchor .anchor-divider { font-size: 18px; }
}
@media (max-width: 480px) {
  .kid-math-grid { grid-template-columns: 1fr; }
}

/* ====== Strong-Willed Child Section ====== */
.will-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.will-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 28px 26px;
  border-top: 4px solid;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.will-card.no  { border-top-color: var(--terracotta); }
.will-card.yes { border-top-color: var(--moss); }
.will-card .will-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.will-card.no  .will-tag { color: var(--terracotta); }
.will-card.yes .will-tag { color: var(--moss); }
.will-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--charcoal);
  line-height: 1.25;
}
.will-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin: 0;
}
.will-quote {
  background: #fff;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.will-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0 0 12px;
}
.will-quote .will-quote-by {
  font-size: 13px;
  color: var(--charcoal-soft);
}
@media (max-width: 720px) {
  .will-grid { grid-template-columns: 1fr; }
}

/* ====== Instant Access Badge ====== */
.instant-access-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(74,124,89,0.10);
  border: 1px solid rgba(74,124,89,0.30);
  border-radius: 12px;
  padding: 11px 18px;
  margin: 16px auto 4px;
  text-align: left;
  max-width: 460px;
}
.instant-access-badge .iab-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.instant-access-badge .iab-content {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.35;
}
.instant-access-badge .iab-content strong {
  font-weight: 700;
  color: var(--moss);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.instant-access-badge .iab-content span {
  color: var(--charcoal-soft);
  font-size: 13px;
  margin-top: 2px;
}
.instant-access-badge.on-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(244,153,78,0.40);
}
.instant-access-badge.on-dark .iab-content strong { color: var(--orange-bright); }
.instant-access-badge.on-dark .iab-content span { color: rgba(232,228,219,0.78); }

/* ====== Customer Stories ====== */
.stories-cta {
  background: #fff;
  border: 1px solid rgba(44,53,57,0.10);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal-soft);
}
.stories-cta strong { color: var(--charcoal); }
.stories-cta a { color: var(--orange-deep); text-decoration: underline; }
.stories-cta a:hover { color: var(--orange); }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.story-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(44,53,57,0.08);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}
.story-card .story-stars {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.story-card .story-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.3;
  color: var(--charcoal);
  font-weight: 600;
  margin: 0 0 10px;
}
.story-card .story-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0 0 16px;
  flex: 1;
}
.story-card .story-attribution {
  border-top: 1px solid rgba(44,53,57,0.08);
  padding-top: 12px;
  font-size: 12.5px;
  line-height: 1.45;
}
.story-card .story-attribution strong {
  display: block;
  color: var(--charcoal);
  font-size: 13px;
  margin-bottom: 2px;
}
.story-card .story-attribution span {
  color: var(--charcoal-soft);
}
.story-card.placeholder {
  background: #FBF8F1;
  border-style: dashed;
}
@media (max-width: 720px) {
  .stories-grid { grid-template-columns: 1fr; }
  .story-card { padding: 20px 20px 18px; }
}

/* ====== At-a-glance scan panel ====== */
.scan-panel {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(44,53,57,0.10);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  padding: 28px 32px;
  max-width: 920px;
  margin: 0 auto;
}
.scan-panel .scan-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(224,122,60,0.10);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.scan-panel .scan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.scan-panel .scan-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal-soft);
}
.scan-panel .scan-icon {
  font-size: 22px;
  line-height: 1;
  padding-top: 2px;
}
.scan-panel .scan-list strong {
  display: block;
  color: var(--charcoal);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}
@media (max-width: 720px) {
  .scan-panel { padding: 22px 20px; }
  .scan-panel .scan-list li { grid-template-columns: 28px 1fr; gap: 10px; font-size: 14px; }
  .scan-panel .scan-icon { font-size: 20px; }
  .scan-panel .scan-list strong { font-size: 16px; }
}

/* ====== Mockup banner ====== */
.mockup-banner {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.mockup-banner strong { font-weight: 700; }

/* ====== Launch Announcement Banner ====== */
.launch-banner {
  background: var(--orange);
  color: #fff;
  padding: 11px 16px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.launch-banner .lb-pill {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 10px;
  vertical-align: middle;
}
.launch-banner .lb-strike {
  text-decoration: line-through;
  opacity: 0.75;
  font-weight: 400;
}
.launch-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 10px;
}
.launch-banner a:hover { opacity: 0.85; }
@media (max-width: 720px) {
  .launch-banner { font-size: 13px; padding: 10px 14px; }
  .launch-banner .lb-pill { display: block; margin: 0 auto 6px; }
  .launch-banner a { display: block; margin: 6px 0 0; }
}

/* ====== Founder pricing badge on the price card ====== */
.founder-stamp {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.founder-stamp .dot { color: rgba(255,255,255,0.65); margin: 0 6px; }
.price-tier {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin-bottom: 2px;
}
.price-tier.strike {
  text-decoration: line-through;
  opacity: 0.5;
}
.price-tier.strike strong { font-weight: 600; }
.price-tier .label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
  opacity: 0.7;
}
.spots-line {
  margin-top: 14px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.spots-line .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ====== v2 Font Swap: Warm Serif Headings + Larger Body ====== */
body { font-size: 18px; }

h1, h2, h3,
.pull-quote,
.feature h3,
.parent-card h4,
.path h4,
.addon h4,
.founder-content h3,
.value-stack h4,
.objection .q,
.faq summary,
.timeline .step h4,
.promise h2,
.value-stack .total-row {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  text-transform: none;
}

h1, h2, h3, .promise h2 {
  font-weight: 600;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(40px, 5.8vw, 58px); line-height: 1.08; }
h2 { font-size: clamp(30px, 4.2vw, 42px); line-height: 1.1; }
h3 { font-size: 26px; line-height: 1.18; }

.pull-quote {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature h3        { font-size: 22px; font-weight: 600; }
.parent-card h4    { font-size: 19px; font-weight: 600; }
.path h4           { font-size: 23px; font-weight: 600; }
.addon h4          { font-size: 19px; font-weight: 600; }
.timeline .step h4 { font-size: 18px; font-weight: 600; }
.faq summary       { font-size: 18px; font-weight: 600; letter-spacing: 0; }
.objection .q      { font-size: 20px; font-weight: 600; font-style: italic; }
.founder-content h3{ font-size: 24px; font-weight: 600; }
.value-stack h4    { font-size: 22px; font-weight: 600; }
.value-stack .total-row      { font-weight: 700; font-size: 20px; }
.value-stack .total-row.real { font-size: 28px; }

/* Mobile tuning */
@media (max-width: 720px) {
  body { font-size: 17px; }
  h1 { font-size: 36px; line-height: 1.1; }
  h2 { font-size: 28px; }
  .pull-quote { font-size: 24px; }
}

/* ====== Cookie Consent Banner — brand styling override ====== */
#cc-main {
  --cc-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cc-bg: #ffffff;
  --cc-primary-color: #2C3539;
  --cc-secondary-color: #3D464A;

  /* Primary button = Accept all (Burnt Orange CTA) */
  --cc-btn-primary-bg: #E07A3C;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border-color: #E07A3C;
  --cc-btn-primary-hover-bg: #C5662A;
  --cc-btn-primary-hover-color: #ffffff;
  --cc-btn-primary-hover-border-color: #C5662A;

  /* Secondary button = Customize (Charcoal outlined) */
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-color: #2C3539;
  --cc-btn-secondary-border-color: #2C3539;
  --cc-btn-secondary-hover-bg: #2C3539;
  --cc-btn-secondary-hover-color: #ffffff;
  --cc-btn-secondary-hover-border-color: #2C3539;

  /* Toggle switches in preferences modal */
  --cc-toggle-bg-on: #E07A3C;
  --cc-toggle-bg-off: #999999;
  --cc-toggle-bg-readonly: #cccccc;
  --cc-toggle-knob-bg: #ffffff;
  --cc-toggle-knob-icon-color: #E07A3C;

  /* Category section backgrounds in preferences modal */
  --cc-cookie-category-block-bg: #F4F1EC;
  --cc-cookie-category-block-border: #DDD8CC;
  --cc-cookie-category-block-bg-hover: #E8E4DB;
  --cc-cookie-category-block-border-hover: #DDD8CC;
  --cc-section-border: rgba(44, 53, 57, 0.10);
  --cc-cookie-table-border: rgba(44, 53, 57, 0.10);

  /* Overlay (preferences modal backdrop) */
  --cc-overlay-bg: rgba(44, 53, 57, 0.65);

  /* Misc */
  --cc-separator-border-color: rgba(44, 53, 57, 0.12);
  --cc-modal-border-radius: 14px;
  --cc-btn-border-radius: 999px;
  --cc-pm-toggle-border-radius: 999px;
}
/* Use Fraunces for modal titles to match brand */
#cc-main .cm__title,
#cc-main .pm__title,
#cc-main .pm__section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
/* Tighter shadow on modals */
#cc-main .cm,
#cc-main .pm {
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* ====== Email Capture Modal ====== */
.ls-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
body.ls-modal-locked { overflow: hidden; }

.ls-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ls-modal.is-open {
  opacity: 1; visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.ls-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(44, 53, 57, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.ls-modal-content {
  position: relative;
  background: var(--bone);
  color: var(--charcoal);
  border-radius: 20px;
  padding: 44px 40px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.25s ease;
  text-align: center;
}
.ls-modal.is-open .ls-modal-content {
  transform: scale(1) translateY(0);
}
.ls-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: transparent; border: none;
  color: var(--charcoal-soft);
  font-size: 28px; line-height: 1;
  cursor: pointer; padding: 4px 10px;
  border-radius: 50%;
  transition: all 0.15s;
}
.ls-modal-close:hover {
  background: rgba(44, 53, 57, 0.08);
  color: var(--charcoal);
}

.ls-modal-stamp {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.ls-modal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.ls-modal-sub {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.5;
  margin: 0 0 22px;
}
.ls-modal-sub strong { color: var(--charcoal); }

#ls-lead-form { display: flex; flex-direction: column; gap: 10px; }
#ls-email-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(44, 53, 57, 0.18);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#ls-email-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 122, 60, 0.18);
}
#ls-email-input.error {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 101, 74, 0.18);
}
.ls-submit-btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(224, 122, 60, 0.30);
  transition: all 0.15s;
  position: relative;
}
.ls-submit-btn:hover:not(:disabled) {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(224, 122, 60, 0.42);
}
.ls-submit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.ls-submit-btn .ls-btn-loader {
  display: none;
}
.ls-submit-btn.loading .ls-btn-label { display: none; }
.ls-submit-btn.loading .ls-btn-loader { display: inline; }
.ls-form-error {
  background: rgba(184, 101, 74, 0.10);
  color: var(--terracotta);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.ls-trust {
  font-size: 12px;
  color: var(--charcoal-soft);
  margin: 6px 0 0;
  line-height: 1.5;
}
.ls-trust a, .ls-skip-link {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}
.ls-trust a:hover, .ls-skip-link:hover { color: var(--orange); }

/* Success state */
.ls-modal-check {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 700;
}
.ls-skip-cta {
  display: inline-block;
  margin: 6px 0 18px;
  font-size: 13px;
}
.ls-close-cta {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  padding: 10px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.ls-close-cta:hover {
  background: var(--charcoal);
  color: var(--bone);
}
.ls-success-download {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  margin: 12px 0 16px;
  box-shadow: 0 4px 14px rgba(224, 122, 60, 0.40);
  transition: all 0.15s;
}
.ls-success-download:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(224, 122, 60, 0.48);
  color: #fff;
}

/* ====== Inline lead-magnet section (bottom of page) ====== */
.lead-magnet-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.lead-magnet-card .lm-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(224,122,60,0.10);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lead-magnet-card h2 {
  margin: 8px 0 10px;
  font-size: 26px;
  line-height: 1.2;
}
.lead-magnet-card .lm-text-body {
  color: var(--charcoal-soft);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.lm-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid rgba(44,53,57,0.20);
  border-radius: 10px;
  font-family: inherit;
  background: var(--bone);
  margin-bottom: 12px;
  box-sizing: border-box;
}
.lm-form input[type="email"]:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,122,60,0.15);
  background: #fff;
}
.lm-form input[type="email"].error { border-color: var(--terracotta); }
.lm-form button[type="submit"] {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 4px 12px rgba(224,122,60,0.30);
}
.lm-form button[type="submit"]:hover { background: var(--orange-deep); }
.lm-form button[type="submit"]:disabled { opacity: 0.65; cursor: wait; }
.lm-form-success {
  background: rgba(74,124,89,0.10);
  border-left: 3px solid var(--moss);
  padding: 12px 14px;
  margin: 12px 0 6px;
  font-size: 14px;
  color: var(--charcoal);
  border-radius: 0 6px 6px 0;
  line-height: 1.55;
}
.lm-form-success a { color: var(--orange-deep); text-decoration: underline; font-weight: 600; }
.lm-form-success.lm-form-already {
  background: rgba(244,153,78,0.10);
  border-left-color: var(--orange);
}
.lm-form-success.lm-form-rate-limited {
  background: rgba(44,53,57,0.06);
  border-left-color: var(--charcoal-soft);
  color: var(--charcoal-soft);
}
.lm-resend-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background 0.15s;
}
.lm-resend-btn:hover { background: var(--orange-deep); }
.lm-resend-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Slide-in resend button (mirrors .lm-resend-btn but tighter) */
.slide-in-resend-btn {
  display: block;
  margin: 10px auto 0;
  padding: 7px 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.slide-in-resend-btn:hover { background: var(--orange-deep); }
.slide-in-extra { margin-top: 8px; text-align: center; }

/* Main modal resend button (matches the existing close-cta visual weight) */
.ls-modal-resend-block { margin: 12px 0 8px; text-align: center; }
.ls-modal-resend-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 3px 10px rgba(224,122,60,0.30);
}
.ls-modal-resend-btn:hover { background: var(--orange-deep); }
.lm-form-error {
  color: var(--terracotta);
  font-size: 13px;
  margin: 8px 0 0;
}
.lm-form-trust {
  font-size: 12px;
  color: var(--charcoal-soft);
  margin: 10px 0 0;
}
@media (max-width: 720px) {
  .lead-magnet-card { grid-template-columns: 1fr; padding: 28px 24px; gap: 22px; }
  .lead-magnet-card h2 { font-size: 22px; }
}

/* ====== Quick-nav lead-magnet mini-form ====== */
.qn-lead-magnet {
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(44,53,57,0.08);
  margin-top: 4px;
}
.qn-lm-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin: 0 0 8px;
}
.qn-lm-form {
  display: flex;
  gap: 6px;
}
.qn-lm-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 9px 11px;
  font-size: 13.5px;
  border: 1px solid rgba(44,53,57,0.18);
  border-radius: 8px;
  font-family: inherit;
  background: var(--bone);
}
.qn-lm-form input[type="email"]:focus { outline: none; border-color: var(--orange); background: #fff; }
.qn-lm-form input[type="email"].error { border-color: var(--terracotta); }
.qn-lm-form button[type="submit"] {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}
.qn-lm-form button[type="submit"]:hover { background: var(--orange-deep); }
.qn-lm-form button[type="submit"]:disabled { opacity: 0.65; }
.qn-lm-success {
  font-size: 12px;
  color: var(--moss);
  margin: 8px 0 0;
  font-weight: 600;
}
.qn-lm-success a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }

/* ====== Engagement-triggered slide-in (lead magnet for engaged readers) ====== */
.slide-in {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.04);
  padding: 22px 24px 18px;
  z-index: 90;
  animation: slideInUp 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border: 1px solid rgba(44,53,57,0.08);
}
@keyframes slideInUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.slide-in.dismissing { animation: slideOutDown 0.22s forwards; }
@keyframes slideOutDown {
  to { transform: translateY(20px); opacity: 0; }
}
.slide-in[hidden] { display: none; }
.slide-in-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: rgba(44,53,57,0.40);
  cursor: pointer;
  padding: 4px 8px;
  font-family: inherit;
}
.slide-in-close:hover { color: var(--charcoal); }
.slide-in-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  padding: 3px 10px;
  background: rgba(224,122,60,0.10);
  border-radius: 999px;
  margin: 0 0 10px;
}
.slide-in-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.slide-in-body {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--charcoal-soft);
  margin: 0 0 14px;
}
.slide-in-form {
  display: flex;
  gap: 6px;
  margin: 0 0 8px;
}
.slide-in-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid rgba(44,53,57,0.20);
  border-radius: 8px;
  font-family: inherit;
  background: var(--bone);
  color: var(--charcoal);
}
.slide-in-form input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,122,60,0.15);
  background: #fff;
}
.slide-in-form input.error { border-color: var(--terracotta); }
.slide-in-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.slide-in-form button:hover { background: var(--orange-deep); }
.slide-in-form button:disabled { opacity: 0.65; cursor: wait; }
.slide-in-trust {
  font-size: 11px;
  color: var(--charcoal-soft);
  margin: 0;
}
.slide-in-check {
  font-size: 28px;
  color: var(--moss);
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}
.slide-in-download {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin: 6px 0 8px;
  box-shadow: 0 3px 10px rgba(224,122,60,0.32);
  transition: all 0.15s;
}
.slide-in-download:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  /* Mobile: reposition slide-in to a full-width card above the sticky CTA.
     Sticky CTA is ~88px tall on mobile; we sit just above it with 8px gap. */
  .slide-in {
    bottom: 96px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    padding: 16px 18px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.06);
  }
  .slide-in-title { font-size: 18px; }
  .slide-in-body { font-size: 13px; margin-bottom: 12px; }
  .slide-in-form input { padding: 11px 12px; font-size: 14px; } /* prevent iOS zoom-on-focus by keeping >= 14px */
  .slide-in-form button { padding: 11px 16px; }
}

@media (max-width: 540px) {
  .ls-modal-content { padding: 36px 24px 28px; }
  .ls-modal-title { font-size: 24px; }
  .ls-modal-sub { font-size: 14px; }
}
