/* SabaComfort design system */
:root {
  /* Parent brand surfaces */
  --cream: #FAF8F4;
  --beige: #F5F3EF;
  --beige-deep: #EFEBE3;
  --charcoal: #1A1A1A;
  --warm-gray: #6B6660;
  --warm-gray-soft: #8F8A83;
  --gold: #C9A96E;
  --gold-soft: #E0CFA8;
  --rule: #E5E0D6;

  /* Product accent (B³ only) */
  --green: #7FB069;
  --green-deep: #6A9657;
  --green-soft: #DDE8D2;

  /* Type */
  --display: 'Montserrat', system-ui, sans-serif;
  --body: 'Lato', system-ui, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 128px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Type */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 700; }
p  { margin: 0 0 1em; color: var(--charcoal); }
.lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--warm-gray); line-height: 1.55; max-width: 60ch; }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow.green { color: var(--green-deep); }

/* Layout */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: var(--section-y) 0; }
.divider { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--charcoal);
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { margin-left: 10px; }
.btn sup { margin-left: 0.04em; }
.btn:hover { background: #2b2b2b; transform: translateY(-1px); }
.btn--green { background: var(--green); border-color: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 243, 239, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--rule); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark svg { display: block; }
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
}
.nav .btn { padding: 10px 18px; font-size: 13px; color: var(--cream); }
.nav .btn:hover { color: var(--cream); }
.nav .btn--green { color: #fff; }
.nav .btn--green:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--charcoal);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--gutter) 24px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    box-shadow: 0 14px 30px -16px rgba(26,26,26,0.18);
  }
  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s;
  }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 16px; }
  .nav a:last-of-type { border-bottom: 0; }
  .nav .btn { margin-top: 12px; align-self: flex-start; }
}

/* B³ mark — global superscript treatment so B³ always reads as one tight unit */
sup {
  font-size: 0.6em;
  line-height: 0;
  vertical-align: 0.55em;
  margin-left: 0.02em;
  font-weight: inherit;
  letter-spacing: 0;
}
.b3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  padding: clamp(56px, 9vw, 120px) 0 var(--section-y);
  position: relative;
}
.hero-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 18px; }
.hero .lede { margin-bottom: 32px; }
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--warm-gray);
  display: flex; align-items: center; gap: 10px;
}
.hero-meta::before {
  content: "";
  width: 18px; height: 1px; background: var(--gold);
}

.hero-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--beige-deep);
  aspect-ratio: 4/5;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(26,26,26,0.04);
  border-radius: inherit;
  pointer-events: none;
}

/* Cards & grids */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 30px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--rule);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.value-card:hover { transform: translateY(-2px); border-color: var(--gold-soft); }
.value-card .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--warm-gray); margin: 0; font-size: 16px; }

/* Product callout card */
.product-card {
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--rule);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  transition: border-color .3s var(--ease);
}
.product-card:hover { border-color: var(--green-soft); }
@media (max-width: 820px) { .product-card { grid-template-columns: 1fr; } }
.product-card .copy {
  padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.product-card .img {
  background: var(--beige-deep);
  min-height: 320px;
  position: relative;
}
.product-card .img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* Pills */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
}
.pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-deep);
}

/* Forms */
.form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  flex-wrap: wrap;
}
.form input[type="email"] {
  flex: 1 1 240px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form input[type="email"]:focus {
  outline: none;
  border-color: var(--charcoal);
  background: #fff;
}
.form .form-note {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 4px;
}
.form .form-success {
  flex-basis: 100%;
  font-size: 15px;
  color: var(--green-deep);
  font-family: var(--display);
  font-weight: 600;
  margin-top: 6px;
  display: none;
}
.form.is-success input[type="email"], .form.is-success button { display: none; }
.form.is-success .form-success { display: block; }

/* Section heading block */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--warm-gray); margin: 0; font-size: 17px; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.two-col .text p { color: var(--charcoal); }
.two-col .text p + p { margin-top: 1em; }

/* Quote/callout */
.callout {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--charcoal);
  font-style: italic;
}

/* Steps list */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0; margin: 0;
  display: grid;
  gap: 18px;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  padding-top: 4px;
}
.steps li h4 { margin: 0 0 4px; font-size: 18px; }
.steps li p { margin: 0; color: var(--warm-gray); }

/* Footer */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 64px 0 36px;
  margin-top: 0;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) { .site-footer .container { grid-template-columns: 1fr; gap: 32px; } }
