:root {
  --ink: #19241e;
  --green: #20372b;
  --green2: #2d4b3a;
  --cream: #f7efe2;
  --paper: #fffdf9;
  --clay: #b45d36;
  --clay2: #914326;
  --gold: #ecc9a4;
  --line: #ded5c9;
  --muted: #606a64;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: auto;
}
.narrow {
  width: min(820px, calc(100% - 40px));
}
.skip {
  position: fixed;
  top: -70px;
  left: 10px;
  z-index: 99;
  background: #fff;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
.offer-bar {
  padding: 9px 16px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid #e4ddd3;
  backdrop-filter: blur(10px);
}
.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand span {
  color: var(--clay);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 5px;
  background: var(--clay);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(119, 52, 26, 0.2);
  transition: 0.2s;
}
.button:hover {
  background: var(--clay2);
  transform: translateY(-2px);
}
.button.small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.82rem;
}
.button.wide {
  width: 100%;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--gold);
}
h1,
h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
h1 {
  font-family: var(--sans);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h1 em {
  color: var(--clay);
  font-style: normal;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}
h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}
.lead {
  color: #48534d;
  font-size: 1.05rem;
}
.headline-proof {
  font-size: 1.25rem;
  line-height: 1.35;
}
.headline-proof strong {
  color: var(--clay2);
}
.microcopy {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.76rem;
}
.hero {
  padding: 58px 0 70px;
  background:
    radial-gradient(circle at 16% 0, #fff 0, transparent 38%), var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 58px;
  align-items: center;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 25px 0 12px;
  padding-top: 18px;
  border-top: 1px solid #d8caba;
}
.price-line span,
.price-line small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}
.price-line b {
  font: 750 2.5rem var(--serif);
  color: var(--green);
}
.mobile-metrics {
  display: none;
}
.hero-proof {
  position: relative;
  min-height: 570px;
}
.hero-proof figure {
  margin: 0;
  background: #fff;
  box-shadow: 0 24px 70px rgba(33, 54, 43, 0.18);
}
.product {
  width: 82%;
  padding: 12px;
  transform: rotate(1deg);
}
.product img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 32% center;
}
.hero-proof figcaption {
  padding: 8px 11px;
  color: var(--muted);
  font-size: 0.7rem;
}
.print {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 67%;
  padding: 8px;
  transform: rotate(-2deg);
}
.print img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}
.proof-badge {
  position: absolute;
  right: 0;
  top: 28px;
  display: grid;
  padding: 13px 17px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.proof-badge b {
  color: var(--gold);
  font: 700 1.45rem var(--serif);
}
.proof-badge span {
  font-size: 0.68rem;
}
.proof {
  padding: 92px 0;
  background: var(--green);
  color: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-head > p:not(.eyebrow) {
  color: #c2ccc5;
}
.center {
  text-align: center;
  margin-inline: auto;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.proof-cards article {
  padding: 28px;
  background: var(--green2);
  border: 1px solid #506656;
}
.proof-cards small {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.proof-cards b {
  display: block;
  margin: 8px 0;
  color: var(--gold);
  font: 700 2rem var(--serif);
}
.proof-cards p {
  margin: 0;
  color: #cad3cd;
}
.proof-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 30px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
}
.proof-note strong {
  max-width: 650px;
  font-size: 1.05rem;
}
.proof-note .button {
  flex: 0 0 auto;
}
.modules {
  padding: 98px 0;
  background: #fff;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.module-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.module-grid article.featured {
  background: var(--cream);
  border-color: #d7bea1;
}
.module-grid article > span {
  color: var(--clay);
  font: 700 2.2rem var(--serif);
}
.module-grid small {
  display: block;
  margin: 15px 0 7px;
  color: var(--clay);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.module-grid p {
  margin: 0;
  color: var(--muted);
}
.process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 36px;
  padding: 18px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
}
.process i {
  color: var(--gold);
  font-style: normal;
}
.cta {
  margin-top: 28px;
}
.support {
  padding: 98px 0;
  background: var(--cream);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 58px;
  align-items: start;
}
.support-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.support-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 13px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.support-list article > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #fff;
  font-size: 0.59rem;
  font-weight: 800;
}
.support-list h3 {
  font-size: 1rem;
}
.support-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}
.offer {
  padding: 34px;
  background: #fff;
  border-top: 5px solid var(--clay);
  box-shadow: 0 22px 60px rgba(64, 49, 34, 0.13);
}
.offer h2 {
  font-size: 2.25rem;
}
.offer ul {
  padding: 0;
  list-style: none;
}
.offer li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--line);
}
.offer li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 800;
}
.offer-price {
  display: grid;
  margin: 22px 0;
  padding: 17px 0;
  border-block: 1px solid var(--line);
}
.offer-price small {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.offer-price b {
  color: var(--green);
  font: 750 2.9rem var(--serif);
}
.offer-price span {
  color: var(--muted);
  font-size: 0.8rem;
}
.faq {
  padding: 92px 0;
  background: #fff;
}
.faq details {
  margin-bottom: 9px;
  padding: 0 20px;
  border: 1px solid var(--line);
}
summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  padding: 19px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
summary::-webkit-details-marker {
  display: none;
}
summary i {
  font-style: normal;
  font-size: 1.3rem;
}
details[open] summary i {
  transform: rotate(45deg);
}
details p {
  margin: 0;
  padding: 0 30px 20px 0;
  color: var(--muted);
}
.final {
  padding: 92px 0;
  background: #17261e;
  color: #fff;
  text-align: center;
}
.final > div > p:not(.eyebrow) {
  color: #c2ccc5;
}
.final-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 31px 0;
  border-block: 1px solid #52665a;
}
.final-stats span {
  display: grid;
  padding: 18px;
  border-right: 1px solid #52665a;
  color: #bdc9c1;
  font-size: 0.72rem;
}
.final-stats span:last-child {
  border: 0;
}
.final-stats b {
  color: var(--gold);
  font: 700 1.8rem var(--serif);
}
.final-price {
  display: block;
  margin: 0 0 20px;
  font: 700 1.5rem var(--serif);
}
.final .microcopy {
  color: #abb8b0;
}
footer {
  padding: 46px 0 90px;
  background: #101812;
  color: #aeb8b0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.footer-grid nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-grid a {
  text-decoration: none;
}
.legal {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #334038;
  font-size: 0.7rem;
}
.floating-buy {
  display: none;
  position: fixed;
  z-index: 40;
  left: 10px;
  right: 10px;
  bottom: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.floating-buy span {
  font-size: 0.6rem;
}
.floating-buy b {
  font-size: 0.83rem;
}
@media (max-width: 850px) {
  .hero-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof {
    max-width: 620px;
    margin: auto;
  }
  .proof-cards,
  .module-grid {
    grid-template-columns: 1fr;
  }
  .proof-note {
    align-items: stretch;
    flex-direction: column;
  }
  .proof-note .button {
    width: 100%;
  }
  .support-list {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, 1140px);
  }
  .offer-bar {
    font-size: 0.6rem;
  }
  .nav {
    height: 58px;
  }
  .nav .button {
    display: none;
  }
  .brand {
    font-size: 0.78rem;
  }
  .hero {
    padding: 34px 0 46px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero h1 {
    font-size: 2.08rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
  }
  .headline-proof {
    font-size: 1.08rem;
  }
  .lead {
    font-size: 0.96rem;
  }
  .mobile-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 18px 0;
  }
  .mobile-metrics span {
    display: grid;
    padding: 9px 5px;
    background: #fff;
    text-align: center;
    font-size: 0.56rem;
    color: var(--muted);
  }
  .mobile-metrics b {
    font: 700 0.95rem var(--serif);
    color: var(--green);
  }
  .price-line {
    margin-top: 12px;
  }
  .button {
    width: 100%;
    min-height: 58px;
    padding: 13px 15px;
    font-size: 0.85rem;
  }
  .hero-proof {
    min-height: 365px;
  }
  .product {
    width: 88%;
  }
  .product img {
    height: 325px;
  }
  .print {
    width: 74%;
  }
  .print img {
    height: 112px;
  }
  .proof-badge {
    top: 14px;
    padding: 9px 12px;
  }
  .proof-badge b {
    font-size: 1.15rem;
  }
  .proof,
  .modules,
  .support,
  .faq,
  .final {
    padding: 65px 0;
  }
  .proof-cards {
    gap: 9px;
  }
  .proof-cards article,
  .module-grid article {
    padding: 23px;
  }
  .proof-cards b {
    font-size: 1.65rem;
  }
  .proof-note {
    padding: 20px;
  }
  .module-grid {
    gap: 9px;
  }
  .process {
    justify-content: flex-start;
    gap: 9px;
    padding: 14px;
  }
  .support-list {
    grid-template-columns: 1fr;
  }
  .offer {
    padding: 26px 20px;
  }
  .final-stats {
    grid-template-columns: 1fr;
  }
  .final-stats span {
    border-right: 0;
    border-bottom: 1px solid #52665a;
  }
  .final-stats span:last-child {
    border-bottom: 0;
  }
  .footer-grid {
    display: grid;
  }
  .footer-grid nav {
    display: grid;
  }
  .floating-buy {
    display: flex;
  }
  footer {
    padding-bottom: 105px;
  }
}
