:root{
  --bg:#0b1220;
  --bg2:#111a2e;
  --text:#e8edf7;
  --muted:#9fb0cc;
  --line:#24314d;
  --card:#10192b;
  --primary:#7db3ff;
  --primary2:#4d8dff;
  --white:#fff;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),#0f1728 45%, #111827 100%);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1120px,92%);margin:0 auto}
.narrow{width:min(720px,92%);margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(11,18,32,.75);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  min-height:72px;gap:24px;
}
.brand{font-weight:700;color:var(--white);letter-spacing:.02em}
.nav nav{display:flex;gap:18px;flex-wrap:wrap}
.nav nav a{color:var(--muted)}
.hero{padding:88px 0 64px}
.eyebrow{
  text-transform:uppercase;letter-spacing:.14em;font-size:.78rem;color:var(--primary)
}
h1{font-size:clamp(2rem,4vw,4rem);line-height:1.1;margin:.2em 0 .4em}
h2{font-size:clamp(1.4rem,2.5vw,2.2rem)}
h3{font-size:1.15rem}
.lead{font-size:1.1rem;max-width:780px;color:#d7e2f7}
.section{padding:56px 0}
.section-muted{
  background:rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
  background:rgba(16,25,43,.92);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:12px;font-weight:600;
  border:1px solid transparent;text-decoration:none
}
.btn:hover{text-decoration:none}
.btn-primary{background:linear-gradient(180deg,var(--primary),var(--primary2));color:#08111f}
.btn-secondary{border-color:rgba(255,255,255,.12);color:var(--white)}
.stats{display:grid;gap:14px}
.stat{
  display:flex;justify-content:space-between;gap:16px;
  padding:16px 18px;border:1px solid rgba(255,255,255,.06);
  border-radius:14px;background:rgba(255,255,255,.02)
}
.stat strong{font-size:1.4rem}
.prose{max-width:820px}
.prose ul{padding-left:20px}
.prose article{
  margin:24px 0;padding:20px;border:1px solid rgba(255,255,255,.06);
  border-radius:16px;background:rgba(255,255,255,.02)
}
.fake-form{display:grid;gap:12px;margin:20px 0}
.fake-form label{font-size:.95rem;color:var(--muted)}
.fake-form input{
  width:100%;padding:12px 14px;border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#0b1425;color:#cfe0ff
}
.fake-form button:disabled,.fake-form input:disabled{opacity:.7;cursor:not-allowed}
.muted{color:var(--muted)}
.site-footer{
  margin-top:48px;padding:28px 0;
  border-top:1px solid rgba(255,255,255,.06)
}
.footer-grid{
  display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap
}
.footer-grid a{margin-right:14px}
@media (max-width:900px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .nav{flex-direction:column;align-items:flex-start;padding:12px 0}
}
