:root {
  --ink: #050505;
  --ink-soft: #121010;
  --forest: #4a101d;
  --forest-light: #7a2537;
  --cream: #f5f0e8;
  --paper: #fffaf2;
  --gold: #d6a24f;
  --gold-light: #f0cb84;
  --muted: #b9afa5;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body:not(.offer-visible) {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

body.offer-visible {
  padding-bottom: 86px;
}

a {
  color: inherit;
}

.watch {
  min-height: 100svh;
  padding: clamp(10px, 2vw, 24px) 16px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 50% 38%, rgba(122, 37, 55, 0.2), transparent 45%),
    #020202;
}

.watch-headline {
  width: min(90vw, 760px);
  margin: 0 auto clamp(16px, 3vw, 28px);
  color: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.45rem, 4.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.video-shell {
  position: relative;
  width: min(calc(100vw - 24px), 400px);
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  background: #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  pointer-events: none;
}

.video-shell video::-webkit-media-controls,
.video-shell video::-webkit-media-controls-enclosure {
  display: none !important;
}

.video-play {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition: opacity 180ms ease, visibility 180ms ease, background 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.video-play-card {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(64%, 260px);
  min-height: 142px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 16px 14px;
  background: linear-gradient(145deg, #e0ad56, #bd812c);
  color: #160e05;
  box-shadow: 0 20px 54px rgba(95, 55, 8, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-size: clamp(0.88rem, 3.5vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.video-play-card strong {
  font-size: clamp(0.95rem, 3.8vw, 1.08rem);
}

.video-play-card svg {
  width: 38px;
  height: 38px;
}

.video-play-card--resume {
  display: none;
}

.video-shell.has-started .video-play-card--initial {
  display: none;
}

.video-shell.has-started .video-play-card--resume {
  display: flex;
}

.video-play:hover {
  background: rgba(0, 0, 0, 0.16);
}

.video-play:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -5px;
}

.video-shell.is-playing .video-play {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.smart-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-shell.has-started .smart-progress {
  opacity: 1;
}

.smart-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #b87920, #efc36f);
  box-shadow: 0 0 12px rgba(214, 162, 79, 0.58);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.first-cta {
  width: min(100%, 660px);
  padding-top: 26px;
  text-align: center;
}

.first-cta .eyebrow {
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.payment-note,
.secure-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.offer-only {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
}

body.offer-visible .offer-only {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sales-page {
  display: none;
}

body.offer-visible .sales-page {
  display: block;
  animation: reveal 0.7s ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.narrow {
  max-width: 790px;
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.3vw, 3.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.promise {
  background:
    linear-gradient(180deg, #020202 0%, rgba(74, 16, 29, 0.12) 20%),
    radial-gradient(circle at 15% 30%, rgba(214, 162, 79, 0.12), transparent 34%),
    var(--ink);
  text-align: center;
}

.lead,
.section-copy {
  margin: 0;
  color: #ddd5cc;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.steps-section {
  border-block: 1px solid var(--line);
  background: var(--ink-soft);
}

.steps-section > .container > h2,
.bonus-section > .container > h2 {
  max-width: 760px;
}

.steps-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.step-card,
.bonus-card,
.fit-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(24px, 3vw, 34px);
}

.step-card p,
.bonus-card p,
.fit-card li {
  margin-bottom: 0;
  color: #d2c9c0;
}

.step-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.included-section {
  background: var(--cream);
  color: #302927;
}

.included-section h2 {
  color: var(--ink);
}

.included-section .eyebrow {
  color: var(--forest-light);
}

.included-section .section-copy {
  color: #625853;
}

.included-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(44px, 8vw, 108px);
  align-items: start;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0 0 24px 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list strong {
  color: var(--ink);
  font-size: 1.06rem;
}

.check-list span {
  color: #6a605a;
  font-size: 0.95rem;
}

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

.bonus-card {
  background: linear-gradient(140deg, rgba(122, 37, 55, 0.28), rgba(255, 255, 255, 0.03));
}

.bonus-tag {
  display: inline-flex;
  margin-bottom: 26px;
  border: 1px solid rgba(240, 212, 154, 0.38);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fit-section {
  border-block: 1px solid var(--line);
  background: #090707;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fit-card ul {
  margin: 0;
  padding-left: 22px;
}

.fit-card li + li {
  margin-top: 13px;
}

.fit-card--yes {
  border-color: rgba(214, 162, 79, 0.38);
}

.fit-card--no {
  border-color: rgba(216, 178, 103, 0.25);
}

.guarantee-section {
  background: var(--cream);
}

.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  border: 1px solid #d8d0bf;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--paper);
  color: #655a54;
  box-shadow: 0 24px 64px rgba(50, 18, 24, 0.13);
}

.guarantee-card h2 {
  color: var(--ink);
}

.guarantee-card p:last-child {
  margin-bottom: 0;
}

.guarantee-card .eyebrow {
  color: var(--forest-light);
}

.guarantee-seal {
  display: grid;
  width: clamp(92px, 13vw, 136px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.final-offer {
  background:
    radial-gradient(circle at 50% 0%, rgba(122, 37, 55, 0.4), transparent 46%),
    #020202;
  text-align: center;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 34px 0;
}

.price-block span,
.price-block small {
  color: var(--muted);
}

.price-block strong {
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 1;
}

.cta-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px 28px;
  background: linear-gradient(180deg, #e0ad56, #bd812c);
  color: #160e05;
  box-shadow: 0 14px 34px rgba(110, 70, 14, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.cta-button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.safety-note {
  padding: 34px 0 120px;
  border-top: 1px solid var(--line);
  background: #020202;
}

.safety-note p {
  max-width: 900px;
  margin: 0 auto;
  color: #958a82;
  font-size: 0.82rem;
  text-align: center;
}

.safety-note p + p {
  margin-top: 12px;
}

.mobile-cta {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(5, 3, 3, 0.92);
  backdrop-filter: blur(14px);
}

.mobile-cta .cta-button {
  width: 100%;
  min-height: 52px;
}

.checkout-warning {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 90px;
  max-width: 360px;
  border: 1px solid rgba(240, 212, 154, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  background: #2a1118;
  color: var(--cream);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .watch {
    justify-content: flex-start;
    min-height: auto;
    padding-inline: 0;
    padding-top: 0;
  }

  .watch-headline {
    width: calc(100% - 24px);
    margin-bottom: 14px;
    padding-top: 10px;
    font-size: clamp(1rem, 4.35vw, 1.16rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .video-shell {
    width: min(calc(100vw - 16px), 400px);
    border-radius: 0;
    box-shadow: none;
  }

  .video-shell video {
    max-height: 100svh;
  }

  .first-cta {
    padding: 26px 16px 0;
  }

  .steps-grid,
  .bonus-grid,
  .fit-grid,
  .included-layout {
    grid-template-columns: 1fr;
  }

  .included-layout {
    gap: 42px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-seal {
    margin-inline: auto;
  }

  body.offer-visible .mobile-cta {
    display: block;
  }
}

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