* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
}

.snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* SCREENS */
.screen {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

/* HERO */
.hero {
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.05),
    rgba(0,0,0,0.95)
  );
}

.badge {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.title {
  font-size: 72px;
  font-weight: 700;
  margin: 24px 0 16px;
  letter-spacing: -1px;
}

.lead {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.8;
}

.limited {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.55;
}

.scroll-hint {
  margin-top: 60px;
  font-size: 12px;
  opacity: 0.35;
}

/* PREVIEW */
.preview {
  background: #0f0f0f;
}

.preview-inner {
  max-width: 900px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.preview-text {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 40px;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  margin-bottom: 24px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.preview-note {
  font-size: 14px;
  opacity: 0.55;
}

/* PRICING */
.pricing {
  background: #0a0a0a;
}

.price {
  font-size: 36px;
  margin: 20px 0 30px;
}

.price span {
  font-size: 18px;
  opacity: 0.6;
}

/* BUTTONS */
.buttons {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  margin: 10px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn.paypal {
  background: #0070ba;
  color: white;
}

.btn.paypal:hover {
  background: #005fa3;
}

.btn.crypto {
  background: #2ecc71;
  color: black;
}

.btn.crypto:hover {
  background: #25b863;
}

/* FOOTER */
.footer {
  font-size: 12px;
  opacity: 0.45;
  line-height: 1.6;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* MOBILE */
@media (max-width: 768px) {
  .title {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .price {
    font-size: 30px;
  }
}