:root {
  --leaf-900: #143b2b;
  --leaf-700: #24543d;
  --moss-500: #758f3d;
  --marigold-500: #d69b2a;
  --clay-500: #a85d49;
  --paper-100: #f4f6ed;
  --paper-200: #e6ebde;
  --ink-900: #202821;
  --ink-600: #536052;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(20, 59, 43, 0.16);
  --radius: 8px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--paper-100);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(244, 246, 237, 0.95), rgba(230, 235, 222, 0.75)),
    var(--paper-100);
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--leaf-900);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 59, 43, 0.82), rgba(20, 59, 43, 0.42));
  backdrop-filter: blur(12px);
}

.brand,
.site-nav,
.hero-actions,
.trust-strip,
.contact-band,
.conversion-sticky {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  text-decoration: none;
  min-width: 10rem;
}

.brand-copy,
.brand small {
  display: block;
}

.brand-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  line-height: 1.1;
  opacity: 0.76;
}

.brand-logo-shell {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0.22rem;
  border: 1px solid rgba(244, 246, 237, 0.64);
  border-radius: 50%;
  background: rgba(244, 246, 237, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.brand-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  gap: clamp(0.8rem, 2vw, 1.8rem);
  font-size: 0.92rem;
}

.site-nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: min(82svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-bg img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(11, 35, 24, 0.88) 0%, rgba(20, 59, 43, 0.76) 46%, rgba(20, 59, 43, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 25, 18, 0.56), rgba(10, 25, 18, 0.12));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 clamp(3.5rem, 8vw, 6rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--marigold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 7.2vw, 5.9rem);
  line-height: 0.92;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

p {
  color: var(--ink-600);
  line-height: 1.72;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.7rem 0 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.conversion-sticky a:hover,
.conversion-sticky a:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.header-cta:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
summary:focus-visible,
.video-trigger:focus-visible,
.conversion-sticky a:focus-visible {
  outline: 3px solid var(--marigold-500);
  outline-offset: 4px;
}

.button-primary {
  color: #1f2118;
  background: var(--marigold-500);
  box-shadow: 0 12px 32px rgba(214, 155, 42, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.button-wide {
  width: 100%;
}

.button-whatsapp {
  color: var(--white);
  background: #1f8f50;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.trust-strip div {
  min-width: 9rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--marigold-500);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip dt {
  font-weight: 900;
}

.trust-strip dd {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: var(--section-pad) clamp(1rem, 5vw, 5rem);
}

.section-intro {
  width: min(840px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.video-section {
  background: var(--paper-100);
}

.video-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--leaf-900);
  aspect-ratio: 16 / 9;
}

.video-shell iframe,
.video-trigger {
  width: 100%;
  height: 100%;
}

.video-shell iframe {
  display: block;
  border: 0;
}

.video-trigger {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: var(--leaf-900);
}

.video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(4rem, 10vw, 6rem);
  height: clamp(4rem, 10vw, 6rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--marigold-500);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 32%;
  border-block: 0.72rem solid transparent;
  border-left: 1.05rem solid #201d14;
}

.video-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(20, 59, 43, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: var(--white);
}

.diagnosis-text {
  max-width: 690px;
}

.pain-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: 1rem;
}

.pain-list,
.community-support-card,
.course-card,
.formula-list article,
.benefit-grid article,
.offer-box,
.faq details,
.testimonial-grid figure {
  border: 1px solid rgba(36, 84, 61, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.pain-list,
.community-support-card {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.pain-label,
.community-support-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--leaf-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-list ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-900);
  font-weight: 800;
  line-height: 1.35;
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--clay-500);
}

.community-support-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 59, 43, 0.96), rgba(36, 84, 61, 0.95)),
    var(--leaf-900);
  box-shadow: var(--shadow);
}

.community-support-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1;
}

.community-support-card p,
.community-support-card span {
  color: rgba(255, 255, 255, 0.82);
}

.formula-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.formula-list {
  display: grid;
  gap: 1rem;
}

.formula-list article,
.benefit-grid article {
  padding: 1.3rem;
}

.formula-list span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--clay-500);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-pair {
  display: grid;
  gap: 1rem;
}

.media-frame,
.product-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.media-frame {
  aspect-ratio: 16 / 9;
  background: var(--leaf-900);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 59, 43, 0.97), rgba(36, 84, 61, 0.92)),
    var(--leaf-900);
}

.community p {
  color: rgba(255, 255, 255, 0.78);
}

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

.community-assets {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  background: var(--white);
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: 24rem;
  object-fit: contain;
}

.product-visual-ebooks {
  aspect-ratio: 6 / 5;
}

.product-visual-book {
  aspect-ratio: 1 / 1;
}

.course-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.course-card {
  padding: clamp(1.2rem, 4vw, 2rem);
  color: var(--ink-900);
  background: var(--white);
}

