:root{
  --bg:#0b1020;
  --panel:#101a33;
  --card:rgba(255,255,255,.06);
  --text:#eef3ff;
  --muted:#b8c3ff;
  --line:rgba(255,255,255,.12);
  --brand:#4da3ff;
  --brand2:#7c4dff;
  --shadow:0 14px 34px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(77,163,255,.25), transparent 55%),
    radial-gradient(900px 600px at 85% 10%, rgba(124,77,255,.22), transparent 60%),
    var(--bg);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:1150px;margin:0 auto;padding:0 18px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,16,32,.65);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.2px;
}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow: var(--shadow);
}
.menu{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
}
.menu a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{color:var(--text); border-color:var(--line); background:rgba(255,255,255,.05)}
.menu a.active{color:var(--text); border-color:var(--line); background:rgba(255,255,255,.06)}

.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:800;
  font-size:14px;
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow: var(--shadow);
}

/* Hero */
.hero{padding:56px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
}
.panel{
  background: rgba(16,26,51,.72);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-.7px;
}
h2{margin:0 0 10px;font-size:22px;letter-spacing:-.2px}
h3{margin:0 0 8px;font-size:16px}
p{margin:0 0 12px;color:rgba(238,243,255,.86)}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.badge{
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background: rgba(255,255,255,.04);
}

.hr{height:1px;background:var(--line);margin:16px 0}

/* Cards */
.section{padding:18px 0}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:12px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.small{font-size:12px;color:var(--muted)}
.kicker{font-size:12px;color:var(--muted);font-weight:900;text-transform:uppercase;letter-spacing:.12em}

.list{margin:10px 0 0; padding:0 0 0 18px; color:rgba(238,243,255,.82)}
.list li{margin:6px 0}

/* Form */
label{font-size:12px;color:var(--muted);font-weight:800}
input, textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}

/* Footer */
.footer{
  padding:28px 0 42px;
  border-top:1px solid var(--line);
  margin-top:18px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
.footer-links{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
}
.footer-links a{
  color:var(--muted);
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
}
.footer-links a:hover{color:var(--text); background:rgba(255,255,255,.05)}

@media (max-width: 920px){
  .hero-grid,.grid3,.grid2,.footer-grid,.row{grid-template-columns:1fr}
  h1{font-size:36px}
  .actions{display:none}
  .footer-links{justify-content:flex-start}
}
