:root{
  --bg:#0b0f1a;
  --fg:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --card:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.10);
  --accent:#33c3ff;
  --accent2:#0e0055;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(900px 500px at 20% 10%, rgba(51,195,255,.18), transparent 60%),
              radial-gradient(700px 400px at 80% 20%, rgba(14,0,85,.35), transparent 55%),
              var(--bg);
  color:var(--fg);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:28px 18px 60px}

.topbar{
  position:sticky; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,15,26,.55);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  z-index:10;
}
.brand{display:flex; align-items:center; gap:10px}
.logo{width:28px;height:28px;object-fit:contain}
.brand-text{font-weight:700; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); font-size:14px}
.nav a:hover{color:var(--fg)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight:600;
  font-size:14px;
}
.btn:hover{border-color:rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, rgba(51,195,255,.28), rgba(14,0,85,.28));
  border-color: rgba(51,195,255,.35);
}
.btn.ghost{background: transparent}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  padding:48px 0 20px;
  align-items:center;
}
.hero h1{margin:0 0 14px; font-size:44px; line-height:1.06}
.sub{margin:0 0 22px; color:var(--muted); font-size:16px; line-height:1.6}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}
.chips{display:flex; gap:10px; flex-wrap:wrap}
.chips span{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}

.hero-right{position:relative; min-height:280px}
.card{
  position:relative;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.card-title{font-weight:700; margin-bottom:16px}
.card-metric{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-bottom:14px}
.kpi{border:1px solid var(--line); background: rgba(255,255,255,.03); border-radius:14px; padding:12px}
.k{color:var(--muted); font-size:12px; margin-bottom:6px}
.v{font-size:18px; font-weight:800}
.v.up{color:#7CFFB2}

.bar{height:10px; border-radius:999px; background: rgba(255,255,255,.08); overflow:hidden; border:1px solid var(--line)}
.bar-fill{height:100%; width:72%; background: rgba(51,195,255,.55)}
.hint{margin-top:10px; color:rgba(234,240,255,.55); font-size:12px}

.glow{
  position:absolute; inset:auto -30px -30px auto;
  width:220px; height:220px;
  background: radial-gradient(circle at 30% 30%, rgba(51,195,255,.35), transparent 60%);
  filter: blur(10px);
  pointer-events:none;
}

.section{padding:34px 0; border-top:1px solid rgba(255,255,255,.08)}
.section h2{margin:0 0 14px; font-size:26px}
.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.box{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:16px;
}
.box h3{margin:0 0 8px; font-size:16px}
.box p{margin:0; color:var(--muted); line-height:1.55}

.steps{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}
.contact{padding-bottom:8px}
.contact-row{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 0}
.small{margin:18px 0 0; color:rgba(234,240,255,.45); font-size:12px}

@media (max-width: 920px){
  .hero{grid-template-columns: 1fr; padding-top:26px}
  .hero h1{font-size:36px}
  .grid{grid-template-columns: 1fr}
  .nav{gap:12px}
  .nav a{display:none}
  .nav a.btn{display:inline-flex}
}
