@font-face {
  font-family: "Lato";
  src: url("assets/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fffaf3;
  --paper-soft: #f4eadc;
  --sage: #6f8060;
  --sage-dark: #3d4a38;
  --sky: #d7e6e5;
  --clay: #b87148;
  --clay-dark: #784026;
  --ink: #26231f;
  --muted: #5f5a52;
  --white: #ffffff;
  --border: rgba(61, 74, 56, 0.16);
  --shadow: 0 18px 40px rgba(61, 48, 34, 0.12);
  --font: "Lato", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  text-align: center;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-label,
.eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  border: 0;
  border-radius: 6px;
  padding: 0.95rem 1.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.28);
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #15803d 0%, #16a34a 100%);
  box-shadow: 0 18px 34px rgba(22, 163, 74, 0.36);
}

.btn-light {
  background: var(--white);
  color: var(--sage-dark);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 3rem 0 4rem;
  background:
    radial-gradient(circle at 82% 22%, rgba(215, 230, 229, 0.72) 0, rgba(215, 230, 229, 0) 30rem),
    radial-gradient(circle at 8% 72%, rgba(184, 113, 72, 0.14) 0, rgba(184, 113, 72, 0) 24rem),
    linear-gradient(115deg, #fffaf3 0%, #f4eadc 52%, #eef3ed 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0), var(--paper));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(92vh - 7rem);
}

.hero-copy {
  padding-top: 1rem;
}

.hero-lead {
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.6rem;
  color: #3d3932;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hero-visual {
  justify-self: center;
  width: min(100%, 23.5rem);
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-visual img {
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(38, 35, 31, 0.18);
}

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

.practice-section {
  background: linear-gradient(180deg, var(--paper-soft) 0%, #fff7ef 100%);
}

.contents-section {
  background: var(--sky);
}

.split,
.checkout-grid,
.author-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.text-stack p {
  text-align: center;
  margin-bottom: 1rem;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.practice-flow {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(184, 113, 72, 0.22);
}

.practice-flow::before {
  content: none;
}

.practice-step {
  position: relative;
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  min-height: 100%;
  border-bottom: 1px solid rgba(184, 113, 72, 0.22);
  padding: 1.35rem 0;
  color: var(--ink);
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(184, 113, 72, 0.32);
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.practice-step h3 {
  max-width: none;
  margin-bottom: 0;
}

.practice-step p {
  max-width: 34rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  font-size: 1rem;
}

.benefit-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid rgba(61, 74, 56, 0.18);
}

.benefit-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  border-bottom: 1px solid rgba(61, 74, 56, 0.18);
  padding: 1.65rem 0;
  color: var(--ink);
  text-align: center;
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(111, 128, 96, 0.16);
  color: var(--sage-dark);
  font-weight: 700;
}

.benefit-item h3 {
  max-width: 30rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.55rem;
}

.benefit-item p {
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  font-size: 1rem;
}

.cta-band {
  background: var(--sage-dark);
  color: var(--white);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

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

.cta-content p {
  margin-bottom: 1.8rem;
  opacity: 0.88;
}

.checkout-section {
  background: linear-gradient(180deg, #fffaf3 0%, #f8efe1 100%);
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow);
}

.pricing-list {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.7rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.pricing-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-left: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.pricing-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--clay);
}

.price-label {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.price-label del {
  color: #d11d36;
  opacity: 1;
}

.price {
  margin-bottom: 1.4rem;
  color: var(--sage-dark);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.checkout-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.guarantee-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(215, 230, 229, 0.7) 0, rgba(215, 230, 229, 0) 22rem),
    linear-gradient(180deg, #eef3ed 0%, #fffaf3 100%);
  text-align: center;
}

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

.guarantee-content h2 {
  margin-bottom: 1rem;
}

.guarantee-content p {
  max-width: 660px;
  margin: 0 auto 1rem;
}

.guarantee-content .btn {
  margin-top: 1rem;
}

.author-section {
  background:
    linear-gradient(90deg, rgba(238, 243, 237, 0.92) 0%, rgba(255, 250, 243, 0.98) 58%),
    var(--paper);
}

.author-grid {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.author-photo {
  height: clamp(25rem, 36vw, 32rem);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.author-copy {
  justify-self: center;
  align-self: center;
  max-width: 680px;
}

.faq-section {
  background: var(--paper-soft);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 820px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(61, 48, 34, 0.05);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--clay-dark);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  font-size: 1rem;
}

.disclaimer {
  max-width: 820px;
  margin: 2rem auto 0;
  border-left: 4px solid var(--clay);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1rem 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.footer {
  background: var(--sage-dark);
  padding: 1.4rem 0;
  text-align: center;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.28);
  }

  50% {
    transform: scale(1.025);
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    animation: none;
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    padding-top: 1.35rem;
    padding-bottom: 2.25rem;
  }

  .hero-grid,
  .split,
  .checkout-grid,
  .author-grid {
    grid-template-columns: 1fr;
  }

  .author-grid {
    gap: 1.6rem;
  }

  .author-photo {
    height: clamp(18rem, 76vw, 24rem);
  }

  .author-photo img {
    object-position: center top;
  }

  .author-copy {
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    gap: 1.25rem;
    text-align: center;
  }

  .hero-copy {
    order: 2;
    padding-top: 0;
  }

  .hero-visual {
    order: 1;
    width: min(56vw, 13rem);
    transform: rotate(0.8deg);
  }

  h1 {
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 0.85rem;
    font-size: clamp(2.15rem, 9.5vw, 3.2rem);
  }

  .hero-lead {
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 1.03rem;
    line-height: 1.45;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .practice-flow,
  .benefit-item {
    grid-template-columns: 1fr;
  }

  .practice-step {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.4rem 0.4rem;
  }

  .step-number {
    justify-self: center;
  }

  .benefit-item {
    gap: 0.9rem;
    padding: 1.45rem 0;
  }

  .benefit-number {
    justify-self: center;
    margin-bottom: 0.1rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.4rem, 1120px);
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero {
    padding-bottom: 2.1rem;
  }

  .hero-actions .btn:first-child {
    width: 100%;
  }

  .hero-actions .btn {
    min-height: 3.1rem;
    padding: 0.78rem 1rem;
    font-size: 0.82rem;
  }

  .pricing-card {
    padding: 1.2rem;
  }
}
