:root{
  --bg:#070b14;
  --panel:#0f1b33;
  --card:#101f3d;
  --text:#eef3ff;
  --muted:#b8c4e6;
  --accent:#3b82f6;
  --accent2:#22c55e;
  --warn:#f59e0b;
  --border: rgba(255,255,255,.12);
  --shadow: 0 12px 34px rgba(0,0,0,.42);
  --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(950px 420px at 15% 10%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(850px 520px at 85% 15%, rgba(34,197,94,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), #05070e 70%);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px;}
header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center; font-weight:900; letter-spacing:.2px}
.logo{
  width:36px; height:36px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent), #8b5cf6);
  display:grid; place-items:center; box-shadow:var(--shadow);
  font-weight:900;
}
.links{display:flex; gap:8px; flex-wrap:wrap; align-items:center}
.links a.navlink{
  color:var(--muted); font-weight:650;
  padding:8px 10px; border-radius:12px;
}
.links a.navlink:hover{background: rgba(255,255,255,.06); color:var(--text);}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  font-weight:850;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.btn.primary{background: linear-gradient(135deg, var(--accent), #60a5fa); border:none}
.btn.green{background: linear-gradient(135deg, var(--accent2), #16a34a); border:none}
.btn.ghost{background: transparent}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}

.hero{padding:58px 0 26px;}
.grid{display:grid; gap:16px;}
.heroGrid{grid-template-columns: 1.25fr .75fr;}
@media (max-width: 920px){ .heroGrid{grid-template-columns:1fr} }

.panel{
  border:1px solid var(--border);
  background: rgba(15,27,51,.56);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroCard{padding:26px;}
.kicker{color:var(--muted); font-weight:750; letter-spacing:.22px}
h1{margin:10px 0 10px; font-size:44px; line-height:1.06}
@media (max-width: 540px){ h1{font-size:36px;} }
.sub{margin:0 0 16px; color:var(--muted); font-size:16px}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.section{padding:26px 0}
.sectionTitle{
  display:flex; align-items:end; justify-content:space-between;
  gap:12px; margin-bottom:14px;
}
.sectionTitle h2{margin:0; font-size:26px}
.small{font-size:13px; color:var(--muted)}
.cards{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 920px){ .cards{grid-template-columns:1fr} }
.card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.card b{display:block; margin-bottom:6px}
.twoCol{display:grid; gap:14px; grid-template-columns: 1fr 1fr}
@media (max-width: 920px){ .twoCol{grid-template-columns:1fr} }

form label{display:block; font-size:13px; color:var(--muted); margin:10px 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
textarea{min-height:96px; resize:vertical}
.formRow{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 700px){ .formRow{grid-template-columns:1fr} }
.footer{
  padding:26px 0 40px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
hr.sep{
  border:0; height:1px; background: var(--border);
  margin: 14px 0;
}
.notice{
  padding:12px 14px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.03);
}
