:root {
  --forest-950: #0e2d26;
  --forest-900: #183f35;
  --forest-800: #245548;
  --teal-600: #2a7d76;
  --teal-100: #dcebe7;
  --sand-500: #d7c29b;
  --sand-200: #f2eadb;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #26312f;
  --muted: #65716e;
  --line: #cbd3cf;
  --amber: #c98932;
  --danger-soft: #f7ebe5;
  --shadow-sm: 0 10px 30px rgba(14, 45, 38, 0.08);
  --shadow-lg: 0 30px 70px rgba(14, 45, 38, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, system-ui, sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--forest-900);
  font-family: var(--serif);
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.2;
}

p { margin-bottom: 20px; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-950);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
}
.skip-link:focus { opacity: 1; pointer-events: auto; transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 40px), 830px); }
.section-pad { padding-block: 118px; }
.section-dark { position: relative; color: var(--white); background: var(--forest-900); }
.section-sand { background: var(--sand-200); }

.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--sand-500); }

.section-heading {
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.14rem;
}

.section-heading-light > p:last-child { color: #c9d7d2; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 45, 38, 0.18);
}

.button-primary { color: var(--forest-950); background: var(--sand-500); }
.button-primary:hover { background: #e4d2ae; }

.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.04);
}
.button-ghost:hover { border-color: var(--sand-500); background: rgba(255,255,255,0.08); }
.button-small { min-height: 44px; padding: 11px 17px; font-size: 0.86rem; }
.button-full { width: 100%; }

