:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:#0E1630;
  --text:#EAF0FF;
  --muted:#A8B3D4;
  --border:rgba(255,255,255,.10);
  --accent:#7C5CFF;
  --accent2:#27C3FF;
  --shadow:0 20px 60px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(124,92,255,.35), transparent 55%),
              radial-gradient(900px 500px at 85% 10%, rgba(39,195,255,.28), transparent 55%),
              linear-gradient(180deg,var(--bg),var(--bg2));
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
.container{max-width:1100px; margin:0 auto; padding:0 22px}

.site-header{
  position:sticky; top:0; z-index:20;
  background: rgba(7,10,18,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{display:flex; align-items:center; gap:10px}
.brand-mark{display:grid; place-items:center; width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color:#0b1020; font-weight:900;}
.brand-name{font-weight:700; letter-spacing:.2px}
.nav{display:flex; gap:14px; flex-wrap:wrap}
.nav a{color:var(--muted); padding:8px 10px; border-radius:10px}
.nav a.active,.nav a:hover{color:var(--text); background: rgba(255,255,255,.06)}

.hero{padding:72px 0 34px}
.hero-slim{padding:54px 0 22px}
.hero-inner{display:grid; grid-template-columns: 1.25fr .9fr; gap:28px; align-items:stretch}
@media (max-width: 900px){.hero-inner{grid-template-columns: 1fr}}
.eyebrow{display:inline-block; color:var(--muted); letter-spacing:.14em; text-transform:uppercase; font-size:12px; margin:0 0 10px}
.hero h1{font-size:44px; line-height:1.05; margin:0 0 14px}
@media (max-width: 520px){.hero h1{font-size:34px}}
.lead{color:var(--muted); font-size:18px; line-height:1.6; margin:0 0 18px}
.subtle{color:var(--muted); font-size:13px; line-height:1.5}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600;
}
.btn.primary{border:0; background: linear-gradient(135deg,var(--accent),var(--accent2)); color:#07101A}

.section{padding:46px 0}
.section-alt{background: rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section h2{margin:0 0 16px; font-size:26px}
.mt-32{margin-top:32px}

.card{
  background: rgba(14,22,48,.72);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.grid-3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns: repeat(2,1fr); gap:14px}
@media (max-width: 900px){.grid-3,.grid-2{grid-template-columns:1fr}}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.hero-card{border:1px solid var(--border); border-radius:18px; background: rgba(14,22,48,.65); box-shadow: var(--shadow); padding:16px}
.hero-card-top{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px}
.pill{font-size:12px; color:var(--muted); border:1px solid var(--border); padding:6px 10px; border-radius:999px; background: rgba(255,255,255,.04)}
.metric{padding:12px; border-radius:14px; border:1px solid var(--border); background: rgba(255,255,255,.03)}
.metric + .metric{margin-top:10px}
.metric-k{color:var(--muted); font-size:12px; letter-spacing:.08em; text-transform:uppercase}
.metric-v{font-weight:700; margin-top:6px}

.list{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}

.callout{border-left:3px solid var(--accent2)}

.site-footer{padding:22px 0; border-top:1px solid var(--border); background: rgba(7,10,18,.60); backdrop-filter: blur(10px)}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted)}

.prose h1{margin:0 0 10px; font-size:34px}
.prose h2{margin:22px 0 10px; font-size:20px}
.prose p,.prose li{color:var(--muted); line-height:1.7}
.prose ul{padding-left:18px}