.site-footer .col h5 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.site-footer .col a {
  display: block;
  font-size: 14px;
  color: var(--warm-gray);
  padding: 5px 0;
  transition: color .2s var(--ease);
}
.site-footer .col a:hover { color: var(--charcoal); }
.site-footer .tagline {
  font-size: 14px;
  color: var(--warm-gray);
  margin-top: 16px;
  max-width: 32ch;
}
.site-footer .legal {
  border-top: 1px solid var(--rule);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--warm-gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Final CTA section */
.final-cta {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.final-cta .container { max-width: 720px; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--warm-gray); margin-bottom: 28px; }
.final-cta .form { margin: 0 auto; justify-content: center; }

/* Honest expectations callout */
.note-block {
  padding: 24px 28px;
  background: var(--beige-deep);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  font-size: 15px;
  color: var(--warm-gray);
}
.note-block strong { color: var(--charcoal); }

/* Timing diagram */
.timing-wrap { background: var(--cream); border: 1px solid var(--rule); border-radius: 14px; padding: clamp(24px, 4vw, 48px); }
.timing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 820px) { .timing-row { grid-template-columns: 1fr; } }
.timing-card { padding: 24px; border-radius: 12px; background: var(--beige); }
.timing-card.good { border: 1px solid var(--green-soft); background: #F1F6EC; }
.timing-card.bad { border: 1px solid var(--rule); }
.timing-card h4 { margin: 0 0 6px; font-size: 16px; }
.timing-card .small { font-size: 13px; color: var(--warm-gray); margin-bottom: 14px; }
.timing-card .flow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 13px; font-weight: 600;
  color: var(--charcoal);
}
.timing-card.good .flow .step { background: var(--green); color: #fff; }
.timing-card.bad .flow .step { background: var(--warm-gray-soft); color: #fff; }
.timing-card .flow .step { padding: 8px 12px; border-radius: 8px; }
.timing-card .flow .arrow { color: var(--warm-gray); }

/* Resource card */
.resource-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 820px) { .resource-card { grid-template-columns: 1fr; } }
.resource-cover {
  background: linear-gradient(160deg, var(--beige-deep), var(--cream));
  aspect-ratio: 3/4;
  border-radius: 10px;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.resource-cover::after {
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  opacity: 0.6;
}
.resource-cover .small {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--gold); font-weight: 600;
  font-family: var(--display);
}
.resource-cover .title {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
}
.resource-cover .author {
  font-size: 12px; color: var(--warm-gray);
  font-family: var(--body); font-style: italic;
}

/* Bullets */
ul.clean { list-style: none; padding: 0; margin: 0; }
ul.clean li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed var(--rule);
  color: var(--charcoal);
  font-size: 16px;
}
ul.clean li:last-child { border-bottom: 0; }
ul.clean li::before {
  content: "";
  position: absolute; left: 4px; top: 19px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
ul.clean.green li::before { border-color: var(--green); }

/* Story strip */
.story-strip {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.story-strip .container { max-width: 720px; }
.story-strip p { color: var(--warm-gray); }

/* Brand promise rail */
.rail {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}
.rail span { display: inline-flex; gap: 10px; align-items: center; }
.rail span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Mythbuster grid */
.myth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .myth-grid { grid-template-columns: 1fr; } }
.myth-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--rule);
}
.myth-card .label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 12px;
}
.myth-card .myth { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--charcoal); margin-bottom: 6px; }
.myth-card .truth { font-size: 15px; color: var(--warm-gray); margin: 0; }

/* Inline product mark display */
.b3-display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.04em;
  color: var(--charcoal);
  line-height: 1;
}
.b3-display sup {
  font-size: 0.5em;
  vertical-align: 0.65em;
  color: var(--green);
  font-weight: 800;
  margin-left: 2px;
}

/* =========================================================
   Homepage v2 — conversion-focused styles
   ========================================================= */

