/* ============================================================
   index.html — page-specific styles
   Loads after styles.css (shared tokens, top-bar, footer).
   ============================================================ */

/* Base reset, :root variables, top-bar base, and footer now live in
   styles.css (shared across all pages). This page overrides body's
   font-size/line-height and adds a couple of page-specific rules below. */

/* Offset anchor jumps so the sticky banner doesn't cover the section heading */
section[id] { scroll-margin-top: 21px; }

body {
  font-size: 17px;
  line-height: 1.7;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* This page's banner is sticky and underlines its link (checkout/thank-you don't) */
.top-bar { position: sticky; top: 0; z-index: 100; }
.top-bar a { color: var(--yellow); text-decoration: underline; }

/* ── HERO / HEADLINE ── */
.hero {
  background: var(--white);
  padding: 65px 24px;
  text-align: center;
}
.hero__logo { margin-bottom: 28px; }
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero__headline {
  font-family: var(--font-d);
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 18px;
}
.hero__headline em { color: var(--sage); font-style: italic; }
.hero__sub {
  font-size: 18px;
  color: var(--ink-mid);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.btn {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 700;
  padding: 17px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--sage-dark); }
.btn--large { font-size: 19px; padding: 20px 48px; width: 100%; text-align: center; display: block; }
.hero__micro {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--stone);
}

/* ── VSL ── */
.vsl-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.vsl-player a { color: #fff; }
.vsl-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /* Initial hidden state — was previously an inline style="" attribute
     on the <video> tag itself; moved here so style-src can drop
     'unsafe-inline'. vsl-player.js still toggles this at runtime via
     video.style.display, which CSP's style-src does not restrict (it
     only governs style="" attributes and <style> blocks, not script
     setting styles through the CSSOM). */
  display: none;
}
.vsl-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
}

/* ── HERO-EMBEDDED VSL ── */
.hero-vsl {
  max-width: 640px;
  margin: 32px auto 36px;
}
.hero-vsl__note {
  color: var(--stone) !important;
}
.vsl-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}
.vsl-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 65px;
  height: 65px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s;
  z-index: 2;
}
.vsl-play-btn:hover {
  transform: scale(1.1);
}
.vsl-play-btn svg {
  position: relative;
  width: 65px;
  height: 65px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  animation: vsl-bounce 3.6s ease-in-out infinite;
  transform-origin: center;
}

/* Pulsing rings behind the play button, drawing the eye to the video */
.vsl-play-btn::before,
.vsl-play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  z-index: -1;
  animation: vsl-pulse 4s ease-out infinite;
}
.vsl-play-btn::after {
  animation-delay: 1.8s;
}
@keyframes vsl-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
@keyframes vsl-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .vsl-play-btn::before,
  .vsl-play-btn::after,
  .vsl-play-btn svg {
    animation: none;
  }
}

/* ── SOCIAL PROOF 1 — TRUST BAR ── */
.trust-bar {
  background: var(--sage-light);
  border-top: 1px solid #c5d8cc;
  border-bottom: 1px solid #c5d8cc;
  padding: 40px 24px;
  text-align: center;
}
.trust-bar__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}
.trust-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.trust-quote {
  background: var(--white);
  border: 1px solid #c5d8cc;
  border-radius: 6px;
  padding: 20px;
  text-align: left;
}
.trust-quote__stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.trust-quote__text {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 10px;
}
.trust-quote__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.trust-quote__biz {
  font-size: 12px;
  color: var(--stone);
}

/* ── STORY ── */
.story {
  background: var(--white);
  padding: 65px 24px;
  border-bottom: 1px solid var(--rule);
}
.story__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.story h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 28px;
}
.story-body p {
  font-size: 16.5px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body .pullquote {
  border-left: 4px solid var(--sage);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}
.cta-micro {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--stone);
}
.story-cta {
  margin-top: 36px;
  text-align: center;
}
.story-float {
  float: right;
  margin: 4px 0 20px 32px;
  width: 220px;
  flex-shrink: 0;
}
.story-float__img {
  width: 220px;
  height: 264px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  background: var(--sage-light);
  border: 1px solid #c5d8cc;
}
.story-float__caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  line-height: 1.4;
}
.story-float__caption span {
  font-size: 13.5px;
  font-style: italic;
}
.story-float__caption strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 700;
}
.story-body::after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 540px) {
  .story-float {
    float: none;
    margin: 0 auto 24px;
    width: 160px;
  }
  .story-float__img {
    width: 160px;
    height: 192px;
  }
}

/* ── SOCIAL PROOF 2 — MESSAGES ── */
.social-proof {
  background: var(--cream);
  padding: 65px 24px;
  border-bottom: 1px solid var(--rule);
}
.social-proof h2 {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.3;
}
.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px; /* keeps content at 772px wide → two cards per row (2×2 grid) */
}
.msg-bubble {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 20px 22px;
}
.msg-bubble__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.msg-bubble__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--sage);
  flex-shrink: 0;
}
.msg-bubble__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.msg-bubble__loc {
  font-size: 12px;
  color: var(--stone);
}
.msg-bubble__text {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.6;
  font-style: italic;
}
.msg-bubble__result {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
}
.social-proof__disclaimer {
  text-align: center;
  font-size: 13.5px;
  font-style: italic;
  color: var(--stone);
  margin-top: 24px;
}

