:root {
  --ink: #17352f;
  --forest: #123b35;
  --forest-2: #1d574d;
  --sage: #dce9dd;
  --mint: #eff7ef;
  --cream: #fbf8f0;
  --paper: #fffdf8;
  --coral: #ee755c;
  --coral-dark: #c84e3a;
  --gold: #e5a93c;
  --muted: #65736f;
  --line: rgba(23, 53, 47, .14);
  --shadow: 0 22px 60px rgba(23, 53, 47, .12);
  --radius: 24px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
}
h1 { font-size: clamp(3rem, 6vw, 5.65rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); margin-bottom: 20px; }
h3 { line-height: 1.2; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--coral-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 2px solid var(--coral);
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 10px 25px rgba(238, 117, 92, .2);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--coral-dark); border-color: var(--coral-dark); box-shadow: 0 14px 30px rgba(200, 78, 58, .26); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid #f7b948; outline-offset: 4px; }
.button-small { min-height: 42px; padding: 10px 18px; font-size: .86rem; }
.button-outline { color: var(--forest); background: transparent; border-color: var(--forest); box-shadow: none; }
.button-outline:hover { color: #fff; background: var(--forest); border-color: var(--forest); }
.button-light { color: var(--forest); background: #fff; border-color: #fff; }
.button-light:hover { color: #fff; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 150px; }
nav { display: flex; gap: 28px; }
nav a { font-size: .9rem; font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--coral-dark); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.65) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.65) 1px, transparent 1px),
    var(--cream);
  background-size: 50px 50px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  background: var(--sage);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 680px; }
