:root{
  --bg:#0b0817;
  --bg-soft:#151028;
  --card:#1a1432;
  --border:#2a2150;
  --text:#eceaf6;
  --muted:#a49fc0;
  --accent:#8b6cff;
  --accent-2:#6c47ff;
  --green:#2ee085;
  --red:#ff5a6e;
  --radius:16px;
  --maxw:1080px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);color:var(--text);line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(11,8,23,.85);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:1.05rem;color:var(--text)}
.brand img{width:32px;height:32px;border-radius:8px}
.nav{display:flex;gap:22px;font-size:.95rem}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text);text-decoration:none}
.nav .btn{color:#fff}
@media(max-width:640px){.nav a:not(.btn){display:none}}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:10px;background:linear-gradient(135deg,var(--accent),var(--accent-2));color:#fff;font-weight:600;padding:12px 24px;border-radius:12px;transition:transform .15s,box-shadow .15s}
.btn:hover{text-decoration:none;transform:translateY(-2px);box-shadow:0 8px 30px rgba(139,108,255,.35)}
.btn.secondary{background:var(--card);border:1px solid var(--border)}
.btn svg{width:20px;height:20px;fill:currentColor}
.store-badge{display:inline-flex;align-items:center;gap:12px;background:#000;border:1px solid #3a3560;border-radius:14px;padding:10px 22px;color:#fff}
.store-badge:hover{text-decoration:none;border-color:var(--accent);transform:translateY(-2px)}
.store-badge svg{width:28px;height:28px;fill:#fff}
.store-badge .lines{display:flex;flex-direction:column;line-height:1.2;text-align:left}
.store-badge .small{font-size:.68rem;color:#cfcbe6}
.store-badge .big{font-size:1.15rem;font-weight:600}

/* hero */
.hero{padding:90px 0 60px;text-align:center;background:radial-gradient(ellipse 80% 60% at 50% -10%,rgba(108,71,255,.28),transparent)}
.hero .icon{width:96px;height:96px;border-radius:22px;margin:0 auto 26px;box-shadow:0 12px 50px rgba(108,71,255,.4)}
.hero h1{font-size:clamp(2rem,5vw,3.3rem);line-height:1.15;font-weight:800;letter-spacing:-.02em;max-width:840px;margin:0 auto 18px}
.hero h1 .grad{background:linear-gradient(90deg,#a78bfa,#6c47ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero p.sub{font-size:1.15rem;color:var(--muted);max-width:660px;margin:0 auto 34px}
.hero .cta-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.hero .trust{margin-top:22px;font-size:.9rem;color:var(--muted)}

/* sections */
section{padding:72px 0}
section.alt{background:var(--bg-soft)}
.kicker{color:var(--accent);font-weight:700;text-transform:uppercase;letter-spacing:.12em;font-size:.8rem;margin-bottom:10px}
h2{font-size:clamp(1.6rem,3.5vw,2.3rem);font-weight:800;letter-spacing:-.01em;margin-bottom:14px}
.section-head{max-width:720px;margin-bottom:44px}
.section-head p{color:var(--muted);font-size:1.05rem}
.center{text-align:center}
.center .section-head{margin-left:auto;margin-right:auto}

/* screenshots */
.shots{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:22px}
.shot{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.shot img{width:100%}
.shot figcaption{padding:14px 16px;font-size:.9rem;color:var(--muted)}
.shot.wide{grid-column:span 2}
.shot .duo{display:flex}
.shot .duo img{width:50%}

/* cards */
.grid{display:grid;gap:22px}
.grid.cols-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid.cols-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:26px}
.card h3{font-size:1.15rem;margin-bottom:8px}
.card p{color:var(--muted);font-size:.97rem}
.card .num{display:inline-flex;width:34px;height:34px;border-radius:10px;background:rgba(139,108,255,.15);color:var(--accent);align-items:center;justify-content:center;font-weight:700;margin-bottom:14px}
.card a.more{display:inline-block;margin-top:12px;font-weight:600}

/* faq */
.faq-item{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);margin-bottom:14px;overflow:hidden}
.faq-item summary{cursor:pointer;padding:20px 24px;font-weight:600;font-size:1.05rem;list-style:none;position:relative;padding-right:52px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";position:absolute;right:24px;top:50%;transform:translateY(-50%);color:var(--accent);font-size:1.4rem;font-weight:400}
.faq-item[open] summary::after{content:"–"}
.faq-item .answer{padding:0 24px 22px;color:var(--muted)}

/* cta band */
.cta-band{background:linear-gradient(135deg,rgba(108,71,255,.25),rgba(46,224,133,.08)),var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);text-align:center}
.cta-band p{color:var(--muted);max-width:600px;margin:0 auto 30px}

/* footer */
footer{padding:56px 0 40px;border-top:1px solid var(--border);font-size:.92rem;color:var(--muted)}
footer .cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:32px;margin-bottom:36px}
footer h4{color:var(--text);font-size:.95rem;margin-bottom:12px}
footer ul{list-style:none}
footer li{margin-bottom:8px}
footer a{color:var(--muted)}
footer a:hover{color:var(--text)}
footer .fine{border-top:1px solid var(--border);padding-top:24px;font-size:.82rem}

/* article / guide pages */
.article{max-width:760px;margin:0 auto;padding:56px 20px 72px}
.article .breadcrumbs{font-size:.85rem;color:var(--muted);margin-bottom:26px}
.article h1{font-size:clamp(1.8rem,4vw,2.6rem);line-height:1.2;font-weight:800;letter-spacing:-.02em;margin-bottom:16px}
.article .meta{color:var(--muted);font-size:.9rem;margin-bottom:34px}
.article h2{font-size:1.5rem;margin:44px 0 14px}
.article h3{font-size:1.15rem;margin:30px 0 10px}
.article p{margin-bottom:16px}
.article ul,.article ol{margin:0 0 18px 24px}
.article li{margin-bottom:8px}
.article .callout{background:var(--card);border:1px solid var(--border);border-left:4px solid var(--accent);border-radius:12px;padding:20px 24px;margin:28px 0}
.article .callout strong{color:var(--text)}
.article figure{margin:30px auto;max-width:340px}
.article figure img{border-radius:18px;border:1px solid var(--border)}
.article figure figcaption{text-align:center;font-size:.85rem;color:var(--muted);margin-top:10px}
.article figure.duo{max-width:520px}
.article figure.duo .duo-row{display:flex;gap:8px}
.article figure.duo .duo-row img{width:50%}
.article table{width:100%;border-collapse:collapse;margin:24px 0;font-size:.95rem}
.article th,.article td{border:1px solid var(--border);padding:10px 14px;text-align:left}
.article th{background:var(--card)}
.article .inline-cta{background:linear-gradient(135deg,rgba(108,71,255,.2),transparent),var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:28px;margin:40px 0;text-align:center}
.article .inline-cta h3{margin-top:0}
.article .inline-cta p{color:var(--muted)}
.table-wrap{overflow-x:auto}
