:root {
  --green: #0e3b2e;
  --green-deep: #09291f;
  --green-soft: #215a45;
  --gold: #c9a227;
  --gold-light: #e9c766;
  --ink: #12140f;
  --paper: #f7f6f1;
  --paper-2: #f0efe8;
  --white: #fffefa;
  --muted: #62675f;
  --line: rgba(18, 20, 15, 0.12);
  --line-dark: rgba(255, 255, 255, 0.18);
  --container: 1200px;
  --side: 20px;
  --radius: 18px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 10.5vw, 3.4rem);
  letter-spacing: -0.052em;
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 8.5vw, 2.55rem);
}

h3 {
  font-size: 1.22rem;
  line-height: 1.18;
}

p {
  margin-bottom: 0;
}

section {
  padding: 74px 0;
  scroll-margin-top: 76px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - (var(--side) * 2)), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.offer-bar {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px var(--side);
  color: rgba(255, 255, 255, 0.9);
  background: var(--green-deep);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 241, 0.97);
}

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

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--green-deep);
  font-size: 0.64rem;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.brand--header img {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.brand span {
  display: grid;
  gap: 2px;
  letter-spacing: 0.06em;
}

.brand strong {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}

.main-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--small {
  min-height: 42px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
  white-space: nowrap;
}

.button--primary {
  color: var(--white);
  background: var(--green);
}

.button--gold {
  color: var(--green-deep);
  background: var(--gold-light);
}

.button--wide-mobile {
  width: 100%;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-soft);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.hero {
  padding: 22px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "copy"
    "video"
    "action";
  gap: 24px;
}

.hero-copy {
  grid-area: copy;
  text-align: center;
}

.hero-mobile-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.hero-copy h1 {
  max-width: 660px;
  margin-inline: auto;
}

.hero-copy h1 em,
.section-heading h2 em {
  color: var(--green);
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 26px;
  color: #464b45;
  font-size: 1.04rem;
  line-height: 1.58;
}

.hero-lead-group {
  max-width: 650px;
  margin: 20px auto 0;
}

.hero-lead-group .hero-lead {
  margin: 0;
}

.hero-lead-group .hero-lead + .hero-lead {
  margin-top: 13px;
}

.cta-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.79rem;
  text-align: center;
}

.hero-action {
  grid-area: action;
  text-align: center;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(112px, 0.82fr);
  grid-template-rows: 1fr 1fr;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.hero-photo {
  position: relative;
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
  background: #d8d4c7;
}

.hero-photo picture,
.hero-photo img {
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  object-position: 33% center;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(9, 41, 31, 0.9);
  font-size: 0.68rem;
  line-height: 1.35;
}

.hero-photo figcaption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.85rem;
}

.hero-tile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 19px 16px;
}

.hero-tile span {
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-tile strong {
  font-size: clamp(1.15rem, 5vw, 1.55rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-tile--light {
  color: var(--green-deep);
  background: #e5e3d7;
}

.hero-tile--green {
  color: var(--white);
  background: var(--green);
}

.hero-tile--green svg {
  width: 62px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-video {
  grid-area: video;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-deep);
  aspect-ratio: 16 / 9;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-list {
  display: grid;
}

.trust-list article {
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: #41463f;
}

.trust-list article:last-child {
  border-bottom: 0;
}

.trust-list span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.3;
}

.trust-list p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.section--compact {
  padding-block: 68px;
}

.section--white {
  background: var(--white);
}

.section--dark {
  color: var(--white);
  background: var(--green);
}

.section-heading {
  max-width: 820px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 8.5vw, 2.65rem);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading--left > p:last-child {
  margin-right: 0;
  margin-left: 0;
}

.watch-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-deep);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--green-deep);
  cursor: pointer;
}

.video-trigger picture,
.video-trigger img {
  width: 100%;
  height: 100%;
}

.video-trigger img {
  object-fit: cover;
  transition: transform 280ms ease;
}

.video-trigger::after {
  position: absolute;
  inset: 0;
  background: rgba(9, 41, 31, 0.16);
  content: "";
}

.video-overlay {
  position: absolute;
  z-index: 1;
  inset: auto 16px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: left;
}

.play-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--white);
  place-items: center;
}

.play-icon svg {
  width: 22px;
  fill: currentColor;
}

.split-heading {
  display: grid;
  gap: 20px;
}

.split-heading > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.narrative-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

.narrative-copy {
  max-width: 680px;
}

.narrative-copy > * + * {
  margin-top: 17px;
}

