:root {
  --ink: #171a18;
  --orange: #fa741e;
  --cream: #f8eee4;
  --paper: #fffaf5;
  --muted: #6e6e68;
  --green: #27704d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
.shell {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.narrow {
  max-width: 820px;
}
.center {
  text-align: center;
}
.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  padding: 24px 0;
  color: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand > span {
  font-size: 28px;
  font-weight: 900;
}
.brand .dot {
  font-size: 12px;
  color: var(--orange);
}
.brand small {
  font-size: 9px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero {
  min-height: 760px;
  background: radial-gradient(
    circle at 78% 45%,
    #3d3025 0,
    #201f1c 28%,
    #151816 58%
  );
  color: white;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 760px;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
}
.eyebrow,
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  color: var(--orange);
  margin: 0 0 18px;
}
.eyebrow {
  background: var(--orange);
  color: white;
  border-radius: 99px;
  padding: 9px 16px;
}
.hero h1 {
  font-size: clamp(45px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.hero h1 em,
.offer h2 em {
  font-style: normal;
  color: var(--orange);
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  max-width: 650px;
  color: #e3e1dd;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 25px 0;
  color: #fff;
  font-size: 14px;
}
.hero-checks span {
  background: #ffffff10;
  border: 1px solid #ffffff1e;
  padding: 9px 12px;
  border-radius: 8px;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}
.price-row > div {
  display: grid;
}
.price-row s {
  font-size: 13px;
  color: #aaa;
}
.price-row strong {
  font-size: 46px;
  line-height: 1;
  color: white;
}
.price-row small {
  font-size: 12px;
  color: #aaa;
}
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 9px;
  padding: 18px 23px;
  box-shadow: 0 12px 30px #fa741e38;
  transition: 0.2s;
}
.buy-button:hover {
  transform: translateY(-2px);
  background: #ff852f;
}
.buy-button span {
  font-size: 20px;
}
.secure {
  font-size: 11px;
  color: #aaa;
}
.hero-visual {
  position: relative;
  height: 640px;
  display: grid;
  place-items: center;
}
.cover {
  position: relative;
  width: min(390px, 85%);
  max-height: 570px;
  object-fit: cover;
  object-position: left;
  border-radius: 5px;
  box-shadow: 0 32px 80px #0009;
  transform: rotate(2deg);
  z-index: 2;
}
.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #fa741e26;
  filter: blur(50px);
}
.badge {
  position: absolute;
  z-index: 3;
  background: white;
  color: var(--ink);
  padding: 13px 17px;
  border-radius: 10px;
  box-shadow: 0 14px 30px #0005;
  font-size: 12px;
  line-height: 1.25;
}
.badge b {
  color: var(--orange);
  font-size: 18px;
}
.badge-one {
  left: 0;
  bottom: 130px;
}
.badge-two {
  right: 0;
  top: 140px;
}
.section {
  padding: 100px 0;
}
.problem {
  background: white;
}
.problem h2,
.section h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.problem > div > p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.truth-card {
  margin: 45px auto 0;
  padding: 24px;
  border-left: 5px solid var(--orange);
  background: var(--ink);
  color: white;
  display: grid;
  max-width: 620px;
  text-align: left;
}
.truth-card span {
  font-size: 13px;
  color: #bbb;
}
.truth-card strong {
  font-size: 21px;
  margin-top: 5px;
}
.cream {
  background: var(--cream);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.6;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.benefit-grid article {
  background: white;
  border: 1px solid #ebddd0;
  padding: 25px;
  border-radius: 13px;
  min-height: 270px;
  transition: 0.2s;
}
.benefit-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px #58341412;
}
.benefit-grid article > span {
  font-weight: 900;
  color: var(--orange);
  font-size: 13px;
}
.benefit-grid h3 {
  font-size: 21px;
  margin: 35px 0 12px;
}
.benefit-grid p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.inside {
  background: white;
}
.inside-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 70px;
}
.inside-grid > div > p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.inside ul,
.offer ul {
  padding: 0;
  list-style: none;
}
.inside li,
.offer li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.inside li:before,
.offer li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}
.pages {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  padding: 35px;
}
.pages img {
  width: 47%;
  border-radius: 6px;
  box-shadow: 0 18px 45px #4a2c1730;
}
.pages img:first-child {
  transform: rotate(-4deg) translateX(15px);
}
.pages img:last-child {
  transform: rotate(4deg) translateX(-15px);
}
.video-section {
  background: var(--ink);
  color: white;
}
.split-card {
  display: grid;
  grid-template-columns: auto 1fr 0.7fr;
  gap: 35px;
  align-items: center;
}
.video-icon {
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 28px;
}
.split-card h2 {
  font-size: 40px;
}
.split-card > div > p:not(.kicker) {
  color: #bbb;
  line-height: 1.6;
}
.mini-card {
  background: #292d2a;
  border: 1px solid #ffffff16;
  border-radius: 16px;
  padding: 28px;
}
.mini-card span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}
.mini-card strong {
  display: block;
  font-size: 21px;
  margin: 10px 0;
}
.authority {
  background: var(--paper);
}
.authority-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.quote {
  background: var(--orange);
  color: white;
  padding: 50px 40px;
  border-radius: 8px;
  font-size: 29px;
  line-height: 1.35;
  font-weight: 700;
  box-shadow: 18px 18px 0 var(--cream);
}
.authority-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.offer {
  background: var(--cream);
}
.offer-card {
  background: var(--ink);
  color: white;
  border-radius: 22px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 65px;
  align-items: center;
}
.offer-card h2 {
  font-size: 44px;
}
.offer li {
  border-color: #ffffff1a;
}
.checkout-box {
  background: white;
  color: var(--ink);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  display: grid;
}
.checkout-box > span {
  font-size: 11px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.checkout-box s {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}
.checkout-box > strong {
  font-size: 62px;
  letter-spacing: -0.05em;
}
.checkout-box > small {
  color: var(--muted);
  margin-bottom: 22px;
}
.checkout-box p {
  font-size: 10px;
  color: var(--muted);
}
.faq {
  background: white;
}
.faq h2 {
  margin-bottom: 45px;
}
.faq details {
  border-bottom: 1px solid #ddd;
  padding: 0 5px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--orange);
  font-size: 20px;
}
.faq details p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
}
.final-cta {
  background: linear-gradient(135deg, #1d211e, #111311);
  padding: 95px 0;
  color: white;
}
.final-cta p:not(.kicker) {
  color: #bbb;
  font-size: 17px;
  margin: 0 0 28px;
}
.final-cta .buy-button {
  min-width: 310px;
}
footer {
  background: #0b0d0c;
  color: #777;
  font-size: 11px;
  padding: 25px 0;
}
footer > div {
  display: flex;
  justify-content: space-between;
}
.mobile-bar {
  display: none;
}
@media (max-width: 850px) {
  .shell {
    width: min(100% - 28px, 700px);
  }
  .topbar {
    padding: 18px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 125px 0 75px;
    min-height: auto;
  }
  .hero-copy {
    text-align: center;
  }
  .hero .lead {
    font-size: 17px;
  }
  .hero-checks {
    justify-content: center;
  }
  .price-row {
    justify-content: center;
  }
  .hero-visual {
    height: 480px;
  }
  .cover {
    height: 430px;
    width: auto;
  }
  .badge-one {
    left: 4%;
    bottom: 70px;
  }
  .badge-two {
    right: 4%;
    top: 70px;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading,
  .inside-grid,
  .authority-grid,
  .offer-card {
    grid-template-columns: 1fr;
    display: grid;
    gap: 38px;
  }
  .section-heading {
    align-items: start;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-grid article {
    min-height: 230px;
  }
  .inside-grid {
    gap: 45px;
  }
  .pages {
    min-height: 480px;
  }
  .split-card {
    grid-template-columns: auto 1fr;
  }
  .mini-card {
    grid-column: 1/-1;
  }
  .offer-card {
    padding: 35px;
  }
  .checkout-box {
    max-width: 440px;
    width: 100%;
    margin: auto;
  }
  .authority-grid {
    gap: 50px;
  }
  .mobile-bar {
    display: flex;
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    padding: 9px 14px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -8px 24px #0002;
  }
  .mobile-bar > div {
    display: grid;
  }
  .mobile-bar small {
    font-size: 9px;
    color: #777;
  }
  .mobile-bar strong {
    font-size: 22px;
  }
  .mobile-bar .buy-button {
    padding: 13px 17px;
    font-size: 11px;
  }
  footer {
    padding-bottom: 90px;
  }
}
@media (max-width: 560px) {
  .brand > span {
    font-size: 23px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .price-row {
    display: grid;
    gap: 14px;
  }
  .price-row > div {
    justify-items: center;
  }
  .price-row .buy-button {
    width: 100%;
  }
  .hero-visual {
    height: 410px;
  }
  .cover {
    height: 370px;
  }
  .badge {
    padding: 10px;
  }
  .badge-two {
    right: 0;
  }
  .badge-one {
    left: 0;
  }
  .problem h2,
  .section h2,
  .final-cta h2 {
    font-size: 34px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid article {
    min-height: auto;
  }
  .pages {
    min-height: 350px;
    padding: 20px;
  }
  .split-card {
    grid-template-columns: 1fr;
  }
  .video-icon {
    width: 65px;
    height: 65px;
  }
  .split-card h2 {
    font-size: 33px;
  }
  .quote {
    font-size: 23px;
    padding: 35px 28px;
  }
  .offer-card {
    padding: 30px 20px;
  }
  .offer-card h2 {
    font-size: 34px;
  }
  .checkout-box {
    padding: 28px 20px;
  }
  .final-cta .buy-button {
    min-width: 0;
    width: 100%;
  }
  footer > div {
    display: grid;
    gap: 7px;
    text-align: center;
  }
}
