:root {
  --ink: #17120e;
  --muted: #67594c;
  --line: #e5d7c7;
  --paper: #fff8ee;
  --cream: #f5ebdd;
  --leaf: #315f35;
  --leaf-dark: #173d25;
  --orange: #ee7b16;
  --gold: #c28a25;
  --red: #d93525;
  --black: #111111;
  --shadow: 0 22px 54px rgba(41, 28, 18, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.topbar__inner {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 9px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 238, .94), rgba(245, 235, 221, .78)),
    linear-gradient(90deg, #fff 0%, #f8ead6 48%, #e8f0df 100%);
}

.hero__inner {
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 38px);
  margin: 0 auto;
  padding: 34px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 32px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero--repeat .hero__inner {
  min-height: auto;
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.lead {
  max-width: 640px;
  color: #3b322a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.4;
}

.hero__badges,
.order-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.hero__badges span,
.order-benefits span {
  border: 1px solid rgba(23, 18, 14, .12);
  background: rgba(255, 255, 255, .78);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.price-panel {
  width: min(560px, 100%);
  margin: 24px 0;
  padding: 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(23, 18, 14, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 34px rgba(41, 28, 18, .09);
}

.price-panel__label,
.old-price span {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.price {
  margin: 0;
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 48px;
}

.old-price {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.old-price s {
  color: #6a5d50;
  font-size: 24px;
  font-weight: 900;
}

.countdown {
  width: min(560px, 100%);
  margin: 0 0 22px;
  padding: 14px;
  border: 1px solid rgba(217, 53, 37, .2);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7f1, #fff);
  box-shadow: 0 12px 30px rgba(217, 53, 37, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.countdown__label {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.countdown__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(58px, 1fr));
  gap: 8px;
}

.countdown__items span {
  min-width: 58px;
  padding: 8px 7px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  text-align: center;
}

.countdown__items b,
.countdown__items small {
  display: block;
}

.countdown__items b {
  font-size: 20px;
  line-height: 1;
}

.countdown__items small {
  margin-top: 3px;
  color: #f2b244;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--red), var(--orange) 58%, #f4b33d);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(217, 53, 37, .32), inset 0 -2px 0 rgba(0, 0, 0, .16);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -42%;
  z-index: -1;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .86), transparent);
  animation: shine 3s ease-in-out infinite;
}

.cta--hero {
  min-width: 270px;
}

.cta--small {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 15px;
}

.microcopy,
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero__media {
  display: grid;
  justify-items: center;
}

.hero__media img {
  width: min(100%, 660px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.proof-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--leaf-dark), var(--leaf), #f0a226);
  color: #fff;
}

.proof-strip__inner {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 12px 0;
  font-weight: 900;
  animation: moveTicker 24s linear infinite;
}

.proof-strip__inner span {
  white-space: nowrap;
}

.section {
  padding: 76px 0;
}

.two-col,
.split,
.order__inner,
.specs__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.problem .two-col,
.specs__inner,
.order__inner {
  grid-template-columns: 1fr;
  justify-items: center;
}

.problem .two-col > div:first-child,
.section-copy,
.specs__inner > div,
.order__copy {
  width: min(860px, 100%);
  justify-self: center;
  text-align: center;
}

.problem p,
.section-copy p,
.section-head p,
.detail-card p,
.order__copy p,
.specs__inner p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.problem-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.problem-list {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-list article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
}

.problem-list span {
  color: var(--muted);
  line-height: 1.45;
}

.product-story,
.reviews {
  background: #fff;
}

.section-head {
  width: min(780px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.story-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.section-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.story-grid article,
.review-card,
.detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(41, 28, 18, .06);
}

.story-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper);
}

.story-grid h3,
.story-grid p {
  padding-inline: 18px;
}

.story-grid h3 {
  margin-top: 18px;
}

.story-grid p {
  color: var(--muted);
  line-height: 1.45;
  padding-bottom: 18px;
}

.video-section,
.details,
.faq {
  background: var(--cream);
}

.video-frame {
  width: min(100%, 430px);
  justify-self: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.check-list {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #3b322a;
  line-height: 1.45;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--leaf);
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
}

.detail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.detail-card--wide img {
  aspect-ratio: 16 / 9;
}

.detail-card div,
.detail-card h3,
.detail-card p {
  padding-inline: 18px;
}

.detail-card div {
  padding-block: 18px;
}

.detail-card > h3 {
  margin-top: 18px;
}

.detail-card > p {
  padding-bottom: 18px;
}

.specs {
  background: var(--black);
  color: #fff;
}

.specs .eyebrow {
  color: #f2b244;
}

.specs__inner p {
  color: #cfc6bb;
}

dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

dl div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
}

dt {
  color: #f2b244;
  font-weight: 900;
}

dd {
  margin: 0;
  color: #fff;
  line-height: 1.45;
}

.review-card {
  min-height: 250px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.review-rating {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: .06em;
}

.review-card p {
  margin: 0;
  color: #3b322a;
  font-size: 16px;
  line-height: 1.45;
}

.review-card footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

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

.review-card span,
.reviews-empty,
.personal-review-preview span {
  color: var(--muted);
  line-height: 1.45;
}

.reviews-empty {
  border: 1px dashed #f4b19c;
  border-radius: 8px;
  padding: 18px;
  background: #fff7f3;
  font-weight: 800;
}

.reviews-empty[hidden],
.personal-review-preview[hidden] {
  display: none;
}

.cta--secondary {
  width: fit-content;
  min-height: 52px;
  margin-top: 18px;
  background: linear-gradient(135deg, #fff1df, #ffe0cc);
  color: var(--red);
  box-shadow: 0 10px 26px rgba(217, 53, 37, .14);
}

.personal-review {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(238, 123, 22, .12), transparent 32%),
    #fff;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .85fr);
  gap: 24px;
  box-shadow: 0 10px 30px rgba(41, 28, 18, .06);
}

.personal-review-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.personal-review-copy h3,
.personal-review-copy p {
  margin: 0;
}

.personal-review-copy p,
.personal-review-preview p {
  color: var(--muted);
  line-height: 1.5;
}

.personal-review-form {
  display: grid;
  gap: 14px;
}

.personal-review-form textarea {
  min-height: 128px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font: inherit;
  font-weight: 600;
}

.personal-review-preview {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
  background: #fff8f3;
}

.personal-review-preview strong {
  color: var(--orange);
  letter-spacing: .06em;
}

.personal-review-preview h3,
.personal-review-preview p {
  margin: 0;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.order {
  background: linear-gradient(135deg, #fff8ee 0%, #f4e0c5 54%, #e1eed8 100%);
}

.order-benefits {
  width: min(640px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
}

.order-form {
  width: min(620px, 100%);
  padding: 24px;
  border: 1px solid rgba(23, 18, 14, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-price {
  padding: 16px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.form-price span {
  color: #d8d0c7;
  font-size: 14px;
  font-weight: 800;
}

.form-price b {
  color: #f7b340;
  font-size: 30px;
  line-height: 1;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

input[readonly] {
  background: #fff8ee;
  color: var(--leaf-dark);
}

input:focus,
select:focus {
  outline: 3px solid rgba(49, 95, 53, .18);
  border-color: var(--leaf);
}

.form-submit {
  width: 100%;
}

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  padding: 28px 0 92px;
  background: var(--black);
  color: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer b,
.footer span {
  display: block;
}

.footer span,
.footer a {
  color: #cfc6bb;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal {
  min-height: 100vh;
  padding: 46px 0 64px;
  background: var(--paper);
}

.legal .container {
  width: min(860px, calc(100% - 28px));
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 7vw, 52px);
  line-height: .98;
}

.legal h2 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.legal p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.legal .cta {
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .2s ease, transform .2s ease;
}

.has-scrolled .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.thanks-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff8ee, #e1eed8);
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thanks__box {
  width: min(620px, 100%);
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.thanks__box h1 {
  font-size: clamp(36px, 7vw, 58px);
}

.thanks__box p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.thanks__order {
  margin: 22px 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--paper);
  display: grid;
  gap: 6px;
}

.thanks__order span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.thanks__order strong {
  color: var(--red);
  font-size: 24px;
}

@keyframes shine {
  0%, 35% { transform: translateX(0) rotate(18deg); }
  70%, 100% { transform: translateX(420%) rotate(18deg); }
}

@keyframes moveTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 920px) {
  .hero__inner,
  .two-col,
  .split,
  .order__inner,
  .specs__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 26px;
  }

  .hero__media {
    order: -1;
  }

  .story-grid,
  .reviews-grid,
  .detail-grid,
  .problem-list {
    grid-template-columns: 1fr;
  }

  .detail-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sticky-cta .cta {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .topbar__inner {
    justify-content: flex-start;
    gap: 10px;
  }

  .hero__inner,
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 54px 0;
  }

  .hero__badges span,
  .order-benefits span {
    font-size: 13px;
    padding: 9px 11px;
  }

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

  .order-benefits {
    grid-template-columns: 1fr;
  }

  .price-panel,
  .form-price {
    align-items: center;
    flex-direction: row;
  }

  .price-panel {
    gap: 10px;
    padding: 14px;
  }

  .countdown {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .countdown__items {
    width: 100%;
  }

  .price span {
    font-size: 42px;
  }

  .old-price {
    padding-left: 12px;
    border-left: 1px solid var(--line);
    border-top: 0;
    padding-top: 0;
  }

  .old-price s {
    font-size: 21px;
  }

  .form-price b {
    white-space: nowrap;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer__inner,
  .footer nav {
    display: grid;
  }
}
