:root{
  --bg:#0b0f14;
  --panel:#121821;
  --line:#1f2a36;
  --text:#ffffff;
  --muted:#cbd5e1;
  --muted2:#94a3b8;
  --green:#22c55e;
  --green2:#16a34a;
  --pill:#334155;
  --max:1200px;
  --r:14px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.muted{color:var(--muted)}
/* header */
.site-header{border-bottom:1px solid var(--line);background:rgba(11,15,20,.92);position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{height:52px;width:auto}
.brand-text{display:flex;flex-direction:column}
.brand-name{font-weight:900}
.brand-sub{font-size:12px;color:var(--muted2)}
.nav{display:flex;gap:14px;flex-wrap:wrap}
.nav a{color:var(--muted);font-weight:800;font-size:14px}
.nav a:hover{color:#fff}
/* hero */
.hero{padding:44px 0 24px}
.hero-inner{text-align:center}
.hero h1{font-size:36px;margin:0 0 10px}
.lead{max-width:760px;margin:0 auto;color:var(--muted);font-size:17px;line-height:1.5}
.hero-badges{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;max-width:580px;margin:16px auto 0}
.badge{border:1px solid var(--line);border-radius:12px;padding:9px 10px;color:var(--muted);font-weight:800;background:rgba(255,255,255,.03)}
/* sections/cards */
.section{padding:36px 0}
.section.alt{background:rgba(255,255,255,.02);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:16px;gap:14px;flex-wrap:wrap}
.section-head h2{margin:0;font-size:26px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.card{background:var(--panel);border:1px solid var(--line);border-radius:var(--r);padding:16px}
.card-muted{opacity:.65}
.card-logo{width:100%;max-height:90px;object-fit:contain;margin-bottom:10px}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;font-size:14px;line-height:1.4}
/* buttons */
.btn{display:inline-block;padding:10px 14px;border-radius:10px;font-weight:900;border:1px solid var(--line);margin-top:12px}
.btn-primary{background:var(--green);color:#000}
.btn-primary:hover{background:var(--green2)}
.pill{display:inline-block;margin-top:10px;background:var(--pill);padding:6px 10px;border-radius:10px;font-size:12px;font-weight:900}
/* footer */
.footer{padding:16px 0;border-top:1px solid var(--line);color:var(--muted2)}
.footer-inner{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:13px}
/* product pages */
.page{max-width:var(--max);margin:0 auto;padding:26px 20px}
.product-hero{display:grid;grid-template-columns:260px 1fr;gap:18px}
.product-logo{width:100%;max-height:120px;object-fit:contain;border:1px solid var(--line);border-radius:var(--r);padding:8px;background:rgba(255,255,255,.02)}
.price-block{margin-top:12px;padding:12px;border-radius:12px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.price-line{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.price{font-size:20px;font-weight:900}
.fineprint{font-size:12px;color:var(--muted2);margin-top:10px;max-width:60ch}
.bullets{color:var(--muted);line-height:1.7}
.back{margin-top:18px}
.back a{color:var(--muted);font-weight:900}
.back a:hover{color:#fff}
/* screenshots + modal */
.shots{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;margin-top:12px}
.shots img{width:100%;border-radius:12px;border:1px solid var(--line);background:#0f172a;cursor:pointer}
.shots img:hover{outline:2px solid var(--green)}
.modal{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:9999}
.modal.open{display:flex}
.modal img{max-width:95%;max-height:90%;border-radius:14px;border:1px solid var(--line)}
.modal-close{position:absolute;top:18px;right:18px;font-size:26px;font-weight:900;color:#fff;cursor:pointer;background:rgba(0,0,0,.6);padding:6px 12px;border-radius:10px}
.modal-close:hover{background:rgba(0,0,0,.85)}
@media (max-width:900px){
  .hero h1{font-size:32px}
  .hero-badges{grid-template-columns:1fr}
  .product-hero{grid-template-columns:1fr}
  .brand-logo{height:46px}
}

/* v2.1: disabled buy button (keeps Stripe styling without broken checkout) */
.btn-disabled{opacity:.55;cursor:not-allowed;pointer-events:none}
.btn-note{font-size:12px;color:var(--muted2);margin-top:8px;max-width:60ch}
