:root{
  --bg:#070B12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --text:#EAF2FF;
  --muted: rgba(234,242,255,.72);
  --line: rgba(255,255,255,.10);
  --blue:#35B6FF;
  --blue2:#3A6BFF;
  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(900px 400px at 20% -10%, rgba(53,182,255,.18), transparent 60%),
              radial-gradient(700px 400px at 80% 10%, rgba(58,107,255,.14), transparent 60%),
              var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,18,.55);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:34px;height:34px;object-fit:contain}
.brand__name{font-weight:800;letter-spacing:.2px}
.brand__tag{font-size:12px;color:var(--muted);border:1px solid var(--line);padding:4px 8px;border-radius:999px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}
.hamb{display:none;background:none;border:0;padding:8px;cursor:pointer}
.hamb span{display:block;width:22px;height:2px;background:var(--text);margin:5px 0;border-radius:2px;opacity:.85}

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile-nav a{
  display:block; padding:10px 0; color:var(--muted)
}
.mobile-nav a:hover{color:var(--text)}

.hero{position:relative; padding:62px 0 28px; overflow:hidden}
.hero__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:start}
.pill{
  display:inline-block;
  padding:8px 12px;
  background: linear-gradient(90deg, rgba(53,182,255,.18), rgba(58,107,255,.18));
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
h1{font-size:48px;line-height:1.05;margin:14px 0 10px}
.lead{color:var(--muted);font-size:16px;line-height:1.6;max-width:54ch}
.cta{display:flex; gap:12px; margin-top:16px; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(53,182,255,.35);
  background: linear-gradient(90deg, rgba(53,182,255,.22), rgba(58,107,255,.22));
  color:var(--text);
  box-shadow: 0 14px 36px rgba(53,182,255,.08);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: var(--line);
  color:var(--muted);
}
.btn--ghost:hover{color:var(--text)}

.stats{display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-top:22px}
.stat{padding:12px;border:1px solid var(--line);border-radius:var(--radius);background:var(--panel2)}
.stat__num{font-weight:900}
.stat__txt{font-size:12px;color:var(--muted);margin-top:2px}

.heroCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding:18px;
}
.heroCard__title{font-weight:800;margin-bottom:10px}
.check{margin:0;padding-left:18px;color:var(--muted);line-height:1.75}
.heroCard__note{margin-top:12px;color:var(--muted);font-size:13px;border-top:1px solid var(--line);padding-top:12px}

.section{padding:52px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{font-size:30px;margin:0 0 10px}
.muted{color:var(--muted)}
.small{font-size:12px}

.cards{display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top:18px}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: var(--panel);
  padding:16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.6}
.card--link{cursor:pointer; transition: transform .15s ease}
.card--link:hover{transform: translateY(-2px)}
.link{display:inline-block;margin-top:10px;color:rgba(53,182,255,.95);font-weight:700}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:18px}

.chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.chip{font-size:12px;color:var(--muted);border:1px solid var(--line);padding:4px 10px;border-radius:999px;background:rgba(255,255,255,.03)}

.form{margin-top:18px}
label{display:block;font-size:12px;color:var(--muted);margin-bottom:6px}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus,textarea:focus{border-color: rgba(53,182,255,.5)}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form__actions{display:flex; gap:12px; margin-top:12px; flex-wrap:wrap}

.footer{padding:22px 0; border-top:1px solid var(--line); background: rgba(0,0,0,.15)}
.footer__inner{display:flex; justify-content:space-between; gap:12px; color:var(--muted)}

.glow{
  position:absolute; inset:auto auto auto auto;
  width:520px;height:520px;border-radius:50%;
  filter: blur(60px);
  opacity:.55;
  pointer-events:none;
}
.glow--a{left:-180px; top:50px; background: rgba(53,182,255,.20)}
.glow--b{right:-220px; top:120px; background: rgba(58,107,255,.18)}

@media (max-width: 900px){
  h1{font-size:40px}
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .nav{display:none}
  .hamb{display:block}
}