.btbd-page-root {
  --navy: #3d5480;
  --navy-dark: #3d5480;
  --blue: #24a9df;
  --blue-soft: #d9f0fa;
  --rust: #f7d35b;
  --rust-dark: #3d5480;
  --peach: #fff2c7;
  --yellow: #f7d35b;
  --cream: #fcf9f5;
  --warm-white: #fffdf9;
  --ink: #182338;
  --muted: #626b78;
  --line: #dedbd5;
}

* { box-sizing: border-box; }
.btbd-page-root { scroll-behavior: smooth; }
.btbd-page-root {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.btbd-page-root a { color: inherit; }
.btbd-page-root img { display: block; max-width: 100%; height: auto; }
.shell { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }
.narrow { width: min(940px, calc(100% - 56px)); }
.section-pad { padding: 108px 0; }
.center { text-align: center; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--rust-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow.light { color: #c9ebf8; }
.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.035em;
}
.section-title.light { color: white; }

.top-strip {
  min-height: 40px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 14px;
  font-weight: 600;
}
.top-strip a { font-weight: 700; text-underline-offset: 3px; }
.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--warm-white);
}
.brand img { width: 188px; height: auto; }
.header-link {
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.header-link span { margin-left: 6px; color: var(--blue); }
.brand-ribbon { height: 7px; display: flex; overflow: hidden; }
.brand-ribbon span { flex: 1; transform: skewX(-18deg) scaleX(1.04); }
.brand-ribbon span:nth-child(1) { background: #355d99; }
.brand-ribbon span:nth-child(2) { background: #18a6d8; }
.brand-ribbon span:nth-child(3) { background: #d66355; }
.brand-ribbon span:nth-child(4) { background: #ef9e59; }
.brand-ribbon span:nth-child(5) { background: #f3c94f; }

.hero {
  padding: 72px 0 82px;
  overflow: hidden;
  background: #eef2f8;
}
.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 50px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(45px, 5.2vw, 70px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.05em;
}
.hero-copy h1 em { color: var(--blue); font-style: normal; }
.hero-lead {
  max-width: 640px;
  margin: 25px 0 29px;
  color: #4b5564;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-actions p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.hero-actions p strong, .hero-actions p span { display: block; }
.hero-actions p strong { color: var(--ink); font-size: 13px; }
.hero-sale-price { display: flex; align-items: baseline; gap: 8px; color: var(--navy); white-space: nowrap; }
.hero-sale-price del { color: var(--muted); font-size: 20px; opacity: .72; }
.hero-sale-price strong { color: var(--blue); font-size: 38px; line-height: 1; }
.hero-sale-price span { color: var(--navy); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.button {
  min-height: 58px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--yellow); box-shadow: 0 12px 26px rgba(61, 84, 128, .13); }
.button-primary:hover { background: #ffdc65; box-shadow: 0 15px 30px rgba(61, 84, 128, .18); }
.button-primary::after {
  content: "";
  width: 52px;
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -90px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  transform: skewX(-20deg);
  animation: button-shine 4.2s ease-in-out infinite;
}
@keyframes button-shine {
  0%, 66% { left: -90px; opacity: 0; }
  72% { opacity: .9; }
  90%, 100% { left: calc(100% + 55px); opacity: 0; }
}
.product-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-meta span { display: flex; align-items: center; gap: 10px; }
.product-meta span:not(:last-child)::after { content: ""; width: 4px; height: 4px; background: var(--rust); border-radius: 50%; }
.micro-proof {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #596373;
  font-size: 12px;
}
.checkmark {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.hero-product {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}
.product-backdrop {
  width: 86%;
  height: 78%;
  position: absolute;
  right: -4%;
  top: 9%;
  background: var(--navy);
  border-radius: 120px 18px 120px 18px;
}
.product-backdrop::before {
  content: "";
  width: 130px;
  height: 130px;
  position: absolute;
  left: -58px;
  bottom: -30px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  opacity: .45;
}
.hero-product img {
  width: 650px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 28px 26px rgba(47, 55, 67, .17));
}
.countdown-wrap {
  min-width: 410px;
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--navy);
  background: rgba(255,255,255,.96);
  border: 1px solid #eadfbc;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(61,84,128,.11);
}
.countdown-label { display: flex; flex-direction: column; line-height: 1.35; }
.countdown-label strong { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.countdown-label span { font-size: 14px; }
.countdown-time { display: flex; align-items: flex-start; gap: 6px; }
.countdown-time > span { min-width: 34px; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.countdown-time strong { font-size: 20px; }
.countdown-time small { margin-top: 5px; font-size: 14px; text-transform: uppercase; }
.countdown-time b { color: var(--blue); font-size: 18px; line-height: 1; }
.product-price {
  position: absolute;
  z-index: 3;
  right: 2px;
  top: 40px;
  padding: 13px 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(61, 84, 128, .16);
  transform: rotate(3deg);
}
.product-price span { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.product-price del { font-size: 14px; opacity: .65; }
.product-price strong { font-size: 24px; line-height: 1; }

.guide-proof {
  margin-top: -28px;
  position: relative;
  z-index: 5;
}
.guide-proof blockquote {
  margin: 0;
  padding: 25px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  background: white;
  border: 1px solid #e2e7ee;
  border-left: 6px solid var(--yellow);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(61, 84, 128, .1);
}
.guide-proof-mark { color: var(--blue); font-size: 48px; font-weight: 700; line-height: .7; }
.guide-proof p { margin: 0; font-size: 17px; font-weight: 500; line-height: 1.6; }
.guide-proof footer { display: flex; flex-direction: column; padding-left: 22px; border-left: 1px solid var(--line); white-space: nowrap; }
.guide-proof footer strong { font-size: 16px; }
.guide-proof footer span { color: var(--muted); font-size: 14px; }
.guide-proof + .recognition { padding-top: 80px; }

.recognition { background: var(--warm-white); }
.recognition .section-title { max-width: 800px; margin: 0 auto; }
.recognition-subhead {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
}
.moment-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 54px;
}
.moment-grid article {
  min-height: 155px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}
.moment-grid article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.moment-grid article span { color: var(--navy); font-size: 16px; font-weight: 700; letter-spacing: .08em; }
.moment-grid article p { margin: 0; color: #3d4653; font-size: 18px; line-height: 1.7; }
.bridge-copy {
  max-width: 785px;
  margin: 48px auto 0;
  color: var(--navy-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.story-section { color: white; background: var(--navy); }
.story-grid { display: grid; grid-template-columns: .98fr 1.02fr; align-items: center; gap: 76px; }
.story-photo { position: relative; order: 2; padding: 0 0 28px; }
.story-photo::before {
  content: "";
  position: absolute;
  inset: 32px -28px 0 44px;
  background: var(--blue-soft);
  border-radius: 70px 18px 70px 18px;
}
.story-photo img {
  width: 100%;
  height: 580px;
  position: relative;
  object-fit: cover;
  object-position: 72% center;
  border-radius: 60px 16px 60px 16px;
}
.photo-caption {
  width: 80%;
  position: absolute;
  z-index: 2;
  left: -28px;
  bottom: 0;
  padding: 20px 24px;
  color: var(--navy-dark);
  background: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.story-copy { order: 1; }
.story-copy .eyebrow { color: #bfe7f6; }
.story-copy .section-title { color: white; }
.story-copy > p:not(.eyebrow) { margin: 22px 0 0; color: #edf3fa; font-size: 17px; }
.story-copy blockquote {
  margin: 32px 0 0;
  padding: 20px 0 20px 25px;
  color: white;
  border-left: 3px solid var(--yellow);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.assumptions-section { color: var(--ink); background: var(--cream); }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; }
.assumptions-section .eyebrow.light { color: var(--rust-dark); }
.assumptions-section .section-title.light { color: var(--navy-dark); }
.split-heading > p { margin: 0 0 5px; color: #626a75; font-size: 16px; }
.assumption-list { margin-top: 64px; border-top: 1px solid var(--line); }
.assumption-card {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 66px 1fr 1.05fr;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}
.assumption-number { color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.assumption-card h3 { margin: 0; color: var(--navy-dark); font-size: 19px; font-weight: 700; line-height: 1.45; }
.assumption-card p { margin: 0; color: #59626e; font-size: 14px; }

.action-section { overflow: hidden; background: var(--warm-white); }
.action-grid { display: grid; grid-template-columns: 1fr .84fr; align-items: center; gap: 96px; }
.large-copy { margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.action-list { margin: 32px 0 0; padding: 0; display: grid; gap: 17px; list-style: none; }
.action-list li { display: grid; grid-template-columns: 26px 1fr; gap: 13px; color: #414b58; font-size: 15px; }
.action-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.guide-preview { min-height: 560px; position: relative; display: grid; place-items: center; }
.paper { width: min(420px, 92%); height: 500px; position: absolute; border-radius: 7px; box-shadow: 0 24px 48px rgba(42, 53, 70, .12); }
.paper-back { background: var(--navy); transform: rotate(5deg) translate(22px, -8px); }
.paper-front { padding: 50px 42px; background: white; border: 1px solid #dedede; transform: rotate(-2deg); }
.paper-label { margin-bottom: 24px; padding: 8px 13px; color: var(--navy-dark); background: var(--blue-soft); font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.paper-front h3 { margin: 0; color: var(--navy-dark); font-size: 23px; font-weight: 700; line-height: 1.3; }
.paper-front p { color: var(--muted); font-size: 13px; }
.writing-line { height: 1px; margin-top: 30px; display: block; background: #d4dce1; }
.writing-line.short { width: 66%; }
.paper-tip { position: absolute; left: 42px; right: 42px; bottom: 34px; padding-top: 15px; color: var(--rust-dark); border-top: 1px solid #ecd4ca; font-size: 11px; font-weight: 600; }

.fit-section { background: var(--peach); }
.fit-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 88px; }
.fit-copy { position: sticky; top: 40px; align-self: start; }
.fit-list { display: grid; }
.fit-item { padding: 24px 0; display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 17px; border-bottom: 1px solid rgba(73, 77, 85, .18); }
.fit-item:first-child { padding-top: 4px; }
.fit-item span { color: var(--rust-dark); font-size: 12px; font-weight: 700; }
.fit-item p { margin: 0; color: #394552; font-size: 16px; }

.offer-section { background: var(--cream); }
.offer-card {
  min-height: 650px;
  padding: 58px 68px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 56px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: 64px 16px 64px 16px;
}
.offer-image { position: relative; }
.offer-image::before { content: ""; width: 385px; height: 385px; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); background: #7595be; border-radius: 50%; opacity: .35; }
.offer-image img { position: relative; z-index: 1; filter: drop-shadow(0 24px 24px rgba(0,0,0,.2)); transform: scale(1.16); }
.offer-copy h2 { margin: 0; color: white; font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.13; letter-spacing: -.035em; }
.offer-details { margin: 28px 0; display: grid; gap: 15px; }
.offer-details > div { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.offer-details span { width: 24px; height: 24px; display: grid; place-items: center; color: var(--navy-dark); background: #bde8f8; border-radius: 50%; font-size: 11px; font-weight: 800; }
.offer-details p { margin: 0; color: #e7eef7; font-size: 13px; }
.offer-details strong { color: white; }
.offer-price { margin: 22px 0; display: flex; align-items: center; gap: 18px; }
.offer-price > strong { font-size: 46px; line-height: 1; }
.offer-price > div { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.offer-price span { color: #d3e0ed; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.offer-price del { color: #d3e0ed; font-size: 30px; line-height: 1; opacity: .82; }
.secure-line { margin: 12px 0 0; color: #d4e0ec; font-size: 11px; }

.about-section { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 82px; }
.about-image { position: relative; }
.about-image::before { content: ""; position: absolute; inset: 25px -20px -22px 28px; background: var(--blue-soft); border-radius: 60px 15px 60px 15px; }
.about-image img { width: 100%; height: 580px; position: relative; object-fit: cover; border-radius: 60px 15px 60px 15px; }
.about-copy > p:not(.eyebrow) { margin: 19px 0 0; color: #4b5562; font-size: 16px; }
.credentials { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.credentials span { padding: 8px 12px; color: var(--navy-dark); background: transparent; border: 1px solid #b8ccdb; border-radius: 999px; font-size: 11px; font-weight: 600; }

.testimonial-section { background: var(--blue-soft); }
.testimonial-section .section-title { max-width: 700px; margin: 0 auto; }
.testimonial-grid { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.testimonial-grid blockquote { margin: 0; padding: 10px 0 10px 28px; border-left: 2px solid var(--blue); }
.testimonial-grid blockquote p { margin: 0; color: var(--navy-dark); font-size: 17px; font-weight: 600; line-height: 1.6; }
.testimonial-grid footer { margin-top: 22px; color: var(--rust-dark); font-size: 12px; font-weight: 700; }
.testimonial-grid footer span { margin-left: 7px; color: var(--muted); font-weight: 400; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 90px; }
.faq-intro > p:last-child { color: var(--muted); font-size: 15px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; color: var(--navy-dark); cursor: pointer; list-style: none; font-size: 16px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 23px; line-height: 1; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -8px 42px 24px 0; color: var(--muted); font-size: 14px; }

.final-section { padding-top: 0; background: var(--cream); }
.final-card { padding: 80px 40px; color: white; background: var(--navy); border-radius: 60px 15px 60px 15px; text-align: center; }
.final-card .eyebrow { color: white; }
.final-card h2 { max-width: 850px; margin: 0 auto; color: white; font-size: clamp(36px, 4.7vw, 59px); font-weight: 700; line-height: 1.13; letter-spacing: -.04em; }
.final-card > p:not(.eyebrow) { max-width: 690px; margin: 23px auto 31px; color: #fff8f4; font-size: 16px; }
.final-card .button-primary { color: var(--navy); background: var(--yellow); box-shadow: none; }
.final-card .button-primary:hover { background: #ffdc65; }
.final-note { margin-top: 15px; display: block; color: white; font-size: 11px; }

.footer { padding: 42px 0 28px; color: #69717c; background: var(--warm-white); border-top: 1px solid var(--line); font-size: 11px; }
.footer-inner { display: flex; align-items: center; gap: 30px; }
.footer-brand { display: inline-block; flex: 0 0 auto; }
.footer-inner img { width: 155px; }
.footer-inner p { margin-right: auto; }
.footer-inner div { display: flex; gap: 18px; }
.footer-inner a { text-underline-offset: 3px; }
.disclaimer { margin-top: 20px; text-align: center; }
.mobile-checkout { display: none; }

@media (max-width: 980px) {
  .section-pad { padding: 86px 0; }
  .hero-grid, .story-grid, .action-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  .hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
  .hero-copy h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .product-meta, .micro-proof { justify-content: center; }
  .hero-product { min-height: 520px; max-width: 700px; margin: 0 auto; }
  .story-grid, .about-grid { gap: 54px; }
  .story-photo { max-width: 680px; margin: 0 auto; order: 1; }
  .story-copy { order: 2; }
  .split-heading, .fit-grid, .faq-grid { grid-template-columns: 1fr; gap: 46px; }
  .fit-copy { position: static; }
  .offer-card { grid-template-columns: 1fr; text-align: center; }
  .offer-image { width: min(560px, 100%); margin: 0 auto; }
  .offer-details { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
  .offer-price { justify-content: center; }
  .about-image { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .btbd-page-root { padding-bottom: 82px; font-size: 16px; }
  .shell, .narrow { width: min(100% - 34px, 1180px); }
  .section-pad { padding: 66px 0; }
  .eyebrow { margin-bottom: 12px; font-size: 14px; letter-spacing: .08em; }
  .section-title { font-size: clamp(31px, 9vw, 43px); line-height: 1.16; }
  .top-strip { min-height: 38px; font-size: 14px; }
  .top-strip span { display: none; }
  .site-header { height: 70px; }
  .brand img { width: 150px; }
  .header-link { display: none; }
  .brand-ribbon { height: 5px; }
  .hero { padding: 47px 0 48px; }
  .hero-grid { min-height: auto; gap: 22px; }
  .hero-copy h1 { font-size: clamp(38px, 11.3vw, 53px); line-height: 1.08; letter-spacing: -.045em; }
  .hero-lead { margin: 20px auto 25px; font-size: 16px; line-height: 1.68; }
  .hero-actions { align-items: center; gap: 11px; }
  .hero-sale-price { order: -1; }
  .hero-sale-price strong { font-size: 34px; }
  .hero-actions .button { width: min(100%, 340px); }
  .hero-actions p { text-align: center; }
  .product-meta { margin-top: 20px; gap: 7px 12px; font-size: 14px; }
  .product-meta span::after { display: none; }
  .micro-proof { margin-top: 18px; align-items: flex-start; text-align: left; }
  .hero-product { min-height: 355px; width: calc(100% + 18px); margin-left: -9px; }
  .product-backdrop { width: 87%; height: 77%; right: -3%; top: 10%; border-radius: 72px 12px 72px 12px; }
  .product-backdrop::before { width: 80px; height: 80px; left: -28px; bottom: -17px; }
  .hero-product img { width: 430px; }
  .product-price { top: 15px; right: 0; padding: 10px 14px; }
  .product-price span { font-size: 14px; }
  .product-price del { font-size: 15px; }
  .product-price strong { font-size: 20px; }
  .guide-proof { margin-top: -12px; }
  .guide-proof blockquote { padding: 23px 22px; grid-template-columns: 1fr; gap: 12px; }
  .guide-proof-mark { display: none; }
  .guide-proof p { font-size: 16px; line-height: 1.65; }
  .guide-proof footer { padding: 12px 0 0; flex-direction: row; gap: 8px; border-top: 1px solid var(--line); border-left: 0; }
  .guide-proof + .recognition { padding-top: 56px; }
  .moment-grid { margin-top: 37px; grid-template-columns: 1fr; }
  .moment-grid article { min-height: auto; padding: 22px 0; grid-template-columns: 35px 1fr; }
  .moment-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .moment-grid article:last-child { border-bottom: 1px solid var(--line); }
  .recognition-subhead { margin-top: 16px; font-size: 18px; line-height: 1.6; }
  .moment-grid article span { font-size: 16px; }
  .moment-grid article p { font-size: 17px; line-height: 1.7; }
  .bridge-copy { margin-top: 36px; font-size: 17px; line-height: 1.55; }
  .story-grid { gap: 43px; }
  .story-photo { padding-bottom: 24px; }
  .story-photo::before { inset: 25px -8px 0 22px; border-radius: 42px 12px 42px 12px; }
  .story-photo img { height: 390px; border-radius: 42px 12px 42px 12px; }
  .photo-caption { width: 93%; left: -4px; padding: 16px 18px; border-radius: 14px; font-size: 14px; }
  .story-copy > p:not(.eyebrow) { font-size: 15px; }
  .story-copy blockquote { font-size: 17px; }
  .split-heading { gap: 22px; }
  .assumption-list { margin-top: 38px; }
  .assumption-card { padding: 27px 0; grid-template-columns: 38px 1fr; gap: 10px 13px; align-items: start; }
  .assumption-card h3 { font-size: 16px; }
  .assumption-card p { grid-column: 2; font-size: 14px; }
  .action-grid { gap: 34px; }
  .action-list li { font-size: 14px; }
  .guide-preview { min-height: 480px; }
  .paper { height: 430px; }
  .paper-front { padding: 42px 27px; }
  .paper-front h3 { font-size: 20px; }
  .paper-tip { left: 27px; right: 27px; }
  .fit-grid { gap: 32px; }
  .fit-item { grid-template-columns: 32px 1fr; padding: 20px 0; }
  .fit-item p { font-size: 14px; }
  .offer-section { padding-left: 0; padding-right: 0; }
  .offer-card { width: calc(100% - 22px); padding: 39px 22px 43px; gap: 24px; border-radius: 42px 12px 42px 12px; }
  .offer-image img { transform: scale(1.12); }
  .offer-copy h2 { font-size: 30px; }
  .offer-details { margin-top: 24px; }
  .offer-details p { font-size: 14px; }
  .about-image::before { inset: 18px -8px -14px 18px; }
  .about-image img { height: 400px; }
  .about-copy > p:not(.eyebrow) { font-size: 16px; }
  .testimonial-grid { margin-top: 38px; grid-template-columns: 1fr; gap: 34px; }
  .testimonial-grid blockquote p { font-size: 15px; }
  .faq-grid { gap: 30px; }
  .faq-list summary { padding: 21px 0; font-size: 16px; }
  .final-card { width: calc(100% - 22px); padding: 57px 22px; border-radius: 42px 12px 42px 12px; }
  .final-card h2 { font-size: 34px; }
  .footer-inner { flex-direction: column; gap: 15px; text-align: center; }
  .footer-inner p { margin: 0; }
  .footer-inner div { justify-content: center; }
  .mobile-checkout {
    height: 82px;
    position: fixed;
    z-index: 20;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background: rgba(61, 84, 128, .98);
    box-shadow: 0 -7px 22px rgba(41, 75, 127, .16);
    backdrop-filter: blur(12px);
  }
  .mobile-checkout div { display: flex; align-items: baseline; gap: 8px; line-height: 1.15; }
  .mobile-checkout span { color: #e1e7f0; font-size: 14px; }
  .mobile-checkout del { color: #e1e7f0; font-size: 15px; opacity: .72; }
  .mobile-checkout strong { font-size: 22px; }
  .mobile-checkout a { min-width: 178px; padding: 15px 19px; color: var(--navy); background: var(--yellow); border-radius: 999px; overflow: hidden; position: relative; font-size: 15px; font-weight: 700; text-align: center; text-decoration: none; }
  .mobile-checkout a::after { content: ""; width: 45px; position: absolute; top: -30%; bottom: -30%; left: -80px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent); transform: skewX(-20deg); animation: button-shine 4.2s ease-in-out infinite; }
}

.thank-page { min-height: 100vh; background: var(--cream); }
.thank-hero { padding: 80px 0 92px; overflow: hidden; }
.thank-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 68px; }
.thank-copy h1 { max-width: 650px; margin: 0; color: var(--navy); font-size: clamp(48px, 6vw, 76px); font-weight: 700; line-height: 1.06; letter-spacing: -.05em; }
.thank-lead { max-width: 620px; margin: 22px 0 34px; color: #4d5664; font-size: 19px; }
.inbox-note { padding: 21px 0; display: grid; grid-template-columns: 44px 1fr; gap: 16px; border-top: 1px solid var(--line); }
.inbox-note:last-child { border-bottom: 1px solid var(--line); }
.inbox-note > span { color: var(--blue); font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.inbox-note strong { color: var(--navy); font-size: 17px; }
.inbox-note p { margin: 5px 0 0; color: var(--muted); font-size: 16px; }
.thank-product { min-height: 520px; position: relative; display: grid; place-items: center; }
.thank-product-bg { width: 88%; height: 80%; position: absolute; right: -3%; top: 10%; background: var(--blue-soft); border-radius: 100px 16px 100px 16px; }
.thank-product img { width: 650px; position: relative; z-index: 1; filter: drop-shadow(0 25px 24px rgba(61,84,128,.15)); }
.newsletter-next { padding: 0 0 88px; background: var(--cream); }
.newsletter-card { padding: 56px 62px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 54px; color: white; background: var(--navy); border-radius: 58px 15px 58px 15px; }
.newsletter-card h2 { margin: 0; color: white; font-size: clamp(34px, 4vw, 52px); font-weight: 700; line-height: 1.12; letter-spacing: -.035em; }
.newsletter-card p:not(.eyebrow) { max-width: 700px; margin: 16px 0 0; color: #eef3fa; font-size: 16px; }
.newsletter-card .button { white-space: nowrap; }
.thank-help { padding: 0 0 90px; text-align: center; }
.thank-help h2 { margin: 0; color: var(--navy); font-size: 30px; }
.thank-help p { max-width: 680px; margin: 14px auto 0; color: var(--muted); font-size: 16px; }
.thank-help a { color: var(--navy); font-weight: 600; }

/* Keep supportive text comfortably readable across the entire sales page. */
.eyebrow,
.header-link,
.hero-actions p,
.hero-actions p strong,
.product-meta,
.micro-proof,
.product-price span,
.countdown-label strong,
.countdown-label span,
.countdown-time small,
.photo-caption,
.assumption-number,
.assumption-card p,
.action-list li,
.paper-label,
.paper-front p,
.paper-tip,
.fit-item span,
.offer-details p,
.offer-price span,
.secure-line,
.credentials span,
.testimonial-grid footer,
.faq-intro > p:last-child,
.faq-list details p,
.final-note,
.footer,
.mobile-checkout span { font-size: 14px; }

@media (max-width: 980px) {
  .thank-grid { grid-template-columns: 1fr; gap: 34px; }
  .thank-copy { max-width: 760px; margin: 0 auto; text-align: center; }
  .thank-copy h1, .thank-lead { margin-left: auto; margin-right: auto; }
  .inbox-note { text-align: left; }
  .thank-product { min-height: 470px; max-width: 680px; width: 100%; margin: 0 auto; }
  .newsletter-card { grid-template-columns: 1fr; text-align: center; }
  .newsletter-card p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .newsletter-card .button { justify-self: center; }
}

@media (max-width: 720px) {
  .countdown-wrap { min-width: 0; width: calc(100% - 20px); bottom: -20px; padding: 11px 12px; gap: 12px; border-radius: 14px; }
  .countdown-label { min-width: 120px; }
  .countdown-label strong, .countdown-label span, .countdown-time small { font-size: 14px; }
  .countdown-time { gap: 3px; }
  .countdown-time > span { min-width: 28px; }
  .countdown-time strong { font-size: 18px; }
  .hero-product { margin-bottom: 20px; }
  .thank-page { padding-bottom: 0; }
  .thank-hero { padding: 52px 0 64px; }
  .thank-grid { gap: 26px; }
  .thank-copy h1 { font-size: 44px; }
  .thank-lead { font-size: 17px; }
  .inbox-note { grid-template-columns: 34px 1fr; padding: 19px 0; }
  .inbox-note strong { font-size: 16px; }
  .inbox-note p { font-size: 15px; }
  .thank-product { min-height: 345px; width: calc(100% + 14px); margin-left: -7px; }
  .thank-product-bg { border-radius: 65px 12px 65px 12px; }
  .newsletter-next { padding-bottom: 66px; }
  .newsletter-card { width: calc(100% - 22px); padding: 43px 22px; gap: 27px; border-radius: 42px 12px 42px 12px; }
  .newsletter-card h2 { font-size: 34px; }
  .newsletter-card .button { width: 100%; white-space: normal; }
  .thank-help { padding-bottom: 68px; }
  .thank-help h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .btbd-page-root { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

