:root{
  --bg:#0b0f14;
  --card:#111824;
  --muted:#9fb0c2;
  --text:#eaf2ff;
  --accent:#6dd6ff;
  --accent2:#ffd36d;
  --border:rgba(255,255,255,.08);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(109,214,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,211,109,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.45;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:26px 18px 70px}
header{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:10px 0 26px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:850; letter-spacing:.2px}
.pill{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(109,214,255,.35), rgba(255,211,109,.18));
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
  font-weight:900;
}
nav{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:650; font-size:14px}
nav a{text-decoration:none; opacity:.9}
nav a:hover{opacity:1; color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  text-decoration:none; font-weight:780;
  cursor:pointer;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(109,214,255,.25), rgba(109,214,255,.10));
  border-color: rgba(109,214,255,.28);
}
.btn.secondary:hover{background:rgba(255,255,255,.06)}
.btn.primary:hover{filter:brightness(1.05)}

.card{
  background: rgba(17,24,36,.74);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.kicker{color:rgba(109,214,255,.95); font-weight:850; letter-spacing:.2px; font-size:13px; text-transform:uppercase}
h1{margin:0 0 12px; font-size: clamp(30px, 3.2vw, 44px); line-height:1.05}
h2{margin:8px 0 8px; font-size:26px}
.sub{color:var(--muted); font-size:17px; margin:0 0 16px}
.muted{color:var(--muted)}
.fine{color:var(--muted); font-size:13px; margin-top:10px}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
  margin-top:10px;
}
@media (max-width: 900px){ .hero{grid-template-columns:1fr;} }

.heroMain{padding:26px}
.bullets{display:grid; gap:10px; margin:16px 0 0; padding:0; list-style:none}
.bullets li{display:flex; gap:10px; align-items:flex-start}
.tick{
  width:22px; height:22px; border-radius:7px;
  background: rgba(109,214,255,.18);
  border:1px solid rgba(109,214,255,.25);
  display:grid; place-items:center;
  flex:0 0 22px;
  margin-top:1px;
  font-weight:900;
}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:720;
  color: var(--muted);
  margin-top:10px;
}

.shareRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.heroSide{display:grid; grid-template-rows: 1fr auto;}
.imgBox{padding:18px; display:grid; place-items:center; min-height: 320px;}
.imgBox img{
  width:100%; max-width:420px; height:auto;
  border-radius:16px; border:1px solid var(--border);
  background:#0a0e14;
}
.miniStrip{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; padding: 0 18px 18px;}
.miniStrip img{
  width:100%; height:auto;
  border-radius:14px; border:1px solid var(--border);
  background:#0a0e14;
}

section{margin-top:26px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width: 900px){ .grid3{grid-template-columns:1fr} }
.tile{padding:18px}

.how{display:grid; grid-template-columns: 1fr 1fr; gap:14px;}
@media (max-width: 900px){ .how{grid-template-columns:1fr} }
.step{padding:18px}
.num{
  width:32px; height:32px; border-radius:12px;
  background: rgba(255,211,109,.14);
  border:1px solid rgba(255,211,109,.22);
  display:grid; place-items:center; font-weight:900;
  margin-bottom:10px;
}

.compareTable{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
}
.compareTable th, .compareTable td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  text-align:left;
  vertical-align:top;
  font-size:14px;
}
.compareTable th{background: rgba(255,255,255,.04); color: var(--muted); font-weight:850}
.compareTable tr:last-child td{border-bottom:none}
.yes{color: rgba(109,214,255,.95); font-weight:950}
.no{color: rgba(255,120,120,.95); font-weight:950}

.faq details{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(17,24,36,.6);
  padding:14px 14px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:850}

.cards2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media (max-width: 900px){ .cards2{grid-template-columns:1fr} }
.productCard{padding:18px}
.price{font-size:28px; font-weight:900; margin:6px 0}
small{color:var(--muted)}

footer{margin-top:34px; color:var(--muted); font-size:13px}

/* ---------------------------
   DEMO TIMER (Homepage)
---------------------------- */
.demoWrap{
  width:100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  background:#0a0e14;
  display:grid;
  place-items:stretch;
}
.demoWrap::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--demo-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.demoWrap::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(600px 300px at 50% 70%, rgba(0,0,0,.15), rgba(0,0,0,.62)),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.55));
}
.demoHud{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:14px;
  gap:10px;
}
.demoLabel{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(234,242,255,.86);
  font-weight:800;
}
.demoLCD{
  width: fit-content;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,14,20,.55);
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:900;
  font-size: 34px;
  letter-spacing: .06em;
}
.demoSmall{
  font-size: 12px;
  font-weight:800;
  color: rgba(234,242,255,.72);
  margin-left:8px;
  letter-spacing: .08em;
}
.demoColon{opacity:.9; transition: opacity .12s ease;}
.demoColon.blinkOff{opacity:.25;}
.demoControls{display:flex; gap:10px; flex-wrap:wrap}
.demoHint{
  color: rgba(234,242,255,.7);
  font-size: 12px;
  line-height: 1.3;
}

/* ---------------------------
   Testimonials
---------------------------- */
.testimonialGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
@media (max-width: 900px){ .testimonialGrid{grid-template-columns:1fr} }

.testimonialCard{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(17,24,36,.6);
  padding:16px;
}
.quote{
  font-size:16px;
  color: rgba(234,242,255,.92);
  font-weight:750;
}
.byline{
  margin-top:10px;
  color: var(--muted);
  font-size:13px;
}
/* ---------- Share button readability + mobile spacing ---------- */

button[data-share="native"].btn.secondary{
  color: var(--text);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  font-weight: 700;
  letter-spacing: .3px;
}

button[data-share="native"].btn.secondary:hover{
  background: rgba(255,255,255,.18);
}

/* On small screens, give buttons more breathing room */
@media (max-width: 520px){
  .btn{
    padding: 12px 16px;
  }
}
