@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0e0e0e;
  color: #ffffff;
  line-height: 1.6;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.micro {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #aaa;
  z-index: 3;
}

.tagline {
  margin-top: 0.5rem;
  color: #cccccc;
}

.limited {
  margin-top: 0.75rem;
  color: #8affc1;
  font-weight: 600;
}

/* BUTTON */

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 14px 28px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #d4d4d4;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255,255,255,0.25);
}

/* SECTIONS */

.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.section-text {
  margin-top: 20px;
  text-align: center;
  color: #aaa;
  font: size 1.35rem;
  font-weight: 600;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

video {
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
}

/* PRODUCTS */

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: #222;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
  color: #8affc1;
}

/* ================= COMPARISON FIXED ================= */
.comparison-container {
  position: relative;
  max-width: 700px;
  margin: 40px auto;
  aspect-ratio: 3024 / 4032;
  overflow: hidden;
}

.comparison-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.comparison-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  z-index: 3;
  pointer-events: none;
}

.comparison-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}
.product-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.btn.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  transition: 0.3s ease;
  border: 1px solid #222;
}

.card:hover {
  transform: translateY(-6px);
  border: 1px solid #8affc1;
  box-shadow: 0 0 25px rgba(138, 255, 193, 0.25);
}

.drop-counter {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #8affc1;
}
footer {
  background: #0a0a0a;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-inner h3 {
  margin-bottom: 10px;
}

.footer-inner p {
  color: #888;
  margin-bottom: 15px;
}
.lite-video {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 20px auto;
  display: block;
}
.how-video {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin: 20px auto;
  display: block;
}

.how-steps {
  text-align: center;
  list-style-position: inside;
  margin-top: 65px;
  font-size: 1.15rem;
  line-height: 1.8;
}
.waitlist-form {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-form input {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.waitlist-form input:focus {
  outline: 2px solid #ff7070;
}

.waitlist-form .btn {
  width: 100%;
}
/* DROP TEXT */
.drop-text {
  color: #ff7070;
  font-weight: 600;
  margin-top: 10px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  border: 1px solid #222;
}

.modal-content h3 {
  margin-bottom: 10px;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.modal-content input:focus {
  outline: 2px solid #8affc1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close-modal:hover {
  color: white;
}
/* 📱 Mobile text improvements */
@media (max-width: 768px) {

  .section h2 {
    font-size: 28px;
    text-align: center;
  }

  .section p {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
  }

  .card {
    text-align: center;
  }

  .product-img {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 85%;
  }

}
.bundle-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.bundle-images img {
  width: 48%;
  border-radius: 12px;
}

.drop-access {
  text-align: center;
  padding-top: 40px;
}

.drop-access .btn {
  margin-top: 20px;
}
.problem-upgrade {
  margin-bottom: 50px;
}
.cart-ui {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #111;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid #8affc1;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(138,255,193,0.25);
  z-index: 999;
}

#checkout{
  text-align: center;
}

#cart-items{
  margin: 20px 0;
}

#cart-total{
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}