.announcement {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: var(--forest-950);
  background: var(--sand-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(42,125,118,0.17);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(203, 211, 207, 0.72);
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand em { display: block; margin-top: 3px; color: var(--teal-600); font-family: var(--sans); font-size: 0.65rem; font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; }

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--sand-500);
  background: var(--forest-900);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a:not(.button) { color: var(--muted); font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.primary-nav > a:not(.button):hover { color: var(--forest-900); }
.primary-nav .button { color: var(--white); background: var(--forest-900); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--forest-900); transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  min-height: 760px;
  overflow: hidden;
  padding: 100px 0 92px;
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.hero-copy { position: relative; z-index: 2; align-self: start; max-width: 730px; min-width: 0; padding-top: 62px; }
.hero h1 { max-width: 720px; font-size: clamp(3.2rem, 4.8vw, 4.7rem); }
.hero-lead { max-width: 670px; margin-bottom: 34px; color: #d4dfdb; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 23px;
  margin: 24px 0 0;
  padding: 0;
  color: #c9d7d2;
  font-size: 0.83rem;
  list-style: none;
}
.micro-trust li { display: flex; align-items: center; gap: 7px; }
.micro-trust span { color: var(--sand-500); font-weight: 900; }

.hero-product { position: relative; z-index: 2; }
.book-stage { position: relative; width: min(100%, 420px); margin-inline: auto; perspective: 1600px; }
.book-shadow { position: absolute; right: 1%; bottom: -18px; left: 2%; height: 50px; border-radius: 50%; background: rgba(0,0,0,0.36); filter: blur(20px); transform: rotate(-3deg); }

.book {
  position: relative;
  width: 79%;
  margin-inline: auto;
  transform: rotateY(-12deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform 400ms ease;
}
.book-stage:hover .book { transform: rotateY(-6deg) rotateZ(0deg) translateY(-4px); }
.book img { position: relative; z-index: 2; width: 100%; border: 5px solid #f4efe5; border-radius: 3px 10px 10px 3px; box-shadow: var(--shadow-lg); }
.book-spine { position: absolute; z-index: 3; top: 5px; bottom: 5px; left: -17px; width: 18px; background: #102e27; transform: rotateY(-35deg); transform-origin: right; }
.book-pages { position: absolute; z-index: 1; top: 10px; right: -18px; bottom: 7px; width: 22px; border-radius: 0 6px 6px 0; background: repeating-linear-gradient(90deg, #e7e2d7 0, #e7e2d7 2px, #f9f6ef 2px, #f9f6ef 4px); transform: rotateY(30deg); transform-origin: left; }

.product-stamp {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 8%;
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 6px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--sand-500);
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
}
.product-stamp strong { font-family: var(--serif); font-size: 2.8rem; line-height: 1; }
.product-stamp span { font-size: 0.7rem; font-weight: 800; line-height: 1.15; text-transform: uppercase; }

.hero-orbit { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.orbit-one { top: -210px; right: -130px; width: 520px; height: 520px; border: 92px solid rgba(42,125,118,0.34); }
.orbit-two { bottom: -190px; left: 42%; width: 350px; height: 350px; border: 1px solid rgba(215,194,155,0.2); }

.fact-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-grid > div { display: flex; min-height: 126px; align-items: center; gap: 15px; padding: 24px 28px; border-left: 1px solid var(--line); }
.fact-grid > div:last-child { border-right: 1px solid var(--line); }
.fact-grid strong { color: var(--forest-900); font-family: var(--serif); font-size: 2.8rem; line-height: 1; }
.fact-grid span { color: var(--muted); font-size: 0.79rem; font-weight: 700; line-height: 1.35; }

.problem { text-align: center; }
.problem .section-intro { max-width: 760px; margin: 0 auto 46px; color: var(--muted); font-size: 1.13rem; }

.pattern-break {
  max-width: 760px;
  margin: 0 auto 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.pattern-label { padding: 12px 18px; color: var(--white); background: var(--forest-900); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.pattern-break ol { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: step; }
.pattern-break li { position: relative; min-height: 105px; padding: 51px 20px 18px; border-right: 1px solid var(--line); color: var(--forest-900); font-size: 0.86rem; font-weight: 800; counter-increment: step; }
.pattern-break li:last-child { border-right: 0; }
.pattern-break li::before { content: counter(step); position: absolute; top: 14px; left: 18px; display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-600); font-size: 0.72rem; }
.pattern-break li:not(:last-child)::after { content: ""; position: absolute; z-index: 2; top: 50%; right: -8px; width: 14px; height: 14px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); background: var(--white); transform: translateY(-50%) rotate(45deg); }
.bridge-copy { max-width: 730px; margin: 0 auto; color: var(--forest-900); font-family: var(--serif); font-size: 1.26rem; font-weight: 700; }

.comparison-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 1000px; margin: auto; }
.comparison-card { padding: 44px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.comparison-card h3 { font-size: 1.9rem; }
.comparison-card ul, .fit-card ul, .offer-list { margin: 28px 0 0; padding: 0; list-style: none; }
.comparison-card li, .fit-card li, .offer-list li { position: relative; margin-bottom: 13px; padding-left: 29px; }
.comparison-card li::before, .fit-card li::before, .offer-list li::before { position: absolute; top: 0.1em; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; font-size: 0.7rem; font-weight: 900; }
.comparison-old li::before { content: "-"; color: #8a4e39; background: var(--danger-soft); }
.comparison-reset { border-color: var(--teal-600); }
.comparison-reset li::before, .offer-list li::before { content: "\2713"; color: var(--white); background: var(--teal-600); }
.card-kicker { display: inline-block; margin-bottom: 17px; padding: 6px 10px; color: var(--forest-900); background: var(--sand-200); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-divider { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 58px; height: 58px; place-items: center; border: 5px solid var(--sand-200); border-radius: 50%; color: var(--white); background: var(--forest-900); font-size: 0.75rem; font-weight: 900; transform: translate(-50%, -50%); }

.method { overflow: hidden; }
.reset-steps { position: relative; max-width: 970px; margin: auto; }
.reset-steps::before { content: ""; position: absolute; top: 37px; bottom: 37px; left: 37px; width: 1px; background: rgba(215,194,155,0.34); }
.reset-step { position: relative; display: grid; grid-template-columns: 76px 1fr; align-items: start; gap: 28px; padding: 22px 0; }
.reset-letter { position: relative; z-index: 2; display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid rgba(255,255,255,0.25); color: var(--forest-950); background: var(--sand-500); font-family: var(--serif); font-size: 2.2rem; font-weight: 700; }
.reset-step > div { padding: 4px 0 25px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.reset-step:last-child > div { border-bottom: 0; }
.reset-step h3 { margin-bottom: 7px; font-size: 1.75rem; }
.reset-step p { max-width: 720px; margin: 0; color: #c9d7d2; }

.outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.outcome-card { min-height: 280px; padding: 38px; border-top: 4px solid var(--teal-600); background: var(--white); box-shadow: var(--shadow-sm); }
.outcome-number { display: block; margin-bottom: 36px; color: var(--amber); font-family: var(--serif); font-size: 1.1rem; font-weight: 700; }
.outcome-card h3 { max-width: 390px; font-size: 1.75rem; }
.outcome-card p { margin-bottom: 0; color: var(--muted); }

.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.preview-card { position: relative; overflow: hidden; padding: 0; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); cursor: zoom-in; transition: transform 220ms ease, box-shadow 220ms ease; }
.preview-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px rgba(14,45,38,0.18); }
.preview-card img { width: 100%; aspect-ratio: 0.773; object-fit: cover; object-position: top; }
.preview-card span { display: block; padding: 14px 16px; color: var(--forest-900); font-size: 0.79rem; font-weight: 800; text-align: left; }
.preview-note { margin: 24px 0 0; color: var(--muted); font-size: 0.8rem; text-align: center; }

.roadmap-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: start; gap: 90px; }
.roadmap-copy { position: sticky; top: 120px; }
.roadmap-copy p:not(.eyebrow) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--teal-600); font-weight: 800; text-decoration: none; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }
.session-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.session-list li { display: flex; min-height: 76px; align-items: center; gap: 16px; padding: 15px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--forest-900); font-size: 0.88rem; font-weight: 800; line-height: 1.35; }
.session-list li:nth-child(even) { border-right: 0; }
.session-list span { color: var(--amber); font-family: var(--serif); font-size: 1.15rem; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.fit-card { min-height: 560px; padding: 54px; }
.fit-for { border: 1px solid rgba(255,255,255,0.18); background: var(--forest-800); }
.fit-not { color: var(--ink); background: var(--cream); }
.fit-not h2 { color: var(--forest-900); }
.fit-for li { color: #d4dfdb; }
.fit-for li::before { content: "\2713"; color: var(--forest-950); background: var(--sand-500); }
.fit-not li::before { content: "-"; color: #8a4e39; background: var(--danger-soft); }

.offer { background: var(--cream); }
.offer-grid { display: grid; grid-template-columns: 0.9fr 0.75fr; align-items: center; gap: 90px; }
.offer-copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted); font-size: 1.1rem; }
.guarantee-card { display: grid; grid-template-columns: 70px 1fr; gap: 20px; max-width: 610px; margin-top: 42px; padding-top: 31px; border-top: 1px solid var(--line); }
.guarantee-shield { display: grid; width: 66px; height: 74px; place-items: center; color: var(--forest-950); background: var(--sand-500); clip-path: polygon(50% 0, 92% 18%, 88% 68%, 50% 100%, 12% 68%, 8% 18%); font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.guarantee-card h3 { margin-bottom: 6px; }
.guarantee-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.offer-card { position: relative; padding: 48px; border: 2px solid var(--forest-900); background: var(--white); box-shadow: var(--shadow-lg); }
.offer-badge { position: absolute; top: 0; right: 0; padding: 9px 15px; color: var(--forest-950); background: var(--sand-500); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.offer-name { margin: 0 0 4px; color: var(--forest-900); font-family: var(--serif); font-size: 1.65rem; font-weight: 700; }
.offer-description { max-width: 330px; color: var(--muted); font-size: 0.88rem; }
.price { display: flex; align-items: start; margin: 26px 0; color: var(--forest-900); font-family: var(--serif); font-size: 5.5rem; font-weight: 700; line-height: 0.95; }
.price sup { padding-top: 12px; font-family: var(--sans); font-size: 1.25rem; }
.price span { align-self: end; margin: 0 0 8px 8px; color: var(--muted); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.08em; }
.offer-list { margin-bottom: 32px; padding-top: 25px; border-top: 1px solid var(--line); font-size: 0.9rem; }
.checkout-note { margin: 13px 0 0; color: var(--muted); font-size: 0.72rem; text-align: center; }

.credibility { text-align: center; }
.credibility h2 { max-width: 720px; margin-inline: auto; }
.credibility p { max-width: 740px; margin-inline: auto; color: var(--muted); font-size: 1.05rem; }
.credibility-line { padding-top: 25px; border-top: 1px solid var(--line); color: var(--forest-900) !important; font-family: var(--serif); font-weight: 700; }

.faq-grid { display: grid; grid-template-columns: 0.65fr 1fr; align-items: start; gap: 90px; }
.faq-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 52px 25px 0; color: var(--forest-900); font-family: var(--serif); font-size: 1.2rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 19px; right: 0; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--teal-600); font-family: var(--sans); font-size: 1.25rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { max-width: 680px; padding: 0 45px 24px 0; color: var(--muted); font-size: 0.94rem; }

.final-cta { overflow: hidden; padding: 105px 0; text-align: center; }
.final-cta::before { content: ""; position: absolute; top: -160px; left: 50%; width: 650px; height: 650px; border: 1px solid rgba(215,194,155,0.18); border-radius: 50%; transform: translateX(-50%); }
.final-cta-inner { position: relative; z-index: 2; max-width: 850px; }
.final-cta p:not(.eyebrow) { color: #d4dfdb; font-size: 1.15rem; }
.final-cta .button { margin-top: 14px; }
.final-cta span { display: block; margin-top: 15px; color: #aebfba; font-size: 0.76rem; }

.site-footer { padding: 58px 0 94px; color: var(--muted); background: #f0ede5; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 50px; }
.brand-footer { margin-bottom: 17px; }
.footer-grid p { max-width: 470px; margin: 0; font-size: 0.83rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 12px 30px; }
.footer-links a { font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: var(--forest-900); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.7rem; }
.footer-bottom p { margin: 0; }

.mobile-cta { display: none; }

.lightbox {
  width: min(92vw, 740px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(9, 29, 24, 0.88); backdrop-filter: blur(7px); }
.lightbox img { max-height: 88vh; margin: auto; border: 6px solid var(--white); box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; z-index: 3; top: -18px; right: -18px; display: grid; width: 44px; height: 44px; place-items: center; border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: var(--forest-900); font-size: 1.7rem; line-height: 1; cursor: pointer; }

.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity 650ms ease, transform 650ms ease; }
.js .reveal[data-delay="1"].is-visible { transition-delay: 100ms; }
.js .reveal[data-delay="2"].is-visible { transition-delay: 180ms; }
.js .reveal[data-delay="3"].is-visible { transition-delay: 260ms; }
.js .reveal[data-delay="4"].is-visible { transition-delay: 340ms; }

@media (max-width: 1200px) {
  .hero-grid { gap: 35px; }
  .fact-grid > div { padding-inline: 20px; }
  .offer-grid { gap: 60px; }
}

@media (max-width: 1024px) {
  .section-pad { padding-block: 94px; }
  .hero { min-height: auto; padding-block: 82px; }
  .hero-grid { grid-template-columns: 1.05fr 0.7fr; }
  .product-stamp { right: -10px; width: 108px; height: 108px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid > div:nth-child(2) { border-right: 1px solid var(--line); }
  .fact-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .roadmap-grid { grid-template-columns: 1fr; gap: 55px; }
  .roadmap-copy, .faq-heading { position: static; }
  .roadmap-copy { max-width: 720px; }
  .offer-grid { grid-template-columns: 0.8fr 0.9fr; gap: 45px; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
}

@media (max-width: 768px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .section-pad { padding-block: 76px; }
  .announcement { min-height: 34px; font-size: 0.65rem; }
  .header-inner { min-height: 64px; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 64px; right: 0; left: 0; display: none; padding: 20px 16px 25px; border-bottom: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-sm); }
  .primary-nav.is-open { display: grid; gap: 10px; }
  .primary-nav > a:not(.button) { min-height: 44px; padding: 11px 6px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 68px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-copy { width: 100%; max-width: 100%; margin-inline: auto; padding-top: 0; }
  .hero h1 { max-width: 100%; font-size: clamp(2.8rem, 9vw, 3.75rem); }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .micro-trust { justify-content: center; }
  .book-stage { width: min(82vw, 390px); }
  .product-stamp { right: 3%; }
  .orbit-one { width: 400px; height: 400px; }

  .pattern-break ol { grid-template-columns: 1fr 1fr; }
  .pattern-break li:nth-child(2) { border-right: 0; }
  .pattern-break li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pattern-break li:nth-child(2)::after { display: none; }
  .comparison-grid, .outcome-grid, .fit-grid, .offer-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .comparison-divider { top: 50%; }
  .comparison-card { padding: 35px 28px; }
  .outcome-card { min-height: 240px; }
  .roadmap-copy { text-align: center; }
  .fit-card { min-height: auto; padding: 40px 30px; }
  .offer-grid { gap: 48px; }
  .offer-copy { text-align: center; }
  .offer-copy > p:not(.eyebrow), .guarantee-card { margin-inline: auto; }
  .guarantee-card { text-align: left; }
  .offer-card { width: min(100%, 520px); margin-inline: auto; }
  .faq-grid { gap: 48px; }
  .faq-heading { text-align: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }

  .mobile-cta {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    background: var(--forest-950);
    transform: translateY(100%);
    transition: transform 240ms ease;
  }
  .mobile-cta.is-visible { transform: translateY(0); }
  .mobile-cta > div { min-width: 0; }
  .mobile-cta strong, .mobile-cta span { display: block; white-space: nowrap; }
  .mobile-cta strong { overflow: hidden; font-family: var(--serif); font-size: 0.93rem; text-overflow: ellipsis; }
  .mobile-cta span { color: #b9c8c3; font-size: 0.68rem; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.65rem, 13vw, 3.45rem); }
  .hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.05rem); line-height: 1.01; letter-spacing: -0.04em; }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .micro-trust { display: grid; justify-content: start; row-gap: 6px; width: fit-content; margin: 18px auto 0; text-align: left; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid > div { min-height: 94px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pattern-break ol { grid-template-columns: 1fr; }
  .pattern-break li { min-height: 82px; padding: 28px 20px 20px 62px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pattern-break li::before { top: 26px; }
  .pattern-break li::after { display: none; }
  .comparison-divider { width: 50px; height: 50px; }
  .reset-step { grid-template-columns: 58px 1fr; gap: 18px; }
  .reset-letter { width: 58px; height: 58px; font-size: 1.7rem; }
  .reset-steps::before { left: 28px; }
  .reset-step h3 { font-size: 1.35rem; }
  .outcome-card { padding: 30px 24px; }
  .preview-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .preview-card span { padding: 10px; font-size: 0.75rem; line-height: 1.35; }
  .session-list { grid-template-columns: 1fr; }
  .session-list li { border-right: 0; }
  .offer-card { padding: 40px 24px 30px; }
  .price { font-size: 4.8rem; }
  .guarantee-card { grid-template-columns: 56px 1fr; }
  .guarantee-shield { width: 54px; height: 62px; }
  .footer-links { grid-template-columns: 1fr; }
  .mobile-cta .button { min-width: 112px; }
  .lightbox-close { top: 8px; right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
