*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #06060f;
  --card: #0e0e1f;
  --border: #1c1c38;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --pink: #ec4899;
  --text: #f0f0ff;
  --muted: #8888aa;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
:focus-visible { outline: 2px solid #a78bfa; outline-offset: 3px; border-radius: 4px; }

/* SKIP NAV */
.skip-nav { position: absolute; top: -100%; left: 0; background: #7c3aed; color: #fff; padding: 10px 20px; font-size: 14px; font-weight: 700; text-decoration: none; z-index: 9999; border-radius: 0 0 8px 0; }
.skip-nav:focus { top: 0; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 64px; background: rgba(6,6,15,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.logo { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; background: linear-gradient(135deg, #a78bfa, #7c3aed, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-btn { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; border: none; border-radius: 8px; padding: 9px 20px; font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; }
.nav-btn:hover { opacity: 0.9; }

/* HERO */
.hero { padding: 96px 24px 80px; text-align: center; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,237,0.14) 0%, transparent 70%); }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.28); border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: #a78bfa; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 28px; }
.dot-live { width: 6px; height: 6px; background: #a78bfa; border-radius: 50%; display: inline-block; }
h1 { font-size: clamp(44px, 7.5vw, 88px); font-weight: 900; line-height: 1.0; letter-spacing: -3px; max-width: 900px; margin: 0 auto 24px; }
.hl { background: linear-gradient(135deg, #c4b5fd, #7c3aed, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-main { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; border: none; border-radius: 10px; padding: 14px 32px; font-size: 16px; font-weight: 700; text-decoration: none; cursor: pointer; box-shadow: 0 4px 24px rgba(124,58,237,0.35); transition: box-shadow 0.2s, transform 0.2s; }
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(124,58,237,0.5); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 14px 32px; font-size: 16px; font-weight: 700; text-decoration: none; transition: border-color 0.2s; }
.btn-outline:hover { border-color: rgba(124,58,237,0.4); }
.hero-note { margin-top: 20px; font-size: 13px; color: #666; }

/* STATS */
.stats { display: flex; justify-content: center; gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { flex: 1; max-width: 220px; text-align: center; padding: 32px 16px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n { font-size: 34px; font-weight: 900; letter-spacing: -1px; background: linear-gradient(135deg, #a78bfa, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-l { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* QUICK FACTS */
.quick-facts { padding: 32px 24px; max-width: 900px; margin: 0 auto; }
.qf-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.qf-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.qf-table tr { border-bottom: 1px solid var(--border); }
.qf-table tr:last-child { border-bottom: none; }
.qf-table th { padding: 11px 20px; text-align: left; color: var(--muted); font-weight: 700; font-size: 12px; white-space: nowrap; width: 190px; }
.qf-table td { padding: 11px 20px; color: var(--text); font-size: 13px; }
.qf-table a { color: var(--purple-light); text-decoration: none; }

/* MOCKUPS */
.mockups { display: flex; gap: 24px; justify-content: center; align-items: flex-start; padding: 80px 24px; flex-wrap: wrap; background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(124,58,237,0.06) 0%, transparent 70%); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; width: 340px; }
.card:hover { border-color: rgba(124,58,237,0.3); }
.live-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.25); border-radius: 20px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: #f472b6; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.dot-pink { width: 5px; height: 5px; background: #ec4899; border-radius: 50%; display: inline-block; }
.card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.card-meta { display: flex; gap: 20px; margin-bottom: 20px; }
.card-meta strong { display: block; font-size: 20px; font-weight: 800; }
.card-meta span { font-size: 12px; color: var(--muted); }
.inp { background: rgba(6,6,15,0.9); border: 1px solid var(--border); border-radius: 8px; color: var(--muted); font-size: 13px; padding: 10px 13px; width: 100%; margin-bottom: 9px; font-family: inherit; }
.submit-btn { background: linear-gradient(135deg, #7c3aed, #a78bfa); border: none; border-radius: 8px; color: #fff; font-size: 14px; font-weight: 700; padding: 12px; width: 100%; cursor: pointer; font-family: inherit; box-shadow: 0 4px 16px rgba(124,58,237,0.4); }
.card-footer { margin-top: 12px; text-align: center; font-size: 11px; color: #555; }
.pos-box { background: rgba(6,6,15,0.9); border: 1px solid var(--border); border-radius: 10px; padding: 16px; text-align: center; margin-bottom: 18px; }
.pos-num { font-size: 42px; font-weight: 900; color: #a78bfa; line-height: 1; }
.pos-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.ref-box { background: rgba(6,6,15,0.9); border: 1px solid var(--border); border-radius: 10px; padding: 13px; }
.ref-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.ref-row { display: flex; gap: 7px; }
.ref-inp { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; color: #666; font-size: 11px; flex: 1; padding: 7px 9px; font-family: inherit; }
.ref-copy { background: #1e1e38; border: none; border-radius: 6px; color: #fff; font-size: 12px; font-weight: 700; padding: 7px 13px; cursor: pointer; font-family: inherit; }
.share-emoji { font-size: 40px; margin-bottom: 10px; }

/* VIDEO */
.video-section { padding: 80px 24px 0; max-width: 900px; margin: 0 auto; }
.video-wrap { aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); background: var(--card); margin-top: 48px; width: 100%; position: relative; }
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-facade { width: 100%; height: 100%; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-facade::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.25); transition: background 0.2s; }
.video-facade:hover::after { background: rgba(0,0,0,0.15); }
.video-play { position: absolute; z-index: 1; width: 72px; height: 72px; background: rgba(124,58,237,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer; }
.video-play::after { content: ''; border-left: 26px solid #fff; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 6px; }
.video-facade:hover .video-play { background: #7c3aed; transform: scale(1.08); }

/* SCREENSHOTS */
.screenshots { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.shots-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.shot { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.shot:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,58,237,0.14); }
.shot img { width: 100%; display: block; }
.shot-cap { padding: 14px 18px; font-size: 13px; color: var(--muted); line-height: 1.5; }

/* FEATURES */
.features { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
.section-eye { font-size: 12px; font-weight: 700; color: #a78bfa; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.section-h { font-size: clamp(28px, 4vw, 46px); font-weight: 900; letter-spacing: -1px; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 480px; margin-bottom: 48px; line-height: 1.7; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; }
.feat { background: var(--card); padding: 32px 28px; transition: background 0.2s; }
.feat:hover { background: #111124; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.ic-purple { background: rgba(124,58,237,0.15); }
.ic-pink { background: rgba(236,72,153,0.15); }
.ic-blue { background: rgba(59,130,246,0.15); }
.ic-green { background: rgba(34,197,94,0.15); }
.ic-orange { background: rgba(251,146,60,0.15); }
.ic-teal { background: rgba(20,184,166,0.15); }
.feat h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* HOW */
.how { padding: 80px 24px; background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent); }
.how-inner { max-width: 960px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 32px 26px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.step:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-3px); }
.step-n { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #7c3aed, #a78bfa); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; margin: 0 auto 18px; box-shadow: 0 4px 20px rgba(124,58,237,0.4); }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; margin-top: 48px; }
.testi { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.testi:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 15px; color: var(--text); line-height: 1.75; flex: 1; margin-bottom: 24px; }
.testi-author { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid var(--border); padding-top: 18px; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-store { font-size: 13px; color: var(--muted); }
.testi-verified { font-size: 11px; color: #5a5a7a; margin-top: 3px; letter-spacing: 0.03em; }

/* USE CASES */
.use-cases { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }

/* COMPARISON */
.comparison { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.comp-wrap { overflow-x: auto; margin-top: 48px; -webkit-overflow-scrolling: touch; border-radius: 16px; border: 1px solid var(--border); }
.comp-table { width: 100%; border-collapse: collapse; min-width: 700px; background: var(--card); }
.comp-table th { padding: 14px 16px; font-size: 12px; font-weight: 700; text-align: center; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid var(--border); }
.comp-table th:first-child { text-align: left; }
.comp-table th.comp-us { background: rgba(124,58,237,0.12); color: var(--purple-light); }
.comp-table td { padding: 13px 16px; font-size: 14px; color: var(--muted); text-align: center; border-bottom: 1px solid rgba(28,28,56,0.6); }
.comp-table td:first-child { text-align: left; color: var(--text); font-weight: 400; }
.comp-table td.comp-us { background: rgba(124,58,237,0.05); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-yes { color: #34d399; font-size: 16px; font-weight: 700; }
.comp-no { color: #ef4444; font-size: 16px; }
.comp-partial { color: #f59e0b; font-size: 12px; font-weight: 700; }

/* PRICING */
.pricing { padding: 80px 24px; max-width: 980px; margin: 0 auto; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.plan { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; position: relative; transition: transform 0.2s; }
.plan:hover { transform: translateY(-3px); }
.plan.pop { border-color: rgba(124,58,237,0.45); background: linear-gradient(180deg, rgba(124,58,237,0.06), var(--card)); }
.pop-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; box-shadow: 0 4px 12px rgba(124,58,237,0.4); }
.plan-tier { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 10px; }
.plan-price { font-size: 46px; font-weight: 900; letter-spacing: -2px; margin-bottom: 2px; }
.plan-price sup { font-size: 20px; vertical-align: super; font-weight: 700; }
.plan-price sub { font-size: 16px; color: var(--muted); font-weight: 400; }
.plan-trial { font-size: 13px; color: #a78bfa; margin-bottom: 24px; min-height: 20px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feats li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.plan-feats li::before { content: '✓'; color: #a78bfa; font-weight: 800; }
.plan-btn { width: 100%; border-radius: 10px; padding: 13px; font-size: 15px; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; display: block; font-family: inherit; transition: opacity 0.15s, transform 0.15s; }
.plan-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.plan-btn.solid { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; border: none; box-shadow: 0 4px 16px rgba(124,58,237,0.35); }
.plan-btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }

/* FAQ */
.faq { padding: 80px 24px; max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
details.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
summary.faq-q { padding: 20px 24px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; list-style: none; }
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q:hover { color: var(--purple-light); }
.faq-chevron { font-size: 22px; font-weight: 300; color: var(--muted); line-height: 1; transition: transform 0.25s, color 0.15s; flex-shrink: 0; }
details[open] .faq-chevron { transform: rotate(45deg); color: var(--purple-light); }
.faq-a { padding: 20px 24px; font-size: 15px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); }

/* CTA */
.cta { padding: 80px 24px; }
.cta-box { max-width: 760px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.05)); border: 1px solid rgba(124,58,237,0.22); border-radius: 24px; padding: 64px 40px; }
.cta-box h2 { font-size: clamp(28px, 4.5vw, 50px); font-weight: 900; letter-spacing: -1px; margin-bottom: 14px; }
.cta-box p { font-size: 17px; color: var(--muted); margin-bottom: 36px; }

/* TRUST STRIP */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 24px; text-align: center; }
.trust-inner { max-width: 900px; margin: 0 auto; }
.trust-by { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.trust-by a { color: var(--purple-light); text-decoration: none; }
.trust-by a:hover { text-decoration: underline; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.trust-badge { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-badge::before { content: '✓'; color: #34d399; font-weight: 800; }

/* HAMBURGER */
.ham { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: transparent; border: none; padding: 6px 4px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.22s, opacity 0.22s; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); padding: 8px 0 20px; z-index: 99; box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
.mobile-nav a { display: block; color: var(--text); text-decoration: none; font-size: 16px; font-weight: 400; padding: 14px 24px; transition: color 0.15s; }
.mobile-nav a:hover { color: var(--purple-light); }
.mobile-nav .mobile-cta { color: #a78bfa; font-weight: 700; border-top: 1px solid var(--border); margin-top: 8px; }
.mobile-nav.open { display: block; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 64px 48px 40px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.foot-brand { display: flex; flex-direction: column; gap: 14px; }
.foot-logo { font-size: 20px; font-weight: 900; background: linear-gradient(135deg, #a78bfa, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.foot-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 220px; }
.foot-install { display: inline-block; margin-top: 4px; background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 700; text-decoration: none; width: fit-content; }
.foot-col h4 { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: #66668c; text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border); padding-top: 28px; }
.foot-copy { font-size: 13px; color: #555; }
.foot-copy a { color: #666; text-decoration: none; }
.foot-copy a:hover { color: var(--muted); }
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { font-size: 13px; color: #555; text-decoration: none; transition: color 0.15s; }
.foot-legal a:hover { color: var(--muted); }

@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .ham { display: flex; }
  .nav-btn { display: none; }
  .stats { flex-wrap: wrap; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .shots-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 20px; }
  footer { padding: 40px 20px 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .qf-table th { width: 120px; }
}
