/* ==========================================================================
   Lifetime Deals funnel — shared styles
   Dark void + violet→cyan glass design, matching lifetimedealsbundle.com.
   Standalone: no external fonts/scripts required.
   ========================================================================== */

:root {
  --void: #0a0f1e;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --violet: #8b5cf6;
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --emerald: #34d399;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --faint: rgba(255, 255, 255, 0.38);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--void);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 0%, rgba(34, 211, 238, 0.08), transparent 60%);
  background-repeat: no-repeat;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #22d3ee);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 40px -12px rgba(124, 58, 237, 0.7);
}
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 16px 50px -12px rgba(124, 58, 237, 0.9); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover { border-color: rgba(139, 92, 246, 0.5); }

.btn-block { width: 100%; padding: 18px 28px; font-size: 17px; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 12px; }
.btn-lg { padding: 20px 36px; font-size: 18px; border-radius: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand .wordmark { font-size: 17px; letter-spacing: -0.02em; }
.brand .wordmark span { background: linear-gradient(90deg, #a78bfa, #67e8f9); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand .tag { display: block; font-size: 8px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 40px; text-align: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
}
h1 {
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 22px auto 0;
  max-width: 900px;
}
h1 .grad {
  background: linear-gradient(90deg, #a855f7, #8b5cf6, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}
.lead strong { color: #fff; }

/* ---------- VSL box ---------- */
.vsl-box {
  margin: 34px auto 0;
  max-width: 820px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #05070f;
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(124, 58, 237, 0.45);
}
.vsl-box iframe { width: 100%; height: 100%; border: 0; }
.vsl-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--faint);
  border: 2px dashed rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}
.vsl-placeholder .play {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}
.vsl-placeholder p { font-size: 14px; }
.vsl-placeholder small { font-size: 12px; color: var(--faint); }

/* ---------- CTA row / trust ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust .dot { color: var(--emerald); font-weight: 800; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
}
.section-title .grad {
  background: linear-gradient(90deg, #a855f7, #22d3ee);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 15px;
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139, 92, 246, 0.16);
  color: #c4b5fd;
  margin-bottom: 14px;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); }

/* ---------- Check list ---------- */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 7px 0;
}
.check-list .tick {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.16);
  color: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

/* ---------- Price card ---------- */
.price-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; max-width: 900px; margin: 36px auto 0; }
@media (max-width: 860px) { .price-wrap { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  border-radius: 26px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.price-card.hot {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.14), rgba(34, 211, 238, 0.04));
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 30px 90px -40px rgba(124, 58, 237, 0.8);
}
.ribbon {
  position: absolute;
  top: -14px;
  left: 24px;
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.8);
}
.price-card .plan { font-size: 20px; font-weight: 800; }
.price-card .plan-desc { color: var(--muted); font-size: 14px; margin-top: 4px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 18px 0; }
.price-now { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.price-old { color: var(--faint); text-decoration: line-through; font-size: 20px; }
.price-once { color: var(--emerald); font-weight: 700; font-size: 13px; }

/* ---------- Steps ---------- */
.step .num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.7);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 28px auto 0; display: grid; gap: 12px; }
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-list summary::after { content: "+"; color: #c4b5fd; font-size: 20px; transition: transform 0.2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 12px; color: var(--muted); font-size: 14px; }

/* ---------- Urgency ---------- */
.urgency {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.1));
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  padding: 12px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #e9d5ff;
}
.urgency b { color: #fff; }
.countdown { font-variant-numeric: tabular-nums; }

/* ---------- Offer / OTO ---------- */
.oto-wrap { max-width: 680px; margin: 0 auto; text-align: center; padding: 60px 20px; }
.oto-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
}
.oto-wrap h1 { font-size: clamp(28px, 5.5vw, 46px); }
.oto-card {
  margin-top: 30px;
  text-align: left;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(34, 211, 238, 0.03));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 30px 90px -40px rgba(124, 58, 237, 0.7);
}
.oto-card h2 { font-size: 24px; font-weight: 800; }
.oto-card .sub { color: var(--muted); font-size: 15px; margin-top: 8px; }
.oto-price { display: flex; align-items: baseline; gap: 12px; margin: 22px 0 8px; }
.oto-price .now { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; }
.oto-price .was { font-size: 22px; color: var(--faint); text-decoration: line-through; }
.oto-price .save { font-size: 13px; font-weight: 700; color: var(--emerald); }
.oto-btns { display: grid; gap: 12px; margin-top: 24px; }
.no-thanks {
  margin-top: 16px;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
}
.no-thanks a { color: var(--faint); text-decoration: underline; }
.no-thanks a:hover { color: #fff; }
.oto-guarantee { display: flex; gap: 10px; align-items: center; justify-content: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
.oto-guarantee .seal { color: var(--emerald); font-weight: 800; }

/* ---------- Funnel progress ---------- */
.funnel-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.fp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.fp .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  background: var(--panel-2);
  border: 1px solid var(--border);
}
.fp.on { color: #fff; }
.fp.on .dot { background: linear-gradient(135deg, #7c3aed, #22d3ee); border-color: transparent; box-shadow: 0 6px 18px -6px rgba(124, 58, 237, 0.8); }
.fp.done { color: var(--muted); }
.fp.done .dot { background: rgba(52, 211, 153, 0.14); border-color: rgba(52, 211, 153, 0.4); color: var(--emerald); }
.fp .arrow { color: var(--faint); font-size: 14px; }

/* ---------- Order summary ---------- */
.order-summary {
  max-width: 640px;
  margin: 0 auto 22px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  padding: 14px 18px;
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.os-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.os-row .os-name { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.os-row .os-status { font-weight: 700; }
.os-row.paid .os-name { color: rgba(255, 255, 255, 0.82); }
.os-row.paid .os-check { color: var(--emerald); font-weight: 800; }
.os-row.paid .os-status { color: var(--emerald); }
.os-row.current { border-top: 1px dashed var(--border); padding-top: 8px; }
.os-row.current .os-name { color: #fff; font-weight: 700; }
.os-row.current .os-add { color: #fde68a; font-weight: 800; }

/* ---------- Thank you ---------- */
.ty-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 80px 20px; }
.ty-check {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--emerald);
  font-size: 44px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px -10px rgba(52, 211, 153, 0.6);
}
.ty-steps { text-align: left; margin-top: 28px; display: grid; gap: 12px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  padding: 28px 0;
  text-align: center;
  font-size: 12px;
  color: var(--faint);
}
.footer .links { display: flex; gap: 18px; justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }
.footer a:hover { color: #fff; }

/* ---------- Misc ---------- */
.guarantee-strip {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 20px;
  font-size: 13px; color: var(--muted);
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.05);
  border-radius: 14px;
  padding: 12px 16px;
}
