:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --text:#eaf1ff;
  --muted:#b9c7e6;
  --brand:#2d7cff;
  --brand2:#28d6ff;
  --line:rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(45,124,255,.25), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(40,214,255,.18), transparent 60%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.grid{display:grid; gap:18px}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.70);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px;}
.brand img{width:40px; height:40px; border-radius:10px; background:#fff; padding:4px}
.brand span{display:flex; flex-direction:column; line-height:1.1}
.brand small{font-weight:650; color:var(--muted)}

.navlinks{display:flex; align-items:center; gap:14px}
.navlinks a{padding:8px 10px; border-radius:12px; color:var(--muted)}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.cta{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid rgba(45,124,255,.40);
  background: linear-gradient(135deg, rgba(45,124,255,.95), rgba(40,214,255,.75));
  color:#031026;
  font-weight:900;
  box-shadow: 0 12px 24px rgba(45,124,255,.22);
}
.cta:hover{filter:brightness(1.06)}
.cta.secondary{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}

.menuBtn{
  display:none;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
}

.hero{padding:72px 0 38px}
.heroWrap{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:22px;
  align-items:stretch;
}
.heroCard{padding:26px}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  color:var(--muted);
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  font-weight:800;
  width:fit-content;
}
h1{font-size:42px; line-height:1.1; margin:14px 0 12px}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.badge{
  border:1px solid var(--line);
  color:var(--muted);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  padding:8px 10px;
  font-weight:800;
}

.heroSide{padding:22px; display:grid; gap:14px}
.heroSide .stat{padding:18px}
.stat b{font-size:18px}
.stat p{margin:6px 0 0; color:var(--muted)}

.h2{font-size:28px; margin:0 0 12px}
.h3{font-size:20px; margin:0 0 8px}
.p{color:var(--muted); margin:0}

.cols-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.cols-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.cols-4{grid-template-columns:repeat(4, minmax(0,1fr))}

@media (max-width: 960px){ .heroWrap{grid-template-columns:1fr} }
@media (max-width: 820px){
  .navlinks{display:none}
  .menuBtn{display:inline-flex}
  .mobileNav{display:none; padding:0 0 14px;}
  .mobileNav a{display:block; padding:10px 12px; border-radius:14px; color:var(--muted)}
  .mobileNav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
  .cols-3,.cols-4,.cols-2{grid-template-columns:1fr}
  h1{font-size:36px}
}

.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  color:var(--muted);
}
.list li{
  padding-left:22px;
  position:relative;
  margin:8px 0;
}
.list li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:var(--brand2);
  font-weight:1000;
}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:18px;}
@media (max-width: 820px){.split{grid-template-columns:1fr}}

.form{padding:22px}
.field{display:grid; gap:6px; margin-bottom:12px}
label{font-weight:900}
input, textarea, select{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.help{color:var(--muted); font-size:14px}
.notice{
  border:1px dashed rgba(40,214,255,.45);
  background: rgba(40,214,255,.07);
  padding:14px;
  border-radius: var(--radius);
  color: var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  padding:32px 0;
  color:var(--muted);
}
.footer a{color:var(--text)}
.footerGrid{display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:18px;}
@media (max-width: 820px){ .footerGrid{grid-template-columns:1fr} }

.breadcrumbs{color:var(--muted); font-weight:800; font-size:14px}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:var(--text)}
