:root {
  --bg: #000000;
  --panel: #0A0A0A;
  --line: #1F1F1F;
  --gold: #FDBF2D;
  --white: #FFFFFF;
  --soft: #CCCCCC;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

::selection { background: var(--gold); color: #000; }

.display { font-family: 'Space Grotesk', sans-serif; }

.wrap { max-width: 480px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo .gold { color: var(--gold); margin: 0 2px; }
.nav-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #000;
  background: var(--gold);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253,191,45,0.9);
  margin-bottom: 8px;
}

.section { padding-top: 56px; padding-bottom: 56px; }
.section-tight { padding-top: 32px; padding-bottom: 32px; }

.divider {
  height: 1px;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(253,191,45,0.2), transparent);
}

.soft { color: var(--soft); }
.white { color: var(--white); }
.gold { color: var(--gold); }

p.body-text { font-size: 15px; color: var(--soft); line-height: 1.7; margin-top: 16px; }
p.body-text:first-child { margin-top: 0; }
.body-text strong, .body-text b { color: var(--white); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  background: var(--gold);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(253,191,45,0.5);
  transition: box-shadow .25s ease, transform .12s ease;
}
.btn:hover { box-shadow: 0 8px 30px -6px rgba(253,191,45,0.55); }
.btn:active { transform: scale(0.97); }

.trust-line {
  text-align: center;
  font-size: 12px;
  color: rgba(204,204,204,0.7);
  margin-top: 10px;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 12px 16px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 60%, transparent 100%);
  transform: translateY(96px);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { font-size: 15px; }

/* ---------- Hero ---------- */
.hero { padding-top: 40px; padding-bottom: 64px; }

.lede-line {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

h1.hook {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  font-size: 28px;
}
@media (min-width: 480px) { h1.hook { font-size: 32px; } }
h1.hook span { display: block; }
h1.hook .highlight { color: var(--gold); margin-top: 12px; }

/* Phone notification mock (signature element) */
.phone-frame {
  margin-top: 36px;
  background: linear-gradient(180deg, #0D0D0D, #000000);
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 16px;
}
.phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(204,204,204,0.7);
  margin-bottom: 12px;
}
.notif-card {
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: pop 2.6s ease-in-out infinite;
}
@keyframes pop {
  0%, 100% { transform: translateY(4px); opacity: 0.85; }
  10% { transform: translateY(0); opacity: 1; }
  85% { transform: translateY(0); opacity: 1; }
  95% { transform: translateY(-4px); opacity: 0; }
}
.notif-card .label { font-size: 13px; color: var(--soft); }
.notif-card .amount { font-family: 'Space Grotesk', sans-serif; color: var(--gold); font-weight: 600; font-size: 18px; }
.notif-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(253,191,45,0.1);
  border: 1px solid rgba(253,191,45,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 14px; flex-shrink: 0;
}
.phone-frame p.small { font-size: 13px; color: var(--soft); margin-top: 16px; line-height: 1.6; }
.phone-frame p.small.strong { color: var(--white); margin-top: 8px; }

@media (prefers-reduced-motion: reduce) {
  .lede-line, .notif-card { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Problem cards ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.problem-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 12px;
}
.problem-card .title { font-size: 13px; color: var(--white); font-weight: 500; }
.problem-card .sub { font-size: 12px; color: var(--soft); margin-top: 4px; }

ul.plain-list { list-style: none; margin-top: 16px; }
ul.plain-list li {
  display: flex;
  gap: 8px;
  font-size: 15px;
  color: var(--white);
  margin-top: 8px;
}
ul.plain-list li:first-child { margin-top: 0; }
ul.plain-list li .dash { color: var(--gold); }

/* ---------- Story stats ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.stat-card {
  border-radius: 12px;
  border: 1px solid rgba(253,191,45,0.3);
  background: var(--panel);
  padding: 20px 16px;
  text-align: center;
}
.stat-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.stat-card .cap { font-size: 12px; color: var(--soft); margin-top: 4px; }

/* ---------- Benefits ---------- */
h2.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
.benefit-list { margin-top: 32px; }
.benefit-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-top: 24px;
}
.benefit-item:first-child { margin-top: 0; }
.benefit-item .headline { color: var(--white); font-weight: 600; font-size: 15px; }
.benefit-item .detail { color: var(--soft); font-size: 14px; margin-top: 4px; }

/* ---------- What you'll do ---------- */
.task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.task-card {
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px 12px;
  font-size: 13.5px;
  color: var(--white);
}
.task-card.wide { grid-column: 1 / -1; }

/* ---------- Testimonial carousel ---------- */
.testimonial-carousel {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  min-height: 120px;
}
.testimonial-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 20px;
  opacity: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.testimonial-card.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.testimonial-card .quote {
  font-size: 15px;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card .quote::before { content: "\201C"; color: var(--gold); }
.testimonial-card .quote::after { content: "\201D"; color: var(--gold); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.testimonial-dots .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease;
}
.testimonial-dots .dot.active { background: var(--gold); }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 20px;
}
.faq-list details {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.faq-list details:first-child { border-top: none; }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary .plus { transform: rotate(45deg); }
.faq-list .answer { font-size: 14px; color: var(--soft); margin-top: 8px; padding-right: 24px; }

/* ---------- Final CTA list ---------- */
.final-cta-text { text-align: left; }
.final-cta-text p.body-text { margin-top: 12px; }

/* ---------- Footer ---------- */
.footer {
  padding-top: 48px;
  padding-bottom: 128px;
  border-top: 1px solid var(--line);
}
.disclaimer {
  font-size: 12px;
  color: rgba(204,204,204,0.6);
  line-height: 1.6;
  margin-top: 24px;
}
.footer-meta {
  font-size: 12px;
  color: rgba(204,204,204,0.4);
  margin-top: 20px;
  text-align: center;
}

/* ---------- Purchase popup ---------- */
#popupHost {
  position: fixed;
  bottom: 96px;
  left: 16px;
  z-index: 50;
  max-width: 260px;
}
.toast {
  opacity: 0;
  transform: translateY(8px);
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast .avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(253,191,45,0.15);
  border: 1px solid rgba(253,191,45,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 700;
}
.toast .msg { font-size: 12.5px; color: var(--white); line-height: 1.4; }
.toast .msg .name { font-weight: 600; }
.toast .msg .rest { color: var(--soft); }
