:root {
  --bg: #0e0f13;
  --bg-2: #14161f;
  --panel: #171922;
  --panel-2: #1f222e;
  --line: #2a2e3c;
  --text: #eef0f6;
  --muted: #9aa0b4;
  --accent: #7C6BF0;
  --accent-2: #A55EEA;
  --good: #2ecc71;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Scroll-reveal (progressive enhancement — content shows even if JS is off) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }
body {
  background: var(--bg); color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.grad { background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: transform .08s, filter .15s, background .15s; border: 1px solid transparent; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 10px 30px rgba(124,107,240,.35); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: var(--panel-2); color: var(--text); border-color: var(--line); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; background: rgba(14,15,19,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 70px 28px 50px;
}
/* subtle moving gradient glow behind the hero */
.hero::before {
  content: ''; position: absolute; inset: -10% -20% auto -20%; height: 420px; z-index: -1;
  background: radial-gradient(60% 80% at 30% 30%, rgba(124,107,240,.28), transparent 70%),
              radial-gradient(50% 70% at 80% 20%, rgba(165,94,234,.22), transparent 70%);
  filter: blur(20px); animation: heroglow 12s ease-in-out infinite alternate;
}
@keyframes heroglow { from { transform: translateX(-3%) translateY(-2%); } to { transform: translateX(4%) translateY(3%); } }
.lead em { color: #cbb4ff; font-style: normal; font-weight: 600; }

/* Two ways to create */
.two-ways { display: flex; align-items: stretch; justify-content: center; gap: 18px; max-width: 920px; flex-wrap: wrap; }
.two-ways .way { flex: 1; min-width: 240px; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; text-align: center; }
.two-ways .way:hover { border-color: rgba(124,107,240,.5); }
.way-ico { font-size: 34px; margin-bottom: 8px; }
.two-ways .way h3 { font-size: 18px; margin-bottom: 8px; }
.two-ways .way p { color: var(--muted); font-size: 15px; }
.way-or { display: flex; align-items: center; color: var(--muted); font-weight: 700; font-size: 14px; }

/* NEW badge */
.new { background: linear-gradient(135deg, #ff7a59, #ff4d8d); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 999px; letter-spacing: .5px; vertical-align: middle; }
.pill { display: inline-block; background: rgba(124,107,240,.14); color: #cbb4ff; border: 1px solid rgba(124,107,240,.35); padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px; }
.hero h1 { font-size: 52px; line-height: 1.08; letter-spacing: -.5px; margin-bottom: 18px; }
.lead { font-size: 18px; color: #c5c9d8; max-width: 540px; margin-bottom: 28px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.phone {
  width: 240px; height: 430px; border-radius: 34px; background: #000;
  border: 6px solid #2c2f3e; box-shadow: 0 30px 70px rgba(0,0,0,.55); position: relative; overflow: hidden;
}
.phone-back { position: absolute; transform: rotate(9deg) translate(36px, 14px); background: linear-gradient(160deg,#23263a,#15161f); z-index: -1; opacity: .8; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #000; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen {
  position: absolute; inset: 0; border-radius: 28px;
  background: linear-gradient(160deg, #6d5bd0, #a55eea 60%, #3a2a66);
  display: flex; align-items: center; justify-content: center;
}
.score-badge { position: absolute; top: 16px; right: 14px; background: rgba(0,0,0,.55); color: #ffd56b; font-weight: 700; font-size: 13px; padding: 5px 11px; border-radius: 999px; }
.play-ring { width: 70px; height: 70px; border-radius: 50%; border: 3px solid rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px; background: rgba(0,0,0,.18); }
.caption-mock { position: absolute; bottom: 70px; left: 0; right: 0; text-align: center; font-weight: 800; font-size: 22px; letter-spacing: .5px; text-shadow: 0 2px 0 #000, 0 0 6px rgba(0,0,0,.6); display: flex; flex-wrap: wrap; gap: 3px 8px; align-items: center; justify-content: center; padding: 0 14px; }
.caption-mock span { display: inline-block; transition: transform .18s cubic-bezier(.34,1.56,.64,1), color .15s; }
.caption-mock .hl { color: #ffe14d; transform: scale(1.16) translateY(-2px); }

/* Magic feature card accent */
.card-magic { border-color: rgba(124,107,240,.5); background: radial-gradient(120% 120% at 0% 0%, rgba(124,107,240,.14), transparent 60%), var(--panel); }

/* Trust bar */
.trustbar { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; padding: 22px 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); color: var(--muted); font-size: 14px; font-weight: 600; }

/* Privacy band — category differentiator */
.privacy-band {
  background:
    radial-gradient(80% 140% at 12% 0%, rgba(46,204,113,.12), transparent 60%),
    radial-gradient(70% 120% at 100% 100%, rgba(124,107,240,.14), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.privacy-inner {
  max-width: 1080px; margin: 0 auto; padding: 60px 28px;
  display: flex; gap: 28px; align-items: center;
}
.privacy-ico {
  font-size: 52px; flex-shrink: 0;
  width: 96px; height: 96px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,204,113,.12); border: 1px solid rgba(46,204,113,.4);
  box-shadow: 0 12px 30px rgba(46,204,113,.18);
}
.privacy-kicker { color: var(--good); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.privacy-text h2 { font-size: 30px; letter-spacing: -.3px; margin: 6px 0 10px; line-height: 1.2; }
.privacy-text p { color: var(--muted); font-size: 16px; max-width: 760px; }
.privacy-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.privacy-chips span {
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 600;
}
@media (max-width: 700px) {
  .privacy-inner { flex-direction: column; text-align: center; }
  .privacy-chips { justify-content: center; }
}

/* Sections */
.section { max-width: 1080px; margin: 0 auto; padding: 76px 28px; }
.section-alt { background: var(--bg-2); max-width: none; }
.section-alt > * { max-width: 1080px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 34px; text-align: center; letter-spacing: -.3px; }
.section-sub { text-align: center; color: var(--muted); margin: 12px 0 44px; font-size: 17px; }

/* Comparison table */
.compare-wrap { max-width: 880px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare thead th { font-size: 15px; font-weight: 800; color: var(--text); border-bottom: 2px solid var(--line); }
.compare tbody td:first-child, .compare thead th:first-child { text-align: left; color: var(--text); font-weight: 600; }
.compare tbody td { color: var(--muted); }
/* highlighted SmartMoviq column */
.compare .c-us { background: rgba(124,107,240,.10); }
.compare thead .c-us {
  color: #fff; border-top-left-radius: 12px; border-top-right-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.compare tbody tr:last-child .c-us { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.compare tr.c-hi td:first-child { color: #fff; }
.compare tr.c-hi { background: rgba(46,204,113,.05); }
.compare .yes { color: var(--good); font-weight: 800; font-size: 17px; }
.compare .no { color: #ff6b76; font-weight: 800; font-size: 16px; }
.compare .lim { color: #ffcc66; font-weight: 700; font-size: 12px; border: 1px solid rgba(255,204,102,.4); border-radius: 999px; padding: 2px 9px; }
.compare-note { text-align: center; margin: 18px auto 0; max-width: 720px; }
.compare-cta { text-align: center; margin-top: 26px; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; transition: border-color .15s, transform .1s; }
.card:hover { border-color: rgba(124,107,240,.5); transform: translateY(-3px); }
.card-ico { font-size: 30px; margin-bottom: 12px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; padding: 10px; }
.step-num { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: #fff; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; margin: 0 auto; }
.price-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 1080px; gap: 16px; }
.price-grid-4 .price-card { padding: 22px 18px; }
.price-grid-4 .price span { font-size: 34px; }
.price-grid-4 .ticks li { font-size: 14px; padding: 6px 0 6px 24px; }
@media (max-width: 980px) { .price-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 600px; } }
.price-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 14px 40px rgba(124,107,240,.22); }
.ribbon { position: absolute; top: -12px; right: 24px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price-card h3 { font-size: 20px; }
.price { margin: 12px 0 16px; }
.price span { font-size: 44px; font-weight: 800; }
.price small { color: var(--muted); }
.ticks { list-style: none; margin: 18px 0 24px; }
.ticks li { padding: 7px 0 7px 26px; position: relative; font-size: 15px; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--good); font-weight: 800; }

/* Download */
.download { text-align: center; }
.download .btn { margin: 6px 0 10px; }
.dl-specs { color: var(--good); font-size: 14px; font-weight: 700; margin: 2px 0 6px; }
.dl-getlist {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
  max-width: 620px; margin: 28px auto 0; text-align: left;
}
.dl-get {
  display: flex; align-items: center; gap: 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; font-size: 14.5px; font-weight: 600;
}
.dl-ico { font-size: 20px; flex-shrink: 0; }
@media (max-width: 560px) { .dl-getlist { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 6px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: '+'; color: var(--accent-2); font-size: 22px; }
.faq details[open] summary::after { content: '−'; }
.faq details p { color: var(--muted); padding-bottom: 16px; }

/* Final CTA */
.final-cta { text-align: center; padding: 80px 28px; background: linear-gradient(135deg, rgba(124,107,240,.16), rgba(165,94,234,.16)); border-top: 1px solid var(--line); }
.final-cta h2 { font-size: 30px; margin-bottom: 24px; }

/* Footer */
.footer { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-top: 1px solid var(--line); max-width: 1080px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 28px 40px; }
.legal h1 { font-size: 32px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.legal h2 { font-size: 20px; margin: 28px 0 10px; }
.legal p, .legal li { color: #c5c9d8; font-size: 15px; }
.legal ul { margin: 8px 0 8px 22px; }
.legal a { color: var(--accent-2); text-decoration: underline; }
.legal .back { display: inline-block; margin-bottom: 24px; color: var(--muted); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero h1 { font-size: 38px; }
  .lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-visual { min-height: 380px; margin-top: 20px; }
  .nav-links { display: none; }
  .grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 27px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}
