:root {
  --ink: #102623;
  --ink-soft: #36534b;
  --forest: #063f27;
  --forest-2: #0d5938;
  --leaf: #6f9139;
  --mint: #eef5e6;
  --mint-2: #f7faf2;
  --cream: #fffdf7;
  --gold: #d5aa49;
  --line: #dce5d2;
  --shadow: 0 20px 60px rgba(19, 43, 35, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 104px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(6, 63, 39, 0.12);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--forest);
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 78%, var(--forest) 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 42%, var(--forest) 43% 57%, transparent 58%),
    radial-gradient(ellipse at 32% 34%, var(--leaf) 0 7px, transparent 8px),
    radial-gradient(ellipse at 68% 34%, var(--leaf) 0 7px, transparent 8px);
}

nav {
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-soft);
}

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

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--forest);
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: 0;
  padding-top: clamp(26px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(115deg, rgba(238, 245, 230, 0.9), rgba(255, 253, 247, 0.94) 45%, rgba(255, 253, 247, 0.6)),
    radial-gradient(circle at 90% 8%, rgba(111, 145, 57, 0.2), transparent 34%);
}

.hero-copy,
.section-heading,
.doctor-copy,
.cta-inner {
  max-width: 760px;
}

.hero-copy,
.hero-media,
.feature-copy,
.feature-row figure,
.image-panel,
.wide-preview {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--forest);
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--forest);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  font-size: 1.06rem;
}

.hero-lede {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 2px solid var(--forest);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

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

.button.secondary {
  color: var(--forest);
  background: transparent;
}

.button.large {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 1.05rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row.centered {
  justify-content: center;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 1254 / 1130;
  max-height: none;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.section-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.wide {
  max-width: 950px;
}

.split,
.two-column,
.doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.symptom-grid,
.reason-grid,
.plain-grid,
.benefit-grid,
.steps,
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.symptom-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mini-card,
.reason-grid article,
.plain-grid article,
.benefit-grid article,
.steps article,
.phase-grid article,
.quote-box,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 28px rgba(19, 43, 35, 0.06);
}

.mini-card {
  padding: 18px;
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.image-panel,
.feature-row figure,
.wide-preview {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel {
  aspect-ratio: 1.55 / 1;
}

.feature-row figure {
  aspect-ratio: 1.55 / 1;
}

.wide-preview {
  aspect-ratio: 1.55 / 1;
}

.image-panel img,
.feature-row figure img,
.wide-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.dark-band {
  color: white;
  background:
    linear-gradient(135deg, rgba(6, 63, 39, 0.98), rgba(12, 78, 48, 0.96)),
    var(--forest);
}

.dark-band h2,
.dark-band h3,
.dark-band .eyebrow {
  color: white;
}

.dark-band p {
  color: rgba(255, 255, 255, 0.84);
}

.reason-grid,
.plain-grid,
.benefit-grid,
.steps,
.phase-grid {
  max-width: 1220px;
  margin: 0 auto;
}

.reason-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.icon-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle at 56% 44%, var(--gold) 0 5px, transparent 6px);
}

.feature-list {
  display: grid;
  gap: clamp(42px, 6vw, 86px);
  max-width: 1240px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse figure {
  order: 1;
}

.feature-copy {
  max-width: 610px;
}

.number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 950;
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

li {
  margin: 10px 0;
}

.roadmap {
  background: var(--mint-2);
}

.phase-grid {
  margin-bottom: 34px;
}

.phase-grid article,
.plain-grid article,
.benefit-grid article,
.steps article {
  padding: 24px;
}

.phase-grid span,
.steps span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--leaf);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.wide-preview {
  max-width: 1120px;
  margin: 0 auto;
}

.muted-band {
  background: var(--mint);
}

.plain-grid,
.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience {
  background: var(--cream);
}

.two-column {
  align-items: start;
}

.two-column > div {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.check-list,
.x-list {
  list-style: none;
  padding: 0;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.check-list li::before {
  content: "+";
  color: var(--forest-2);
}

.x-list li::before {
  content: "-";
  color: #9a432a;
}

.doctor {
  align-items: center;
}

.quote-box {
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.quote-box p {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: white;
}

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

.how .steps {
  grid-template-columns: repeat(4, 1fr);
}

.how .section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.how .section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.how .section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.how .steps {
  gap: 18px;
}

.how .steps article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
}

.how .steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--leaf));
}

.how .steps span {
  margin-bottom: 28px;
}

.how .steps h3 {
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

.how .steps p {
  color: var(--ink-soft);
}

.cta {
  text-align: center;
  background:
    linear-gradient(rgba(255, 253, 247, 0.86), rgba(255, 253, 247, 0.86)),
    url("assets/il_1588xN.8016911542_bi9x.jpg") center / cover;
}

.cta-inner {
  margin: 0 auto;
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.93);
  box-shadow: var(--shadow);
}

.small-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.paypal-button-wrap {
  max-width: 420px;
  margin: 28px auto 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq details {
  padding: 20px 24px;
  margin-bottom: 14px;
}

.faq summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 900;
  font-size: 1.08rem;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.footer {
  padding: 32px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #062d20;
  text-align: center;
}

.footer p {
  max-width: 760px;
  margin: 0 auto 8px;
  font-size: 0.92rem;
}

.sticky-buy-button {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(520px, calc(100vw - 32px));
  min-height: 74px;
  padding: 18px 28px;
  border-radius: 999px;
  color: white;
  background: var(--forest);
  box-shadow: 0 18px 44px rgba(6, 63, 39, 0.28);
  transform: translateX(-50%);
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.15rem, 4vw, 2rem);
  font-weight: 950;
  line-height: 1.1;
}

.sticky-buy-button:hover {
  background: #032f1c;
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .feature-row,
  .doctor {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse figure {
    order: initial;
  }

  .reason-grid,
  .plain-grid,
  .benefit-grid,
  .steps,
  .phase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .how .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .how .section-heading {
    text-align: left;
  }

  .how .section-heading h2 {
    font-size: clamp(2.15rem, 8vw, 3.1rem);
    line-height: 1.03;
  }

  .how .section-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .how .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how .steps article {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 0;
    padding: 22px;
    align-items: start;
  }

  .how .steps span {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0;
    border-radius: 50%;
    color: white;
    background: var(--forest);
    text-align: center;
    letter-spacing: 0.06em;
  }

  .how .steps h3 {
    margin-bottom: 6px;
    font-size: 1.55rem;
  }

  .how .steps p {
    margin: 0;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-copy,
  .desktop-hero-media,
  .mobile-hero-media,
  .feature-row,
  .feature-row figure,
  .feature-copy,
  .split,
  .two-column,
  .doctor,
  .cta-inner {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
  }

  .hero-media img,
  .feature-row img,
  .image-panel img,
  .wide-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 12vw, 3.55rem);
  }

  .desktop-hero-media {
    display: none;
  }

  .mobile-hero-media {
    display: block;
    margin: 0 0 28px;
    aspect-ratio: 1254 / 1130;
  }

  p {
    font-size: 1rem;
  }

  .symptom-grid,
  .reason-grid,
  .plain-grid,
  .benefit-grid,
  .steps,
  .phase-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .sticky-buy-button {
    bottom: 14px;
    min-height: 64px;
  }

  .how .steps article {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .how .steps span {
    width: 54px;
    height: 54px;
    font-size: 0.72rem;
  }
}
