:root {
  --ink: #17120e;
  --muted: #695f55;
  --paper: #fff8ec;
  --paper-2: #f5e6c8;
  --brown: #512417;
  --wine: #24111a;
  --green: #268c3c;
  --green-dark: #147429;
  --gold: #f0a92c;
  --gold-soft: #fff0c7;
  --white: #ffffff;
  --shadow: 0 20px 54px rgba(36, 17, 26, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 58px);
  background: rgba(255, 248, 236, .94);
  border-bottom: 1px solid rgba(81, 36, 23, .12);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}
.brand span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: var(--gold);
  font-family: Archivo, Inter, sans-serif;
}
nav { display: flex; gap: 18px; }
nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 65px));
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 72px);
  color: #fff8e7;
  background:
    radial-gradient(circle at 15% 12%, rgba(240, 169, 44, .25), transparent 31%),
    linear-gradient(135deg, #26121a 0%, #12100e 55%, #3a1b10 100%);
}
.hero-copy, .section > *, .offer-wrap {
  max-width: 1180px;
  margin-inline: auto;
}
.tag {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.04;
}
h1 { max-width: 820px; font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(31px, 4.5vw, 54px); }
h3 { font-size: clamp(28px, 4vw, 44px); }
mark {
  color: var(--gold);
  background: transparent;
}
.hero p:not(.tag) {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 248, 231, .84);
  font-size: clamp(18px, 2vw, 23px);
}
.split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(50px, 7vw, 92px) clamp(18px, 5vw, 72px);
}
.section-head {
  text-align: center;
}
.section-head p:not(.tag) {
  max-width: 850px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 19px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
}
.reverse {
  grid-template-columns: minmax(300px, .75fr) minmax(0, .95fr);
}
.receive { background: var(--white); }
.audience { background: linear-gradient(180deg, #fff1c8, #f7dfab); }
.videos { background: #fffaf1; }
.list-section { background: var(--white); }
.bonuses { background: #f4e4c4; }
.testimonials { background: #eef1f2; }

.lead, blockquote, .benefits p, .checks li {
  font-size: clamp(18px, 2vw, 22px);
}
.checks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.checks li {
  position: relative;
  padding-left: 34px;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}
.checks li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 6px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checks.large { gap: 18px; }
blockquote {
  margin: 26px 0 0;
  padding: 22px;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 6px;
  padding: 0 26px;
  color: #1e1308;
  background: var(--gold);
  box-shadow: 0 13px 28px rgba(240, 169, 44, .33);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.secondary {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}
.checkout {
  width: 100%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 13px 28px rgba(38, 140, 60, .32);
}
.checkout:hover { background: var(--green-dark); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.benefits {
  display: grid;
  gap: 8px;
}
.benefits p {
  position: relative;
  margin: 0;
}
.benefits p:nth-child(odd) {
  margin-top: 8px;
  color: var(--brown);
  font-weight: 900;
}
.benefits p:nth-child(odd)::before {
  content: "✓ ";
  color: var(--green);
}
.price-card li::before {
  content: "★ ";
  color: var(--gold);
}

.bonus-grid, .testimonial-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}
.bonus-grid {
  grid-template-columns: repeat(5, 1fr);
}
.bonus-grid article, .testimonial-grid article, .price-card, .proof-copy {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.bonus-grid article {
  padding: 22px;
  font-size: 18px;
  font-weight: 700;
}
.bonus-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-weight: 900;
}
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial-grid article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 18px;
  align-items: start;
}
.testimonial-grid img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-grid p {
  margin: 0;
  color: #2c3e50;
}
.proof-copy {
  max-width: 940px;
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
}
.proof-copy p {
  color: #2c3e50;
  font-size: 19px;
}

.offer {
  color: var(--white);
  background: linear-gradient(135deg, #1f7b35, #0f4f24);
}
.offer-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .74fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.offer-copy p {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
}
.price-card {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  border: 5px dashed #7ee000;
}
.price-card h3 {
  text-align: center;
}
.price-card p {
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}
.price {
  margin: 20px 0 0;
  color: var(--gold);
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 900;
  text-align: center;
}
.choice {
  color: var(--green) !important;
}

@media (max-width: 860px) {
  .topbar { align-items: flex-start; }
  nav { display: none; }
  .split, .reverse, .offer-wrap {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 44px;
  }
  .video-grid, .bonus-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid article {
    grid-template-columns: 64px 1fr;
  }
  .testimonial-grid img {
    width: 64px;
    height: 64px;
  }
  .btn {
    width: 100%;
    padding: 0 18px;
  }
}