.hero-copy { padding: 68px 50px 70px 0; }
.hero h1 em { color: var(--coral-dark); font-weight: 500; }
.hero-intro { max-width: 620px; color: var(--muted); font-size: 1.16rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 28px 0; }
.trust-row span { font-size: .85rem; font-weight: 750; }
.trust-row b { display: inline-grid; width: 22px; height: 22px; margin-right: 6px; place-items: center; border-radius: 50%; color: #fff; background: var(--forest-2); font-size: .72rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.text-link { font-size: .88rem; font-weight: 800; text-underline-offset: 5px; }
.availability-note { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.availability-note div { display: flex; flex-direction: column; }
.availability-note strong { font-size: .9rem; }
.availability-note span:not(.pulse) { color: var(--muted); font-size: .78rem; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 7px rgba(238, 117, 92, .14); }
.product-stage { position: relative; align-self: stretch; min-height: 650px; }
.product-halo { position: absolute; width: 440px; height: 440px; top: 110px; left: 50%; border: 1px solid rgba(18, 59, 53, .2); border-radius: 50%; transform: translateX(-50%); }
.product-halo::before, .product-halo::after { content: ""; position: absolute; inset: 42px; border: 1px solid rgba(18, 59, 53, .16); border-radius: 50%; }
.product-halo::after { inset: 84px; }
.hero-product { position: absolute; z-index: 2; width: min(460px, 93%); left: 52%; bottom: 5px; transform: translateX(-50%); filter: drop-shadow(0 28px 24px rgba(31, 73, 65, .19)); }
.stage-label { position: absolute; z-index: 3; top: 90px; right: 8px; display: grid; width: 100px; height: 100px; place-content: center; border-radius: 50%; color: #fff; background: var(--forest); text-align: center; text-transform: uppercase; font-size: .62rem; letter-spacing: .08em; transform: rotate(8deg); }
.stage-label span { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.03em; }
.floating-card { position: absolute; z-index: 4; display: flex; flex-direction: column; padding: 16px 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 16px; background: rgba(255, 253, 248, .88); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.floating-card small { color: var(--muted); }
.floating-rating { left: -20px; bottom: 100px; }
.floating-rating .stars { font-size: .73rem; }
.floating-offer { right: -20px; bottom: 180px; }
.floating-offer > span { color: var(--coral-dark); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.floating-offer strong { font-family: var(--font-display); font-size: 1.8rem; }
.stars { color: var(--gold); letter-spacing: .1em; }
.deadline-bar { position: relative; z-index: 3; padding: 16px 0; color: #fff; background: var(--forest); }
.deadline-bar .container { display: flex; justify-content: space-between; gap: 20px; font-size: .9rem; }
.deadline-bar span { color: #b9d8cf; text-transform: uppercase; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }

/* Benefits */
.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { color: var(--muted); }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { min-height: 285px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.featured-benefit { background: var(--forest); color: #fff; transform: translateY(-18px); }
.featured-benefit:hover { transform: translateY(-23px); }
.icon-bubble { display: grid; width: 48px; height: 48px; margin-bottom: 48px; place-items: center; border-radius: 50%; color: var(--forest); background: var(--sage); font-size: .72rem; font-weight: 900; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.5rem; }
.benefit-card p { color: var(--muted); font-size: .9rem; }
.featured-benefit p { color: #c9ddd7; }

/* Mechanism */
.soft-section { background: var(--mint); }
.mechanism-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.mechanism-visual { position: relative; display: grid; min-height: 600px; place-items: center; border-radius: 52% 48% 48% 52% / 43% 45% 55% 57%; background: var(--sage); }
.mechanism-visual img { width: 65%; max-height: 560px; object-fit: contain; filter: drop-shadow(0 24px 25px rgba(18, 59, 53, .18)); }
.visual-note { position: absolute; top: 40px; left: -20px; padding: 16px 20px; border-radius: 15px; color: #fff; background: var(--coral); font-family: var(--font-display); font-size: 1.2rem; transform: rotate(-5deg); }
.mechanism-copy > p:not(.eyebrow):not(.fine-print) { color: var(--muted); font-size: 1.02rem; }
.mechanism-list { margin: 32px 0; }
.mechanism-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.mechanism-list > div:last-child { border-bottom: 1px solid var(--line); }
.mechanism-list span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--forest); border-radius: 50%; font-weight: 800; }
.mechanism-list p { margin-bottom: 0; color: var(--muted); }
.mechanism-list strong { display: block; color: var(--ink); }
.fine-print { font-size: .76rem; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.steps article { text-align: center; }
.steps img { width: 188px; height: 218px; margin: 0 auto 18px; border-radius: 50% 50% 45% 45%; object-fit: cover; background: var(--mint); }
.steps span { color: var(--coral-dark); font-size: .73rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.steps h3 { margin: 8px 0; font-family: var(--font-display); font-size: 1.6rem; }
.steps p { max-width: 270px; margin-inline: auto; color: var(--muted); font-size: .9rem; }
.use-caution { max-width: 760px; margin: 42px auto 0; padding: 14px 22px; border-radius: 12px; color: var(--muted); background: var(--cream); font-size: .78rem; text-align: center; }

/* Pricing */
.pricing-section { color: #fff; background: var(--forest); }
.light-heading .eyebrow { color: #ffb09e; }
.light-heading > p:last-child { color: #b9d1cb; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 18px; }
.price-card { position: relative; overflow: hidden; padding: 30px; border-radius: var(--radius); color: var(--ink); background: var(--paper); text-align: center; }
.price-card.popular { padding-top: 48px; border: 5px solid var(--coral); transform: scale(1.035); }
.popular-ribbon { position: absolute; top: 0; left: 0; width: 100%; padding: 7px; color: #fff; background: var(--coral); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.package-top p { margin-bottom: 6px; color: var(--coral-dark); font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.package-top h3 { margin: 0; font-family: var(--font-display); font-size: 1.5rem; }
.package-top span { color: var(--muted); font-size: .85rem; }
.package-product { height: 205px; margin: 12px 0; }
.package-product img { width: 190px; height: 210px; margin: auto; object-fit: contain; }
.price-line { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-line strong { font-family: var(--font-display); font-size: 2.7rem; }
.price-line span { color: var(--muted); font-size: .75rem; }
.price-card ul { margin: 18px 0 24px; padding: 0; list-style: none; }
.price-card li { padding: 8px; border-top: 1px solid var(--line); font-size: .84rem; }
.price-card li:last-child { border-bottom: 1px solid var(--line); }
.price-card .button { width: 100%; }
.stock-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 40px 0 0; color: #bfd5cf; font-size: .8rem; }

/* Reviews */
.reviews-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 42px; }
.reviews-head h2 { max-width: 680px; margin-bottom: 0; }
.rating-summary { display: grid; text-align: right; }
.rating-summary strong { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; }
.rating-summary small { color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 25px rgba(23, 53, 47, .05); }
.offset-card { transform: translateY(26px); background: var(--cream); }
.review-card blockquote { min-height: 150px; margin: 20px 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.55; }
.review-card p { display: flex; flex-direction: column; margin: 0; }
.review-card p span { color: var(--muted); font-size: .75rem; }
.review-card .stars span { color: #d9d9d9; }
.review-disclaimer { margin: 52px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }

/* Comparison */
.comparison-section { background: var(--cream); }
.comparison-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; }
.comparison-copy p:not(.eyebrow) { color: var(--muted); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; }
th, td { padding: 18px; border-bottom: 1px solid var(--line); text-align: center; font-size: .85rem; }
thead th { color: #fff; background: var(--forest); }
thead th:first-child, tbody th { text-align: left; }
tbody th { font-weight: 750; }
td.yes { color: var(--forest); background: var(--mint); font-weight: 900; }

/* Guarantee */
.guarantee-section { padding-block: 72px; }
.guarantee-card { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 40px; padding: 50px; border-radius: 32px; color: #fff; background: var(--coral-dark); }
.guarantee-card .eyebrow { color: #ffe0d8; }
.guarantee-card h2 { margin-bottom: 12px; }
.guarantee-card p:last-child { margin-bottom: 0; color: #ffe5df; }
.guarantee-mark { display: grid; width: 126px; height: 126px; place-content: center; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; text-align: center; text-transform: uppercase; font-size: .65rem; letter-spacing: .1em; }
.guarantee-mark span { display: block; font-family: var(--font-display); font-size: 3.4rem; line-height: .9; letter-spacing: -.05em; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.faq-intro > p:last-child { color: var(--muted); }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 24px 44px 24px 0; font-weight: 800; list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 19px; color: var(--coral-dark); font-family: var(--font-display); font-size: 1.6rem; }
details[open] summary::after { content: "−"; }
details p { padding-right: 40px; color: var(--muted); font-size: .9rem; }

/* Final CTA and footer */
.final-cta { overflow: hidden; color: #fff; background: var(--forest); }
.final-grid { display: grid; grid-template-columns: 1fr .65fr; align-items: center; min-height: 500px; }
.final-grid > div { padding: 70px 0; }
.final-grid .eyebrow { color: #ffb09e; }
.final-grid h2 { max-width: 680px; }
.final-grid p:not(.eyebrow) { color: #bed4ce; }
.final-grid img { align-self: end; max-height: 480px; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(0,0,0,.2)); }
.site-footer { padding: 54px 0 22px; color: #61706c; background: #f2eee5; font-size: .75rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-top img { width: 140px; }
.footer-top p { margin: 0; }
.footer-disclosures { display: grid; grid-template-columns: 1fr 2fr; gap: 34px; padding: 28px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { text-underline-offset: 3px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 31, 27, .75); backdrop-filter: blur(5px); }
.modal-panel { position: relative; z-index: 1; width: min(520px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 42px; border-radius: 28px; background: var(--paper); box-shadow: 0 35px 80px rgba(0,0,0,.3); }
.modal-panel h2 { font-size: 2.4rem; }
.modal-panel > p:not(.eyebrow):not(.modal-note) { color: var(--muted); }
.modal-close { position: absolute; top: 14px; right: 16px; width: 40px; height: 40px; border: 0; border-radius: 50%; color: var(--forest); background: var(--mint); font-size: 1.7rem; line-height: 1; }
.modal-order { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 18px; margin: 26px 0; padding: 16px; border-radius: 18px; background: var(--mint); }
.modal-order img { width: 90px; height: 105px; object-fit: contain; }
.modal-order div { display: flex; flex-direction: column; }
.modal-order span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.modal-order strong { font-family: var(--font-display); font-size: 1.3rem; }
.modal-order small { color: var(--coral-dark); font-weight: 800; }
.modal-points { margin: 0 0 24px; padding-left: 20px; color: var(--muted); font-size: .86rem; }
.modal-continue { width: 100%; }
.modal-cancel { display: block; margin: 14px auto; border: 0; border-bottom: 1px solid currentColor; color: var(--muted); background: none; font-size: .8rem; }
.modal-note { margin: 22px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero::before { width: 48%; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 20px; }
  .product-stage { min-height: 570px; }
  .product-halo { width: 350px; height: 350px; top: 120px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .featured-benefit { transform: none; }
  .mechanism-grid { gap: 50px; }
  .pricing-grid { gap: 12px; }
  .price-card { padding: 24px 18px; }
  .price-card.popular { transform: none; }
  .comparison-grid, .faq-grid { gap: 48px; }
  .guarantee-card { grid-template-columns: 110px 1fr; }
  .guarantee-card .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 620px); }
  .section { padding: 72px 0; }
  .site-header { position: relative; padding: 14px 0; background: var(--cream); }
  .header-inner .button { display: none; }
  .brand img { width: 135px; }
  .hero { padding-top: 0; }
  .hero::before { top: auto; bottom: 0; width: 100%; height: 48%; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 58px 0 26px; }
  h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .text-link { text-align: center; }
  .product-stage { min-height: 500px; }
  .product-halo { width: 330px; height: 330px; top: 70px; }
  .hero-product { width: min(400px, 96%); }
  .stage-label { top: 45px; right: 0; width: 82px; height: 82px; }
  .floating-rating { left: 0; bottom: 60px; }
  .floating-offer { right: 0; bottom: 128px; }
  .deadline-bar .container { align-items: center; flex-direction: column; gap: 4px; text-align: center; }
  .split-heading, .mechanism-grid, .comparison-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .icon-bubble { margin-bottom: 28px; }
  .mechanism-grid { gap: 45px; }
  .mechanism-visual { min-height: 480px; }
  .visual-note { left: 5px; }
  .steps, .pricing-grid, .review-grid { grid-template-columns: 1fr; }
  .steps { gap: 42px; }
  .pricing-grid { gap: 18px; }
  .price-card { max-width: 440px; width: 100%; margin-inline: auto; }
  .price-card.popular { grid-row: 1; }
  .reviews-head { align-items: start; flex-direction: column; gap: 24px; }
  .rating-summary { text-align: left; }
  .offset-card { transform: none; }
  .review-card blockquote { min-height: auto; }
  .comparison-copy { text-align: center; }
  .guarantee-card { grid-template-columns: 1fr; padding: 36px 26px; text-align: center; }
  .guarantee-mark { margin: auto; }
  .guarantee-card .button { grid-column: auto; justify-self: stretch; }
  .faq-intro { position: static; }
  .final-grid > div { padding: 70px 0 20px; text-align: center; }
  .final-grid img { max-height: 390px; margin: auto; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-disclosures { grid-template-columns: 1fr; gap: 8px; }
  .modal-panel { padding: 38px 22px 28px; }
}

@media (max-width: 420px) {
  .hero-product { bottom: 10px; }
  .product-stage { min-height: 440px; }
  .product-halo { width: 275px; height: 275px; top: 85px; }
  .floating-card { padding: 12px; font-size: .8rem; }
  .floating-rating { bottom: 35px; }
  .floating-offer { bottom: 105px; }
  .stage-label { right: -5px; }
  .trust-row { align-items: flex-start; flex-direction: column; }
  .mechanism-visual { min-height: 400px; }
  .modal-order { grid-template-columns: 72px 1fr; }
  .modal-order img { width: 70px; }
}

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