.narrative-copy p {
  color: #51564f;
}

.narrative-copy blockquote {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 7px 0 7px 20px;
  border-left: 2px solid var(--gold);
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.25;
}

.narrative-copy .narrative-emphasis {
  color: var(--ink);
  font-weight: 720;
}

.narrative-copy--compact {
  padding-top: 4px;
}

.pain-list {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.pain-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pain-list article > span {
  padding-top: 3px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pain-list h3 {
  margin-bottom: 8px;
}

.pain-list p {
  color: var(--muted);
  font-size: 0.94rem;
}

.turning-grid {
  display: grid;
  gap: 38px;
}

.mechanism-grid {
  display: grid;
  gap: 38px;
  align-items: start;
}

.turning h2 {
  color: var(--white);
}

.section--dark .section-heading > .dark-lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.mechanism-copy {
  border-top: 1px solid var(--line-dark);
}

.mechanism-copy > * {
  margin-bottom: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
}

.mechanism-copy blockquote {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.2;
  text-align: left;
  border-bottom: 0;
}

.mechanism-copy blockquote + p {
  border-top: 1px solid var(--line-dark);
}

.mechanism-copy .mechanism-emphasis {
  color: var(--white);
  font-weight: 720;
}

.contrast-list {
  border-top: 1px solid var(--line-dark);
}

.contrast-list p {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.93);
  font-size: 1rem;
}

.contrast-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-weight: 750;
}

.story-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.story-figure {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.story-figure picture {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 4 / 5;
}

.story-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 31% center;
}

.story-figure figcaption {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 750;
}

.story-figure figcaption span {
  color: var(--muted);
  font-weight: 450;
}

.story-copy h2 {
  margin-bottom: 24px;
}

.story-copy > p:not(.eyebrow, .story-signature) {
  margin-top: 15px;
  color: #4d524c;
  font-size: 1.03rem;
}

.story-signature {
  margin-top: 25px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
}

.story-signature span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.steps {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.steps article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}

.steps h3 {
  margin-bottom: 10px;
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}

.method-closing {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  text-align: center;
}

.method-closing > p {
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
}

.method-closing > p span {
  color: var(--muted);
}

.method-closing .button {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.modules {
  background: var(--paper-2);
}

.modules-intro {
  display: grid;
  gap: 22px;
}

.modules-intro > p {
  color: var(--muted);
}

.module-list {
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.72);
}

.module-list article {
  display: grid;
  gap: 9px;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, transform 180ms ease;
}

.module-index {
  color: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.module-list h3 {
  margin-bottom: 6px;
}

.module-list article div p {
  color: var(--muted);
  font-size: 0.94rem;
}

.module-list .module-bonus {
  position: relative;
  margin-top: 0;
  padding: 28px 18px;
  border: 0;
  border-top: 3px solid var(--gold);
  border-radius: 0;
  color: var(--white);
  background: var(--green);
}

.module-bonus .module-index {
  color: var(--gold-light);
}

.module-list .module-bonus h3 {
  color: var(--white);
}

.module-list .module-bonus div p {
  color: rgba(255, 255, 255, 0.72);
}

.materials-grid {
  display: grid;
  gap: 34px;
}

.material-list {
  border-top: 1px solid var(--line);
}

.material-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.check {
  display: grid;
  width: 27px;
  height: 27px;
  margin-top: -2px;
  border: 1px solid rgba(14, 59, 46, 0.35);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.81rem;
  font-weight: 800;
  place-items: center;
}

.material-list h3 {
  margin-bottom: 7px;
}

.material-list p {
  color: var(--muted);
  font-size: 0.94rem;
}

.material-list .materials-closing {
  padding: 23px 0 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
}

.materials-closing span {
  display: block;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-sequence {
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-sequence li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 700;
}

.method-sequence span {
  padding-top: 2px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.audience-grid {
  display: grid;
  gap: 34px;
}

.audience-list {
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #4d524c;
}

.audience-list i {
  padding-top: 3px;
  color: var(--green);
  font-size: 1.16rem;
  line-height: 1;
}

.audience-note {
  display: grid;
  gap: 20px;
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
}

.audience-note strong {
  color: var(--ink);
}

.audience-note .button {
  width: 100%;
}

.perception {
  background: var(--paper-2);
}

.change-grid {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.change-grid article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.change-grid p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.38;
}

.change-grid p + p {
  margin-top: 22px;
}

.change-grid p span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.change-before {
  color: var(--muted);
}

.change-after {
  color: var(--green);
}

.perception-closing {
  max-width: 760px;
  margin-top: 30px;
  color: var(--muted);
  text-align: center;
}

.proof {
  color: var(--white);
  background: var(--green);
}

.proof-heading {
  display: grid;
  gap: 20px;
}

.proof-heading h2 {
  color: var(--white);
}

.proof-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-copy > p + p {
  margin-top: 14px;
}

.evidence-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  align-items: end;
}

.evidence {
  margin-bottom: 0;
}

.evidence picture {
  display: grid;
  overflow: hidden;
  background: #eeeee9;
  place-items: center;
}

.evidence img {
  width: 100%;
  height: auto;
}

.evidence--document picture {
  padding: 12px 12px 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.evidence--social picture {
  border-radius: var(--radius) var(--radius) 0 0;
}

.evidence figcaption {
  display: grid;
  gap: 3px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.evidence figcaption strong {
  font-size: 0.91rem;
}

.evidence figcaption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.79rem;
}

.offer {
  color: var(--white);
  background: var(--green-deep);
}

.offer-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.offer-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.offer-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.offer-includes {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.offer-includes li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
}

.price-panel {
  padding: 30px 20px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  text-align: center;
}

.price-overline {
  color: var(--green-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  margin-top: 12px;
  color: var(--green);
  font-size: clamp(2.85rem, 13vw, 4.45rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 1;
  white-space: nowrap;
}

.price span {
  font-size: 0.36em;
  letter-spacing: 0;
  vertical-align: 0.55em;
}

.installments {
  margin: 8px 0 24px;
  font-size: 1.04rem;
  font-weight: 700;
}

.price-panel .button {
  width: 100%;
}

.payment-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  gap: 34px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--green);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  padding: 0 34px 20px 0;
}

.faq-panel p {
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  color: var(--white);
  background: var(--green);
}

.final-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  max-width: 840px;
  text-align: center;
}

.final-grid h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--white);
}

