:root {
  --bg: #ffffff;
  --ink: #080b12;
  --muted: #5f6b7d;
  --green: #169b4f;
  --green-dark: #07543e;
  --green-soft: #ecfff4;
  --line: #dfe6e2;
  --lime: #aaff00;
  --red: #e32222;
  --shadow: 0 24px 80px rgba(4, 18, 13, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.container.wide {
  width: min(1320px, 100%);
}

.top-alert {
  background: #050806;
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .01em;
}

.top-alert p {
  margin: 0;
}

.live-pill {
  position: fixed;
  z-index: 30;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 36px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(184, 19, 19, .94);
  color: #fff;
  box-shadow: 0 18px 44px rgba(227, 34, 34, .24);
  font-size: 13px;
  animation: livePulse 2.2s ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.live-pill strong {
  font-size: 12px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.hero {
  background:
    radial-gradient(circle at top, rgba(22, 155, 79, .18), transparent 38%),
    linear-gradient(180deg, #030504 0%, #07100c 74%, #fff 74%);
  color: #fff;
  padding: clamp(52px, 7vw, 96px) 0 48px;
}

.hero-inner {
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
}

h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(42px, 6.7vw, 88px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
}

h1 span {
  font-weight: 300;
}

mark {
  background: transparent;
  color: #30d46f;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: .07em;
  text-underline-offset: .12em;
}

.watch-warning {
  width: fit-content;
  margin: 26px auto 28px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(227, 34, 34, .15);
  color: #ffd9d9;
  border: 1px solid rgba(227, 34, 34, .36);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.video-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: #0b0f0d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .32);
}

.video-shell iframe {
  border-radius: 22px;
}

.vsl-note {
  width: min(860px, 100%);
  margin: 22px auto 0;
  padding: 20px clamp(18px, 3vw, 30px);
  border: 1px solid rgba(227, 34, 34, .22);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  text-align: left;
}

.vsl-note strong {
  display: block;
  color: var(--red);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 950;
  text-transform: uppercase;
}

.vsl-note p {
  margin: 8px 0 0;
  color: #202733;
  font-size: clamp(16px, 1.8vw, 20px);
}

.panda-button-slot {
  width: min(860px, 100%);
  margin: 18px auto 0;
}

.proof-section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.section-heading {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading > span {
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 28px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.photo-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 14px;
}

.photo-marquee::before,
.photo-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(18vw, 220px);
  pointer-events: none;
}

.photo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.photo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.photo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.photo-track article {
  flex: 0 0 auto;
  width: clamp(210px, 24vw, 310px);
  overflow: hidden;
  border-radius: 18px;
  background: #eef5f2;
  box-shadow: 0 18px 44px rgba(8, 11, 18, .12);
}

.photo-track img {
  width: 100%;
  height: clamp(310px, 38vw, 460px);
  object-fit: cover;
}

.video-section {
  background: #f7fbf9;
}

.video-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.video-carousel article {
  overflow: hidden;
  border: 1px solid rgba(7, 84, 62, .16);
  border-radius: 18px;
  background: #161616;
  scroll-snap-align: center;
  box-shadow: 0 18px 44px rgba(8, 11, 18, .12);
}

.video-carousel iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
}

.receive-section {
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at center top, rgba(22, 155, 79, .12), transparent 30%),
    #fff;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.receive-grid article {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #243044;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(8, 11, 18, .05);
}

.receive-grid article::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, #fff 48% 52%, transparent 53%),
    var(--green);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .18);
}

.bonus-panel {
  width: min(780px, 100%);
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(22, 155, 79, .22);
  border-radius: 22px;
  background: var(--green-soft);
}

.bonus-panel h3 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 26px;
}

.bonus-panel div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  font-weight: 900;
}

.bonus-panel strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d6ffe8;
  color: var(--green-dark);
}

@keyframes livePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
  }
  80% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .top-alert {
    padding-right: 128px;
    text-align: left;
    font-size: 13px;
  }

  .live-pill {
    top: 10px;
    right: 10px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero {
    padding-top: 44px;
    background:
      radial-gradient(circle at top, rgba(22, 155, 79, .2), transparent 36%),
      linear-gradient(180deg, #030504 0%, #07100c 78%, #fff 78%);
  }

  .eyebrow {
    letter-spacing: .28em;
  }

  h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .watch-warning {
    border-radius: 16px;
    font-size: 12px;
  }

  .video-shell,
  .video-shell iframe {
    border-radius: 16px;
  }

  .vsl-note {
    border-radius: 16px;
  }

  .receive-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .live-pill,
  .live-dot {
    animation: none;
  }
}