/* ── WHAT YOU GET ── */
.what-you-get {
  background: var(--white);
  padding: 65px 24px;
  border-bottom: 1px solid var(--rule);
}
.what-you-get h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.25;
}
.what-you-get .sub {
  text-align: center;
  color: var(--ink-mid);
  font-size: 16px;
  margin-bottom: 44px;
}

.product-card {
  background: var(--cream);
  border: 2px solid var(--sage);
  border-radius: 8px;
  padding: 36px 36px 40px;
  max-width: 580px;
  margin: 0 auto 36px;
}
.product-card__tag {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-card__name {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card__desc {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}
/* .includes-list / .check now live in styles.css (shared with checkout.html) */

.bonuses-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.bonus-card {
  background: var(--sage-light);
  border: 1px solid #c5d8cc;
  border-radius: 6px;
  padding: 20px 20px;
}
.bonus-card__name {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 6px;
}
.bonus-card__desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
}
.bonus-card__value {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
}

/* ── OFFER ── */
.offer {
  background: var(--ink);
  padding: 65px 24px;
  text-align: center;
}
.offer h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.offer .sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 40px;
}
.price-box {
  background: var(--white);
  border-radius: 8px;
  padding: 44px 40px;
  max-width: 440px;
  margin: 0 auto 0;
}
.price-box__plan {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.price-box__amount {
  font-family: var(--font-d);
  font-size: 64px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.price-box__period {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 12px;
}
.price-box__anchor {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.price-box__list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.price-box__micro {
  margin-top: 12px;
  font-size: 13px;
  color: var(--stone);
  text-align: center;
}
.price-box__list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── GUARANTEE ── */
.guarantee {
  background: var(--cream);
  padding: 40px 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.guarantee__inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.guarantee__badge {
  flex-shrink: 0;
  width: 184px;
  height: 230px;
}
.guarantee__badge img {
  width: 184px;
  height: 230px;
}
.guarantee__content h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.guarantee__content p {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.7;
}
.guarantee__signature {
  display: block;
  margin-top: 10px;
}

/* ── SAMPLE ISSUE — EMAIL MOCKUP ── */
.sample-issue {
  background: var(--white);
  padding: 65px 24px;
  border-bottom: 1px solid var(--rule);
}
.sample-issue h2 {
  font-family: var(--font-d);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
}
.sample-issue__sub {
  text-align: center;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 36px;
}
.email-mockup {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  border: 1px solid var(--rule);
}
.email-mockup__chrome {
  background: var(--sage);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.email-mockup__dots {
  display: flex;
  gap: 6px;
}
.email-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: block;
}
.email-mockup__title {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 600;
}
.email-mockup__body {
  background: var(--white);
  padding: 28px 32px 32px;
}
.email-mockup__from {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 12px;
}
.email-mockup__from span { color: var(--sage); font-weight: 600; }
.email-mockup__subject {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 20px;
}
.email-mockup__body p {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 14px;
}
.email-mockup__body p:last-child { margin-bottom: 0; }
.email-mockup__body ol {
  margin: 6px 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.email-mockup__body ol li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-left: 4px;
}
.email-mockup__body ol li strong { color: var(--ink); }
.email-mockup__callout {
  border-left: 3px solid var(--sage);
  padding: 10px 16px;
  margin: 20px 0;
  font-size: 15px;
  color: var(--ink-mid);
  font-style: italic;
  line-height: 1.6;
}
.email-mockup__sig {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.email-mockup__sig .sig-name {
  color: var(--ink);
  font-weight: 600;
}
.email-mockup__sig .sig-brand {
  color: var(--sage);
  font-size: 13.5px;
}
.sample-issue-cta {
  text-align: center;
  margin-top: 40px;
}


/* ── FAQ ── */
.faq {
  background: var(--cream);
  padding: 65px 24px;
  border-bottom: 1px solid var(--rule);
}
.faq h2 {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item__q {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  font-style: normal;
  line-height: 1.35;
}
.faq-item__a {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--sage);
  padding: 65px 24px;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  max-width: 560px;
  margin: 0 auto 16px;
}
.final-cta .sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.final-cta .micro {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.btn--white {
  background: var(--white);
  color: var(--sage);
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
}
.btn--white:hover { opacity: 0.92; }

/* Footer styling now lives in styles.css */

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .guarantee__inner { flex-direction: column; align-items: center; text-align: center; }
  .price-box { padding: 32px 24px; }
  .price-box__amount { font-size: 52px; }
  .product-card { padding: 24px 20px; }
  .faq-item { padding: 20px 20px; }
}
