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

:root {
  --bg:          #0c0c10;
  --bg-2:        #12121a;
  --bg-card:     #18181f;
  --border:      rgba(255,255,255,0.07);
  --border-s:    rgba(255,255,255,0.14);
  --text-1:      #ffffff;
  --text-2:      rgba(255,255,255,0.78);
  --text-3:      rgba(255,255,255,0.42);
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-glow:  rgba(245,158,11,0.22);
  --amber-soft:  rgba(245,158,11,0.08);
  --green:       #10b981;
  --max:         800px;
  --fh:          'Sora', system-ui, sans-serif;
  --fb:          'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.22,1,0.36,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb); font-size: 16px;
  line-height: 1.65; color: var(--text-2);
  background: var(--bg); overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--amber); }
.wrap { width: min(100% - 32px, var(--max)); margin-inline: auto; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--amber); color: #000;
  text-align: center; padding: 10px 16px;
  font-family: var(--fh); font-size: 12px;
  font-weight: 700; letter-spacing: 0.8px;
}

/* ── HEADER ── */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: center;
}
.logo {
  font-family: var(--fh); font-size: 19px;
  font-weight: 800; color: var(--text-1);
  letter-spacing: -0.5px; text-decoration: none;
}
.logo-dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--amber); border-radius: 50%;
  margin-left: 3px; vertical-align: middle;
}

/* ── HERO ── */
.hero { padding: 52px 0 40px; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-soft);
  border: 1px solid rgba(245,158,11,0.28);
  padding: 6px 16px; border-radius: 100px;
  font-family: var(--fh); font-size: 11px;
  font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.4;transform:scale(.75)}
}
.hero h1 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800; color: var(--text-1);
  line-height: 1.14; letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero h1 .hl { color: var(--amber); }
.hero-sub {
  font-size: 16px; color: var(--text-3);
  max-width: 520px; margin: 0 auto 28px;
}
.scroll-hint {
  font-size: 12px; color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 8px;
}
.scroll-hint svg {
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(4px)}
}

/* ── VIDEO ── */
.video-section { padding: 0 0 52px; }
.video-frame {
  border-radius: 16px; overflow: hidden;
  background: #000;
  border: 1px solid var(--border-s);
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.06),
    0 0 60px var(--amber-glow),
    0 40px 100px rgba(0,0,0,0.7);
  position: relative;
}
.video-frame iframe,
.video-frame .vsl-video {
  width: 100%; aspect-ratio: 16/9;
  display: block; border: none;
}
.video-frame .vsl-video {
  background: #000;
}
.video-label {
  text-align: center; margin-top: 10px;
  font-size: 12px; color: var(--text-3); font-style: italic;
}
.landing-deferred.is-locked { display: none; }
.landing-deferred.is-unlocked { display: block; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; margin: 0 0 52px;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 16px;
  text-align: center; font-size: 13px;
}
.trust-icon { font-size: 24px; margin-bottom: 8px; }
.trust-item strong { display: block; color: var(--text-1); font-size: 14px; margin-bottom: 4px; }
.trust-item span { color: var(--text-3); }

/* ── BENEFITS ── */
.benefits-section { padding: 0 0 52px; }
.section-label {
  font-family: var(--fh); font-size: 11px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber);
  display: block; text-align: center; margin-bottom: 12px;
}
.section-title {
  font-family: var(--fh); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--text-1);
  text-align: center; letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.benefit-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, transform .2s;
}
.benefit-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.benefit-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--amber-soft);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.benefit-card strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 5px;
}
.benefit-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ── PRODUCT SECTION ── */
.product-section { padding: 0 0 52px; }
.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-s);
  border-radius: 20px; padding: 32px;
}
.product-inner { display: grid; grid-template-columns: minmax(200px, 280px) 1fr; gap: 28px; align-items: start; }
.product-gallery { display: flex; flex-direction: column; gap: 10px; }
.product-gallery-main {
  background: white; border-radius: 14px;
  padding: 12px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.product-gallery-main img { width: 100%; object-fit: contain; max-height: 280px; }
.product-gallery-thumbs {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.product-gallery-thumbs button {
  padding: 0; border: 2px solid transparent; border-radius: 8px;
  background: #fff; cursor: pointer; overflow: hidden;
  width: 48px; height: 48px; flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s;
}
.product-gallery-thumbs button:hover { border-color: rgba(245,158,11,0.5); }
.product-gallery-thumbs button.is-active { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
.product-gallery-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber-soft);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 4px 12px; border-radius: 100px;
  font-family: var(--fh); font-size: 11px;
  font-weight: 700; color: var(--amber);
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.product-name {
  font-family: var(--fh); font-size: 18px;
  font-weight: 800; color: var(--text-1);
  letter-spacing: -0.3px; margin-bottom: 6px;
}
.product-sub {
  font-size: 13px; color: var(--text-3); margin-bottom: 16px;
}
.product-specs { list-style: none; display: grid; gap: 7px; margin-bottom: 20px; }
.product-specs li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.product-specs li::before {
  content: '✓'; color: var(--green);
  font-weight: 700; flex-shrink: 0; font-size: 13px;
}
.product-price {
  font-family: var(--fh); font-size: 28px;
  font-weight: 800; color: var(--text-1);
  letter-spacing: -1px; margin-bottom: 16px;
}
.product-price small {
  font-size: 14px; font-weight: 500;
  color: var(--text-3); letter-spacing: 0;
}

/* ── BUTTONS ── */
.btn-main {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%;
  background: var(--amber); color: #000;
  font-family: var(--fh); font-weight: 800; font-size: 16px;
  padding: 17px 28px; border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 32px var(--amber-glow);
}
.btn-main:hover {
  background: var(--amber-dark); color: #000;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px var(--amber-glow);
}
.btn-main small {
  display: block; font-size: 11px;
  font-weight: 500; margin-top: 2px;
  color: rgba(0,0,0,0.55);
}
.purchase-note {
  font-size: 11px; color: var(--text-3);
  text-align: center; margin-top: 10px; line-height: 1.6;
}

/* ── USAGE STEPS ── */
.steps-section { padding: 0 0 52px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px;
  position: relative;
}
.step-num {
  font-family: var(--fh); font-size: 42px;
  font-weight: 800; color: var(--border-s);
  position: absolute; top: 16px; right: 16px;
  line-height: 1; letter-spacing: -2px;
}
.step-card h3 {
  font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 8px;
}
.step-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { padding: 0 0 52px; }
.faq { display: grid; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--amber); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 18px 20px;
  font-family: var(--fb); font-size: 14px;
  font-weight: 600; color: var(--text-1);
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { font-size: 18px; color: var(--amber); flex-shrink: 0; transition: transform .25s var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 13px; color: var(--text-3); line-height: 1.7;
  padding: 0 20px; transition: max-height .35s var(--ease), padding .2s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center; padding: 52px 0 64px;
}
.final-cta h2 {
  font-family: var(--fh); font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800; color: var(--text-1);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.final-cta p { color: var(--text-3); margin-bottom: 28px; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px; text-align: center;
  font-size: 12px; color: var(--text-3);
}
.footer-links {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 6px 20px; margin-bottom: 16px;
}
.footer-links a { color: var(--text-3); text-decoration: none; }
.footer-links a:hover { color: var(--text-1); }
.footer-disclaimer { margin-top: 10px; line-height: 1.65; max-width: 600px; margin-inline: auto; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .product-inner { grid-template-columns: 1fr; }
  .product-gallery-thumbs { justify-content: flex-start; }
  .trust-strip, .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
}