/* Hero v2 — tighter, guide-CTA-dominant */
.hero-v2 {
  padding: clamp(28px, 3vw, 44px) 0 clamp(32px, 3.5vw, 52px);
}
.hero-v2 .hero-grid { gap: clamp(28px, 4vw, 56px); align-items: center; grid-template-columns: 1.25fr 0.85fr; }
@media (max-width: 820px) { .hero-v2 .hero-grid { grid-template-columns: 1fr; } }
.hero-v2 h1 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero-v2 .lede {
  font-size: clamp(16px, 1.35vw, 18px);
  margin-bottom: 22px;
  max-width: 52ch;
  line-height: 1.5;
}
.hero-v2 .lede em { font-style: italic; color: var(--charcoal); font-weight: 700; }
.hero-v2 .hero-cta-row { gap: 22px; align-items: center; }
.hero-v2 .text-link {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.hero-v2 .text-link:hover { border-bottom-color: var(--charcoal); }
.hero-v2 .reassure {
  margin-top: 18px;
  font-size: 13px;
  color: var(--warm-gray);
}
.hero-v2 .hero-img-wrap { aspect-ratio: 1/1; max-height: 380px; align-self: center; }

/* Guide section (Section 2) — the conversion engine */
.guide-section { background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(48px, 5.5vw, 80px) 0; }
.guide-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .guide-grid { grid-template-columns: 1fr; } }
.guide-section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin-bottom: 18px;
}
.guide-section p { color: var(--warm-gray); margin-bottom: 14px; }
.guide-section .check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.guide-section .check-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--charcoal);
}
.guide-section .check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.2l3 3 6-6.4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.guide-aside { display: flex; flex-direction: column; gap: 28px; align-items: stretch; }
.guide-cover {
  background: linear-gradient(160deg, var(--beige-deep), var(--cream));
  aspect-ratio: 3/4;
  border-radius: 12px;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  box-shadow: 0 18px 40px -22px rgba(26,26,26,0.28);
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.guide-cover:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -22px rgba(26,26,26,0.32); }
.guide-cover::after {
  content: "";
  position: absolute; right: -36px; bottom: -36px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.guide-cover .small {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--display);
}
.guide-cover .title {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
}
.guide-cover .author {
  font-size: 12px;
  color: var(--warm-gray);
  font-family: var(--body);
  font-style: italic;
  margin: 8px 0 0;
}

.guide-form-wrap {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px;
}
.guide-form-wrap label {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.guide-form-wrap .form { max-width: none; }
.guide-form-wrap .form input[type="email"] { flex: 1 1 100%; }
.guide-form-wrap .form button { width: 100%; justify-content: center; }
.guide-form-wrap .micro {
  font-size: 12px;
  color: var(--warm-gray);
  margin: 14px 0 0;
  line-height: 1.55;
}

/* Reframe section */
.reframe-section { padding: clamp(56px, 7vw, 96px) 0; }
.reframe-section .container { max-width: 820px; }
.reframe-section h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  margin-bottom: 24px;
}
.reframe-section .stack p {
  color: var(--warm-gray);
  font-size: 17px;
  margin: 0 0 14px;
}
.reframe-section .stack p em { font-style: italic; color: var(--charcoal); font-weight: 700; }

.timeline-wrap {
  margin-top: 36px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 32px);
}
.timeline-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; flex-wrap: wrap; }
.timeline-row + .timeline-row { border-top: 1px solid var(--gold-soft); margin-top: 4px; padding-top: 18px; }
.timeline-row .label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  min-width: 78px;
  color: var(--warm-gray);
}
.timeline-row.is-good .label { color: var(--green-deep); }
.timeline-row .step {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--beige);
  color: var(--warm-gray-soft);
  white-space: nowrap;
}
.timeline-row.is-good .step { background: var(--green-soft); color: var(--green-deep); }
.timeline-row .arrow { color: var(--warm-gray); font-family: var(--display); font-weight: 600; }
.timeline-row.is-good .arrow { color: var(--green-deep); }

/* Boo's story section */
.story-section { background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(64px, 8vw, 110px) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
.story-section h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.story-section p { color: var(--warm-gray); margin-bottom: 14px; }
.story-section .text-link-arrow {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.story-section .text-link-arrow:hover { color: var(--gold); }
.story-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--beige-deep);
  position: relative;
  box-shadow: 0 1px 0 rgba(26,26,26,.04), 0 18px 40px -22px rgba(26,26,26,.18);
}
.story-image img { width: 100%; height: auto; display: block; }
.story-caption {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: italic;
  color: var(--warm-gray);
  text-align: center;
}

/* Meet B³ card section */
.b3-section { padding: clamp(64px, 8vw, 110px) 0; }
.b3-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
  transition: border-color .3s var(--ease);
}
.b3-card:hover { border-color: var(--green-soft); }
.b3-card h2 { font-size: clamp(28px, 3.2vw, 36px); margin-bottom: 16px; }
.b3-card > p { color: var(--warm-gray); max-width: 56ch; margin: 0 auto 28px; }
.b3-card .pill-row { justify-content: center; margin-bottom: 30px; }
.b3-card .b3-cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.b3-card .b3-cta-row--single { margin-bottom: 12px; }