.final-grid .final-subheadline {
  max-width: 680px;
  margin: 18px auto 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.final-copy {
  display: grid;
  gap: 6px;
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.76);
}

.final-microcopy {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  line-height: 1.5;
}

.final-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.final-mark span {
  display: grid;
  min-height: 74px;
  align-items: end;
  padding: 12px 10px;
  border-right: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.final-mark span:nth-child(3) {
  border-right: 0;
}

.final-mark svg {
  position: absolute;
  top: -20px;
  right: -12px;
  width: 82px;
  fill: var(--gold-light);
}

.site-footer {
  padding: 32px 0;
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
}

.footer-inner {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.site-footer .brand--footer img {
  width: 75px;
  height: 75px;
  flex-basis: 75px;
}

.site-footer > .container > a:last-child {
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 4px;
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--green-deep);
  box-shadow: 0 10px 26px rgba(9, 41, 31, 0.23);
}

.mobile-cta a,
.mobile-cta button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
}

.mobile-cta a {
  display: grid;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  place-items: center;
}

.mobile-cta button {
  color: var(--green-deep);
  background: var(--paper);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button--primary:hover,
  .button--small:hover {
    background: #0a3025;
  }

  .button--gold:hover {
    background: #f1d371;
  }

  .main-nav a:hover,
  .site-footer a:hover,
  .text-link:hover {
    text-decoration: underline;
  }

  .video-trigger:hover img {
    transform: scale(1.015);
  }

  .module-list article:not(.module-bonus):hover {
    background: var(--white);
    transform: translateX(3px);
  }
}

@media (max-width: 779px) {
  .site-header {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.55rem);
  }
}

@media (min-width: 640px) {
  :root {
    --side: 28px;
  }

  .button--wide-mobile {
    width: auto;
  }

  .cta-note {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }

  .hero-visual {
    min-height: 450px;
    grid-template-columns: minmax(0, 1.32fr) minmax(180px, 0.68fr);
  }

  .hero-tile {
    padding: 28px 24px;
  }

  .story-figure {
    width: 100%;
    max-width: none;
  }

  .module-list article {
    grid-template-columns: minmax(110px, 0.28fr) 1fr;
    gap: 24px;
  }

  .module-list .module-bonus {
    padding-inline: 24px;
  }
}

