:root {
  --ink: #101010;
  --muted: #57534e;
  --paper: #fffaf1;
  --panel: #ffffff;
  --accent: #e6392f;
  --accent-dark: #b91f17;
  --gold: #f4bc3a;
  --green: #1f7a54;
  --line: rgba(16, 16, 16, 0.12);
  --shadow: 0 24px 60px rgba(16, 16, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.top-ticker {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.top-ticker__track {
  width: max-content;
  display: flex;
  animation: ticker 28s linear infinite;
}

.top-ticker__track span {
  display: block;
  padding: 11px 18px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 900;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

a {
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.92), rgba(16, 16, 16, 0.7) 48%, rgba(16, 16, 16, 0.18)),
    linear-gradient(135deg, #24201b, #815122 50%, #f2b23d);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.9;
}

.shelf,
.box {
  position: absolute;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shelf {
  right: clamp(24px, 8vw, 120px);
  width: clamp(260px, 40vw, 560px);
  height: clamp(58px, 7vw, 88px);
  background: linear-gradient(90deg, #2b2119, #6a3f20 55%, #d98f2d);
  transform: skewY(-8deg);
}

.shelf--one {
  top: 20%;
}

.shelf--two {
  top: 43%;
  right: clamp(10px, 4vw, 80px);
}

.shelf--three {
  top: 66%;
}

.box {
  width: clamp(92px, 12vw, 160px);
  aspect-ratio: 1.1 / 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #c76a2d, #f4bc3a);
}

.box--one {
  right: 34%;
  top: 13%;
  transform: rotate(-8deg);
}

.box--two {
  right: 14%;
  top: 35%;
  transform: rotate(7deg);
}

.box--three {
  right: 30%;
  top: 58%;
  transform: rotate(5deg);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0 clamp(42px, 7vw, 84px);
  color: #fff;
}

.hero__copy {
  min-width: 0;
}

.eyebrow,
.section-label,
.price-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.3vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.countdown {
  width: min(420px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(244, 188, 58, 0.38);
}

.countdown__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown__time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hero__video {
  min-width: 0;
  width: 100%;
}

.video-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vsl {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  pointer-events: none;
  user-select: none;
}

.vsl::before,
.vsl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.vsl::before {
  top: 0;
  height: clamp(58px, 16%, 92px);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(16, 16, 16, 0.58) 58%, transparent);
}

.vsl::after {
  bottom: 0;
  height: clamp(64px, 18%, 104px);
  background: linear-gradient(0deg, rgba(16, 16, 16, 0.98), rgba(16, 16, 16, 0.66) 62%, transparent);
}

.vsl-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  cursor: default;
}

.vsl-pause {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  background: rgba(16, 16, 16, 0.78);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.vsl-pause:hover {
  background: rgba(16, 16, 16, 0.92);
}

.vsl-pause:disabled {
  cursor: default;
  opacity: 0.72;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(230, 57, 47, 0.34);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button--full {
  width: 100%;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.band {
  padding: clamp(68px, 9vw, 112px) 0;
  background: var(--paper);
}

.band--light {
  background: #fff;
}

.band--contrast {
  background: #101010;
  color: #fff;
}

.band--bonus {
  background: #f4bc3a;
}

.split,
.promise,
.offer,
.bonus {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.feature,
.bonus-item,
.price-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature,
.bonus-item {
  min-height: 190px;
  padding: 24px;
}

.feature span,
.bonus-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 900;
}

.feature p,
.bonus-item p,
.promise p,
.offer p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

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

.bonus .section-label {
  color: var(--accent-dark);
}

.checks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checks li {
  padding: 20px 22px;
  border-left: 5px solid var(--green);
  background: #fff;
  border-radius: 7px;
  font-size: 1.08rem;
  font-weight: 800;
}

.social-proof__head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.whatsapp-shot {
  margin: 0;
}

.whatsapp-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed rgba(16, 16, 16, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 122, 84, 0.08), rgba(255, 255, 255, 0.88)),
    #f7f7f2;
}

.whatsapp-placeholder span {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 120px;
  border-radius: 7px;
  background: #fff;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.whatsapp-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(16, 16, 16, 0.12);
}

.whatsapp-shot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.offer {
  align-items: center;
}

.offer__text p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.price-box {
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-anchor {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
}

.price-anchor s {
  color: var(--accent);
  text-decoration-thickness: 3px;
}

.price-box strong {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 900;
}

.checkout-timer {
  margin: -8px 0 18px;
  padding: 14px;
  border-radius: 8px;
  background: #101010;
  color: #fff;
}

.checkout-timer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.checkout-timer__time {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.checkout-timer__time i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
}

.guarantee {
  margin: 0 0 20px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(31, 122, 84, 0.1);
  border: 1px solid rgba(31, 122, 84, 0.24);
}

.guarantee span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-weight: 900;
}

.guarantee p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.price-box small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
}

.faq {
  max-width: 820px;
}

.faq h2 {
  margin-bottom: 28px;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.footer {
  padding: 26px 0;
  background: #101010;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 16, 16, 0.24);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.back-to-top:hover {
  background: var(--accent-dark);
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    overflow: visible;
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.62)),
      linear-gradient(135deg, #24201b, #815122 50%, #f2b23d);
  }

  .hero__media {
    opacity: 0.48;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 54px 0 46px;
  }

  .hero__video {
    order: -1;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .button,
  .hero__actions {
    width: 100%;
  }

  .countdown {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .top-ticker__track {
    animation-duration: 22s;
  }

  .split,
  .promise,
  .offer,
  .bonus,
  .bonus-grid,
  .whatsapp-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .whatsapp-placeholder {
    min-height: 420px;
  }

  .feature,
  .bonus-item {
    min-height: 0;
  }

  .feature span,
  .bonus-item span {
    margin-bottom: 20px;
  }
}