/* Hero-style product name (BooBear Bubbles) */
.product-name {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--charcoal);
}
.product-name__short {
  font-weight: 700;
  color: var(--green-soft);
  font-size: 0.55em;
  letter-spacing: 0;
  vertical-align: middle;
  margin-left: 8px;
}
.product-name__short sup { font-size: 0.7em; }
.product-tagline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--gold);
  margin: 0 auto 22px;
  letter-spacing: 0.01em;
}
.product-tagline sup { font-weight: 700; }
.b3-cta-sub {
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--warm-gray);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.ty-cta-row--single { margin-bottom: 10px; }

.b3-card .tertiary-link {
  font-family: var(--body);
  font-size: 14px;
  color: var(--warm-gray);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.b3-card .tertiary-link:hover { color: var(--charcoal); border-bottom-color: var(--gold); }

/* Trust cards section */
.trust-section { background: var(--beige); padding: clamp(64px, 8vw, 110px) 0; }
.trust-section .section-head { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: clamp(36px, 5vw, 56px); }
.trust-section .section-head h2 { font-size: clamp(24px, 2.6vw, 30px); font-weight: 600; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 30px 26px;
  border: 1px solid var(--rule);
  position: relative;
  transition: transform .3s var(--ease);
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.trust-card:hover { transform: translateY(-2px); }
.trust-card h3 { font-size: 18px; font-weight: 600; margin: 14px 0 10px; }
.trust-card p { font-size: 15px; color: var(--warm-gray); margin: 0; line-height: 1.55; }

/* Final CTA v2 */
.final-cta-v2 { background: var(--cream); border-top: 1px solid var(--rule); padding: clamp(72px, 9vw, 120px) 0; text-align: center; }
.final-cta-v2 .container { max-width: 720px; }
.final-cta-v2 h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.final-cta-v2 > .container > p { color: var(--warm-gray); margin-bottom: 32px; font-size: 17px; }
.btn--green-lg { padding: 19px 36px; font-size: 16px; }
.final-cta-v2 .micro { font-size: 12px; color: var(--warm-gray); margin: 18px 0 0; }

/* Thank-you page */
.ty-hero { padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 6vw, 80px); text-align: center; }
.ty-hero .container { max-width: 720px; }
.ty-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ty-hero .lede { color: var(--warm-gray); margin: 0 auto 32px; }
.ty-hero .download-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  transition: all .25s var(--ease);
}
.ty-hero .download-btn:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }
.ty-hero .download-btn .arrow { margin-left: 12px; transition: transform .25s var(--ease); }
.ty-hero .download-btn:hover .arrow { transform: translateX(3px); }

.ty-pitch { background: var(--cream); border-top: 1px solid var(--rule); padding: clamp(64px, 8vw, 110px) 0; }
.ty-pitch .container { max-width: 720px; text-align: center; }
.ty-pitch .eyebrow { color: var(--gold); margin-bottom: 14px; }
.ty-pitch h2 { font-size: clamp(28px, 3.2vw, 36px); margin-bottom: 18px; }
.ty-pitch p { color: var(--warm-gray); margin-bottom: 14px; }
.ty-pitch .ty-cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 28px; }
.ty-pitch .tertiary-link {
  font-family: var(--body);
  font-size: 14px;
  color: var(--warm-gray);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.ty-pitch .tertiary-link:hover { color: var(--charcoal); border-bottom-color: var(--gold); }

/* Guide cover mark — typographic detail in the lead-magnet cover */
.guide-cover-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 12px 0;
  position: relative;
  z-index: 1;
}
.guide-cover-mark .cover-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.guide-cover-mark .cover-meta {
  font-family: var(--body);
  font-style: italic;
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.45;
  max-width: 22ch;
}
.guide-cover-mark .pages-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Photo timeline placeholder — About page. 4-up grid, gracefully collapses on mobile. */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.photo-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--beige, #F5F3EF);
  border: 1px dashed var(--rule, #E5E1DA);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
}
.photo-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-cell .caption {
  position: relative;
  z-index: 1;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: var(--warm-gray, #6B6660);
  background: rgba(245,243,239,.85);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.photo-cell.placeholder { background: repeating-linear-gradient(45deg, #F5F3EF, #F5F3EF 8px, #EDEAE3 8px, #EDEAE3 16px); }
@media (max-width: 640px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}
