:root {
  --bg: #f7f2ea;
  --paper: #ffffff;
  --bg-soft: #efe7dc;
  --ink: #2f2d2a;
  --muted: #6f6a63;
  --line: #e3d8ca;
  --sage: #6f8f7a;
  --sage-dark: #4f6f5a;
  --sage-hover: #3f5c49;
  --clay: #c88f6a;
  --blue: #496c82;
  --soft-blue: #dde8d8;
  --shadow: 0 18px 52px rgba(54, 47, 39, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

body > * {
  position: relative;
  z-index: 1;
}

.flow-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.72;
}

.flow-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(111, 143, 122, 0.12), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(200, 143, 106, 0.1), transparent 30%),
    radial-gradient(circle at 42% 88%, rgba(111, 143, 122, 0.08), transparent 34%);
}

.flow-background svg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
}

.flow-layer,
.flow-cells {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.flow-layer-one {
  stroke: rgba(79, 111, 90, 0.34);
  stroke-width: 2.2;
  animation: flow-drift-one 18s ease-in-out infinite alternate;
}

.flow-layer-two {
  stroke: rgba(200, 143, 106, 0.28);
  stroke-width: 1.7;
  animation: flow-drift-two 22s ease-in-out infinite alternate;
}

.flow-layer path {
  filter: drop-shadow(0 8px 18px rgba(79, 111, 90, 0.08));
}

.flow-cells {
  stroke: rgba(111, 143, 122, 0.22);
  stroke-width: 1.6;
  animation: flow-cells 16s ease-in-out infinite alternate;
}

@keyframes flow-drift-one {
  from {
    transform: translate3d(-32px, 18px, 0) scale(1);
    opacity: 0.72;
  }

  to {
    transform: translate3d(46px, -28px, 0) scale(1.018);
    opacity: 1;
  }
}

@keyframes flow-drift-two {
  from {
    transform: translate3d(42px, -18px, 0) scale(1.02);
    opacity: 0.62;
  }

  to {
    transform: translate3d(-38px, 32px, 0) scale(0.99);
    opacity: 0.94;
  }
}

@keyframes flow-cells {
  from {
    transform: translate3d(18px, 10px, 0) scale(0.985);
    opacity: 0.54;
  }

  to {
    transform: translate3d(-24px, -18px, 0) scale(1.035);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-layer-one,
  .flow-layer-two,
  .flow-cells {
    animation: none;
  }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

a {
  color: inherit;
}

.site-header,
.payment-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(227, 216, 202, 0.8);
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.payment-brand {
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-action,
.payment-footer a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover,
.payment-footer a:hover {
  color: var(--sage-dark);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--sage-dark);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: auto;
  padding-top: 42px;
  padding-bottom: 38px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6.2vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3.8vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: #3f3b35;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  font-weight: 700;
}

.hero-note,
.section-head p,
.body-logic p,
.author-copy p {
  color: var(--muted);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgba(49, 94, 77, 0.22);
}

.button-primary:hover {
  background: var(--sage-hover);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--sage-dark);
}

.hero-product {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.protocol-card {
  width: min(100%, 410px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.protocol-pill {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.protocol-card h2 {
  margin-bottom: 10px;
  font-size: 38px;
}

.protocol-card p {
  color: var(--muted);
}

.protocol-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.protocol-card li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.protocol-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
}

.protocol-route {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--sage-dark);
  font-weight: 800;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.quick-help {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
  padding: 42px clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 48px rgba(54, 47, 39, 0.08);
}

.authority-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.authority-strip strong {
  font-size: 20px;
  line-height: 1.25;
}

.authority-strip span {
  color: var(--muted);
  font-weight: 700;
}

.quick-help h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 42px);
}

.quick-help-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-help-steps article {
  min-height: 188px;
  padding: 18px;
  border-radius: 8px;
  background: #f6f0e8;
}

.quick-help-steps span {
  display: block;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
}

.quick-help-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.quick-help-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.symptom-grid,
.practice-grid,
.plan-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

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

.symptom-grid span {
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.body-logic,
.author {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.logic-chain {
  padding: 28px;
  border-radius: 8px;
  background: var(--sage-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.logic-chain span {
  display: block;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.logic-chain i {
  display: block;
  width: 1px;
  height: 22px;
  margin: 8px auto;
  background: rgba(255, 255, 255, 0.46);
}

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

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.deliverables article {
  min-height: 154px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.98), rgba(232, 240, 242, 0.72));
}

.deliverables span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.deliverables strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.deliverables p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.practice-grid article,
.plan-card,
.steps-grid article,
.format-card,
.reviews,
.payment-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

.practice-grid article {
  position: relative;
  min-height: 198px;
  padding: 22px;
}

.practice-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.format-line {
  display: block;
  margin: -8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.practice-tag.full {
  background: #f4e9df;
  color: var(--clay);
}

.wide-card {
  grid-column: span 3;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
}

.plan-featured {
  border-color: var(--clay);
  background: #fdf8f1;
  box-shadow: var(--shadow);
}

.best-choice {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.plan-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.plan-head h3 {
  font-size: 30px;
}

.plan-head strong {
  font-size: 28px;
  white-space: nowrap;
}

.plan-for {
  min-height: 66px;
  color: var(--muted);
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 25px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.plan-card .button {
  margin-top: auto;
}

.compare {
  padding-top: 24px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.compare-grid article {
  min-height: 200px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.compare-grid p {
  color: var(--muted);
}

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

.steps-grid article {
  padding: 22px;
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: #fff;
  font-weight: 800;
}

.format-card {
  display: grid;
  gap: 10px;
  padding: 28px;
}

.format-card strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.format-card span {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft-blue);
  font-weight: 800;
}

.format-card small {
  color: var(--muted);
  font-weight: 800;
}

.author-photo {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: 52% 42%;
  filter: saturate(0.88) sepia(0.08) brightness(1.03);
}

.author-status {
  color: var(--sage-dark);
  font-size: 20px;
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.reviews {
  padding: 44px clamp(22px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 48px rgba(54, 47, 39, 0.06);
}

.reviews .section-head {
  margin-bottom: 24px;
}

.reviews .section-head p {
  max-width: 680px;
}

.review-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 234, 0.72));
  box-shadow: 0 14px 34px rgba(54, 47, 39, 0.07);
}

.review-grid img {
  width: 86%;
  height: auto;
  max-height: 205px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(54, 47, 39, 0.08);
}


.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 54px clamp(24px, 6vw, 64px);
  border-radius: 24px;
  background: var(--sage-dark);
  color: #fff;
}

.final-cta .kicker,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.site-footer,
.payment-footer {
  display: grid;
  gap: 16px;
  padding: 34px clamp(18px, 4vw, 54px) 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav,
.payment-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.sticky-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(49, 94, 77, 0.3);
}

.payment-main {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.legal-page {
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.62;
}

.legal-document {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px clamp(22px, 5vw, 56px) 64px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(54, 47, 39, 0.06);
  overflow-wrap: anywhere;
}

.legal-document h1 {
  margin: 18px 0 12px;
  font-size: 38px;
  line-height: 1.08;
}

.legal-document h2 {
  margin: 28px 0 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.legal-document h3 {
  margin: 20px 0 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.legal-document p,
.legal-document li {
  margin: 0 0 12px;
  color: var(--muted);
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-back {
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-updated {
  font-size: 14px;
}

.payment-card {
  padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow);
}

.payment-intro,
.payment-product {
  margin-bottom: 28px;
}

.payment-lead {
  color: var(--muted);
  font-size: 18px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.payment-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.payment-form {
  display: grid;
  gap: 20px;
}

.payment-form fieldset,
.payment-form label {
  margin: 0;
}

.payment-form fieldset {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
}

.payment-form legend {
  margin-bottom: 10px;
  font-weight: 800;
}

.payment-form input[type="text"],
.payment-form input[type="email"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.payment-form > label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.tariff-choice label,
.payment-choice label,
.payment-consents label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tariff-choice label:has(input:checked),
.payment-choice label:has(input:checked) {
  border-color: rgba(49, 94, 77, 0.52);
  background: #f7fbf8;
}

.tariff-choice span,
.payment-choice span {
  display: grid;
  gap: 2px;
}

.tariff-choice small,
.payment-choice small,
.payment-access,
.payment-medical-note,
.payment-note {
  color: var(--muted);
}

.payment-product {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-product-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.payment-product-head strong {
  color: var(--sage-dark);
  font-size: 28px;
}

.payment-product-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.payment-reassurance {
  padding: 18px;
  border-radius: 8px;
  background: #f6f0e8;
}

.payment-reassurance strong {
  display: block;
  margin-bottom: 6px;
}

.payment-reassurance p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-methods span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.payment-button {
  width: 100%;
}

.course-access {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(79, 111, 90, 0.24);
  border-radius: 12px;
  background: #f7fbf8;
}

.course-access[hidden] {
  display: none;
}

.course-access p {
  margin: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

.payment-status {
  min-height: 24px;
  color: var(--sage-dark);
  font-weight: 800;
}

.result-card {
  display: grid;
  gap: 18px;
  justify-items: start;
}

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

  .section {
    width: min(100% - 56px, 1120px);
  }

  .hero,
  .body-logic,
  .author,
  .plan-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    gap: 30px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-product {
    justify-items: start;
  }

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

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

  .wide-card {
    grid-column: span 2;
  }

  .sticky-buy {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    max-width: 100vw;
  }

  .site-header,
  .payment-header {
    width: 100vw;
    min-height: 64px;
    padding: 12px 16px;
  }

  .header-action {
    display: none;
  }

  .section {
    width: min(100% - 40px, 520px);
    max-width: min(100% - 40px, 520px);
    padding: 40px 0;
  }

  .hero-product {
    justify-items: center;
  }

  .sticky-buy {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-lead {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-note {
    font-size: 16px;
  }

  .hero-note {
    max-width: 100%;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof span {
    justify-content: center;
    text-align: center;
    min-width: 0;
    white-space: normal;
  }

  .protocol-card {
    padding: 24px;
  }

  .protocol-card h2 {
    font-size: 32px;
  }

  .symptom-grid,
  .practice-grid,
  .deliverables {
    grid-template-columns: 1fr;
  }

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

  .reviews {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .reviews .section-head {
    margin-bottom: 16px;
  }

  .reviews .section-head p {
    font-size: 18px;
    line-height: 1.45;
  }

  .review-grid article {
    min-height: 218px;
    padding: 16px;
    border-radius: 20px;
  }

  .review-grid img {
    width: min(92%, 340px);
    max-height: 188px;
  }

  .wide-card {
    grid-column: auto;
  }

  .plan-card {
    min-height: auto;
    padding: 24px;
  }

  .plan-head {
    display: grid;
  }

  .plan-for {
    min-height: 0;
  }

  .author-photo-placeholder {
    min-height: 300px;
  }

  .final-cta {
    width: min(100% - 40px, 520px);
    max-width: min(100% - 40px, 520px);
    padding: 34px 26px 84px;
    border-radius: 24px;
    overflow: hidden;
  }

  .final-cta h2 {
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .final-cta p {
    font-size: 18px;
    line-height: 1.45;
  }

  .final-cta .button {
    min-height: 58px;
    padding: 0 18px;
    white-space: normal;
    line-height: 1.22;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 70px;
  }

  .payment-main {
    width: min(100% - 28px, 940px);
    padding-top: 30px;
  }

  .legal-page {
    font-size: 14px;
    line-height: 1.58;
  }

  .legal-document {
    width: min(100% - 32px, 520px);
    padding: 28px 18px 42px;
    border-radius: 20px;
  }

  .legal-document h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .legal-document h2 {
    margin-top: 22px;
    font-size: 17px;
  }

  .legal-document p,
  .legal-document li {
    margin-bottom: 10px;
  }

  .legal-document ul,
  .legal-document ol {
    padding-left: 18px;
  }
}
