:root{
  --bg:#0b1020;
  --card:#111a33;
  --card2:#0f1730;
  --text:#e8ecff;
  --muted:#b7c0ffcc;
  --accent:#4aa3ff;
  --accent2:#6ef3ff;
  --stroke:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(74,163,255,.25), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(110,243,255,.18), transparent 60%),
    radial-gradient(1200px 700px at 50% 100%, rgba(74,163,255,.14), transparent 55%),
    var(--bg);
  line-height:1.45;
}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:28px 18px 60px}
header{
  display:flex;align-items:center;justify-content:space-between;
  gap:18px;padding:10px 0 26px;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand img{width:42px;height:42px;border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.35);border:1px solid var(--stroke)}
.brand span{font-weight:700;letter-spacing:.2px}
.nav-links{display:flex;gap:8px}
.nav-links a{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
  text-decoration:none;
  transition:all .2s ease;
}
.nav-links a:hover{color:var(--text);background:rgba(255,255,255,.08)}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
  backdrop-filter: blur(10px);
}
.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
  margin-top:10px;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}
.heroCard{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:28px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute;inset:-2px;
  background: radial-gradient(700px 280px at 15% 10%, rgba(74,163,255,.25), transparent 60%),
              radial-gradient(600px 240px at 75% 30%, rgba(110,243,255,.18), transparent 60%);
  z-index:0;
}
.heroCard > *{position:relative;z-index:1}
h1{
  margin:10px 0 10px;
  font-size:48px;
  line-height:1.08;
  letter-spacing:-.8px;
}
@media (max-width: 520px){ h1{font-size:40px} }
.subtitle{
  font-size:18px;
  color:var(--muted);
  margin:0 0 18px;
  max-width:60ch;
}
.ctaRow{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:650;
}
.btn.primary{
  background:linear-gradient(135deg, rgba(74,163,255,.95), rgba(110,243,255,.85));
  color:#07101f;
  border:0;
  box-shadow: 0 14px 40px rgba(74,163,255,.30);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}
.small{font-size:13px;color:var(--muted)}
.support{display:flex;gap:10px;align-items:center;margin-top:14px}
.support code{
  background:rgba(0,0,0,.22);
  border:1px solid var(--stroke);
  padding:6px 10px;border-radius:10px;
  color:#eaf3ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
}
.iconCard{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:16px;
}
.iconWrap{
  display:flex;align-items:center;justify-content:center;
  padding:18px;
  border-radius:16px;
  background:rgba(0,0,0,.18);
  border:1px solid var(--stroke);
}
.iconWrap img{
  width:240px;height:240px;
  border-radius:46px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.14);
  background:#eee;
}
.kpis{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.kpi{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:12px 12px;
}
.kpi strong{display:block;font-size:16px}
.kpi span{display:block;color:var(--muted);font-size:13px;margin-top:4px}
.section{
  margin-top:26px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:22px;
}
.section h2{margin:0 0 10px;font-size:22px}
.sectionLead{margin:0 0 14px;color:var(--muted);font-size:14px}
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
}
@media (max-width: 760px){ .grid{grid-template-columns:1fr} }
.feat{
  background:rgba(0,0,0,.18);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px 14px 14px;
}
.feat h3{margin:0 0 6px;font-size:16px}
.feat p{margin:0;color:var(--muted);font-size:14px}
footer{
  margin-top:22px;
  display:flex;flex-wrap:wrap;gap:12px;
  align-items:center;justify-content:space-between;
  color:var(--muted);
  font-size:13px;
}
.keywords{
  display:flex;flex-wrap:wrap;gap:8px;
  margin-top:12px
}
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--muted);
}
.heroLead{margin-top:18px}
.heroLead h2{margin:0 0 10px;font-size:20px}
.heroLead p{margin:0;color:var(--muted);font-size:14px}
.chainBox{
  margin-top:14px;
  background:rgba(0,0,0,.22);
  border:1px solid var(--stroke);
  border-radius:12px;
  padding:14px 16px;
  color:#eaf3ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12.5px;
  line-height:1.55;
  overflow-x:auto;
}
.chainBox .ok{color:#6ee7b7}
.chainBox .info{color:var(--muted)}
.chainBox .bad{color:#ff8a9d}
.chainBox .warn{color:#ffd28a}
.chainBox .accent{color:var(--accent2)}
/* Privacy policy helpers */
.heroSolo{grid-template-columns:1fr}
.policyText{margin:0;color:var(--muted);font-size:14px}
.policyText + .policyText{margin-top:12px}
.policyList{margin:12px 0 0 20px;color:var(--muted);font-size:14px}
.policyList li{margin-bottom:6px}
.section.tight{margin-top:18px}
/* Screenshot cards */
.shots{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
  margin-top:14px;
}
.shot{
  background:rgba(0,0,0,.22);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
  display:flex;flex-direction:column;gap:10px;
}
.shot img{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
}
.shot h3{margin:0;font-size:15px}
.shot p{margin:0;color:var(--muted);font-size:13px}