@media (min-width: 780px) {
  :root {
    --side: 32px;
  }

  body {
    font-size: 17px;
  }

  section {
    padding-block: 96px;
  }

  .offer-bar {
    font-size: 0.75rem;
  }

  .header-inner {
    min-height: 94px;
  }

  .brand {
    font-size: 0.68rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand--header img {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 38px);
  }

  .main-nav a {
    color: #3f443e;
    font-size: 0.79rem;
    font-weight: 650;
    text-decoration: none;
    text-underline-offset: 5px;
  }

  .button--small {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 76px 0 92px;
  }

  .hero-grid {
    grid-template-areas:
      "copy video"
      "action video";
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
    column-gap: clamp(48px, 6vw, 86px);
    row-gap: 26px;
    align-items: center;
  }

  .hero-mobile-logo {
    display: none;
  }

  .hero-action {
    align-self: start;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 5vw, 4.3rem);
  }

  .hero-lead {
    margin-block: 26px 30px;
    font-size: 1.05rem;
  }

  .hero-lead-group {
    margin-block: 24px 28px;
  }

  .hero-visual {
    min-height: 520px;
    grid-template-columns: minmax(0, 1.16fr) minmax(170px, 0.84fr);
  }

  .hero-tile strong {
    font-size: clamp(1.35rem, 2.25vw, 1.9rem);
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-list article {
    min-height: 126px;
    padding-inline: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-list article:first-child {
    padding-left: 0;
  }

  .trust-list article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .section--compact {
    padding-block: 82px;
  }

  .watch-grid {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(44px, 6vw, 82px);
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 80px;
    align-items: end;
  }

  .narrative-grid,
  .mechanism-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(64px, 8vw, 120px);
  }

  .narrative-copy {
    font-size: 1.02rem;
  }

  .pain-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }

  .pain-list article {
    min-height: 180px;
    grid-template-columns: 42px 1fr;
    padding: 30px 34px 30px 0;
  }

  .pain-list article:nth-child(even) {
    padding-right: 0;
    padding-left: 34px;
    border-left: 1px solid var(--line);
  }

  .turning-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(64px, 8vw, 120px);
    align-items: start;
  }

  .mechanism-copy > * {
    padding-block: 21px;
  }

  .contrast-list p {
    padding-block: 24px;
    font-size: 1.05rem;
  }

  .story-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(62px, 9vw, 128px);
  }

  .story-figure picture {
    aspect-ratio: 4 / 5;
  }

  .story-copy > p:not(.eyebrow, .story-signature) {
    font-size: 1.07rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
  }

  .steps article {
    min-height: 360px;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .steps article:first-child {
    padding-left: 0;
  }

  .steps article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .step-number {
    margin-bottom: 60px;
    font-size: 3.4rem;
  }

  .method-closing {
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 34px;
    text-align: left;
  }

  .method-closing .button {
    width: auto;
  }

  .modules-intro {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 80px;
    align-items: end;
  }

  .module-list {
    margin-top: 58px;
  }

  .module-list article {
    min-height: 120px;
    grid-template-columns: minmax(150px, 0.3fr) 1fr;
    align-items: start;
    padding-block: 28px;
  }

  .materials-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(70px, 10vw, 140px);
  }

  .audience-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(70px, 10vw, 140px);
  }

  .audience-note {
    margin-top: 48px;
    justify-items: center;
    text-align: center;
  }

  .audience-note .button {
    width: auto;
  }

  .change-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
  }

  .change-grid article {
    min-height: 330px;
    padding: 32px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .change-grid article:first-child {
    padding-left: 0;
  }

  .change-grid article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .change-grid p + p {
    margin-top: 50px;
  }

  .perception-closing {
    margin-top: 42px;
  }

  .proof-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 80px;
    align-items: start;
  }

  .evidence-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 30px;
    margin-top: 58px;
  }

  .offer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: clamp(70px, 9vw, 130px);
  }

  .price-panel {
    padding: 44px 34px 36px;
  }

  .faq-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(70px, 9vw, 130px);
    align-items: start;
  }

  .faq-item button {
    min-height: 84px;
  }

  .final-grid {
    grid-template-columns: 1fr;
  }

  .final-mark {
    grid-template-columns: 1fr;
  }

  .final-mark span {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .final-mark span:nth-child(3) {
    border-bottom: 0;
  }

  .final-mark svg {
    top: -25px;
    right: -13px;
    width: 110px;
  }

  .site-footer {
    padding-block: 34px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 16px;
  }

  .mobile-cta {
    display: none !important;
  }
}

@media (min-width: 1080px) {
  .pain-list article {
    padding-right: 54px;
  }

  .pain-list article:nth-child(even) {
    padding-left: 54px;
  }

  .module-list article {
    grid-template-columns: 3fr 9fr;
  }
}

@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;
  }
}