.course-card-featured {
  border-color: rgba(214, 155, 42, 0.52);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.course-card span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--clay-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1;
}

.course-card p {
  color: var(--ink-600);
}

.course-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.course-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-900);
  font-weight: 800;
  line-height: 1.35;
}

.course-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--moss-500);
}

.benefit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.benefit-grid p {
  margin-bottom: 0;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 430px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: var(--section-pad) clamp(1rem, 5vw, 5rem);
  background: var(--paper-200);
}

.offer-content {
  max-width: 760px;
}

.offer-box {
  padding: clamp(1.3rem, 4vw, 2rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-label {
  margin-bottom: 1rem;
  color: var(--leaf-700);
  font-weight: 900;
}

.offer-box ul {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.offer-box li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-900);
}

.offer-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--moss-500);
}

.price-summary {
  margin: 1.35rem 0 1.1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(36, 84, 61, 0.16);
  border-bottom: 1px solid rgba(36, 84, 61, 0.16);
}

.old-price {
  margin-bottom: 0;
  color: var(--ink-600);
  text-decoration: line-through;
}

.cash-price {
  margin: 0.35rem 0 0;
  color: var(--ink-900);
  font-weight: 900;
}

.price-line {
  margin: 0.15rem 0 0.2rem;
  color: var(--ink-900);
}

.price-line span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1;
  font-weight: 800;
}

.cash-note,
.guarantee {
  font-size: 0.92rem;
}

.guarantee {
  margin-top: 1.1rem;
  margin-bottom: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(36, 84, 61, 0.14);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.testimonial-grid figure {
  margin: 0;
  padding: 1rem;
  background: var(--white);
}

.testimonial-frame {
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  overflow: hidden;
  border: 1px solid rgba(32, 40, 33, 0.1);
  border-radius: 6px;
  background: #f8f8f4;
}

.testimonial-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonial-grid figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.faq-list {
  display: grid;
  gap: 0.75rem;
  width: min(860px, 100%);
  margin: 0 auto;
}

.faq details {
  padding: 1.1rem 1.2rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  margin: 0.8rem 0 0;
}

.contact-band {
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background: var(--clay-500);
}

.contact-band h2 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.contact-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 2rem clamp(1rem, 5vw, 5rem) 5.5rem;
  color: rgba(255, 255, 255, 0.78);
  background: #10241a;
  text-align: center;
}

.site-footer p {
  margin: 0.35rem 0;
  color: inherit;
  font-size: 0.92rem;
}

.conversion-sticky {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 12;
  width: min(920px, calc(100vw - 2rem));
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem;
  border: 1px solid rgba(244, 246, 237, 0.18);
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 59, 43, 0.98), rgba(36, 84, 61, 0.98)),
    var(--leaf-900);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.conversion-sticky-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  padding-left: 0.5rem;
}

.conversion-sticky-copy strong {
  color: var(--white);
  font-size: clamp(0.92rem, 2vw, 1rem);
  line-height: 1.1;
}

.conversion-sticky-copy span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  line-height: 1.25;
}

.conversion-sticky a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 3.3rem;
  padding: 0.9rem 1.25rem;
  color: #201d14;
  background: var(--marigold-500);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(214, 155, 42, 0.25);
}

@media (min-width: 760px) {
  .hero-content {
    margin-left: clamp(2rem, 8vw, 7rem);
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

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

  .diagnosis,
  .formula-layout,
  .community,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .course-showcase,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.7rem 0.85rem;
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(11, 35, 24, 0.9), rgba(20, 59, 43, 0.48)),
      linear-gradient(90deg, rgba(11, 35, 24, 0.7), rgba(20, 59, 43, 0.14));
  }

  .hero-content {
    width: calc(100vw - 1.7rem);
    max-width: calc(100vw - 1.7rem);
    margin-left: 0.85rem;
    margin-right: 0.85rem;
    padding-top: 6.2rem;
    padding-bottom: 5.8rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    min-width: 0;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-actions .button,
  .contact-band .button {
    width: 100%;
  }

  .trust-strip {
    display: none;
  }

  .section,
  .offer-section {
    padding-inline: 0.85rem;
  }

  .community-assets {
    grid-template-columns: 1fr;
  }

  .pain-board {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .price-line span {
    overflow-wrap: anywhere;
  }

  .conversion-sticky {
    bottom: 0.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    width: calc(100vw - 1.6rem);
    max-width: calc(100vw - 1.6rem);
    padding: 0.55rem;
    border-radius: 999px;
  }

  .conversion-sticky-copy {
    padding-left: 0.45rem;
  }

  .conversion-sticky-copy strong {
    font-size: 0.86rem;
  }

  .conversion-sticky-copy span {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .conversion-sticky a {
    min-height: 2.9rem;
    max-width: 9.4rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.84rem;
    line-height: 1.05;
    text-align: center;
  }
}

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