:root{
  --bg:#070812;
  --card:#0f1124;
  --muted:#aab0c0;
  --text:#eef0ff;
  --line:rgba(255,255,255,.08);
  --accent:#7c6cff;
  --accent2:#a88bff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  background: radial-gradient(900px 500px at 50% -10%, rgba(124,108,255,.30), transparent 60%),
              radial-gradient(700px 400px at 80% 0%, rgba(168,139,255,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:980px; margin:0 auto; padding:34px 18px 50px}

.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(7,8,18,.55);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
}
.brand{font-weight:800; letter-spacing:.2px}
.links a{margin-left:14px; color:var(--muted); font-size:14px}
.links a:hover{color:var(--text)}

.hero{padding:28px 0 20px}
.badge{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
}
h1{font-size:46px; line-height:1.05; margin:14px 0 10px}
.sub{color:var(--muted); font-size:18px; max-width:720px; margin:0 0 18px}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  font-weight:650;
}
.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border:0;
  box-shadow: 0 14px 40px rgba(124,108,255,.22);
}
.primary:hover{filter:brightness(1.05)}
.ghost{background:rgba(255,255,255,.03); color:var(--text)}
.ghost:hover{background:rgba(255,255,255,.06)}

.heroStats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:16px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:14px;
}
.stat .k{font-weight:750}
.stat .v{color:var(--muted); margin-top:4px; font-size:14px}

.card{
  margin-top:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:18px;
  padding:18px;
}
h2{margin:0 0 10px; font-size:22px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:12px}
.tile, .feature{
  border:1px solid var(--line);
  background:rgba(7,8,18,.35);
  border-radius:16px;
  padding:14px;
}
.icon{
  width:34px; height:34px; border-radius:10px;
  background:rgba(124,108,255,.18);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; color:var(--text);
  margin-bottom:10px;
}
.tile h3,.feature h3{margin:0 0 6px}
.tile p,.feature p{margin:0; color:var(--muted)}
.link{color:var(--accent2)}
.small{color:var(--muted); margin-top:8px}

.footer{
  display:flex; justify-content:space-between; align-items:center;
  color:var(--muted);
  padding:18px 2px 0;
  margin-top:10px;
}
.footLinks a{margin-left:12px; color:var(--muted)}
.footLinks a:hover{color:var(--text)}

@media (max-width:860px){
  h1{font-size:36px}
  .heroStats{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
}