:root{
  --bg:#0b1020;
  --panel:#111a33;
  --panel2:#0e1630;
  --text:#e8ecff;
  --muted:#b8c1ff;
  --line:rgba(255,255,255,.10);
  --accent:#6aa6ff;
  --accent2:#8cffd6;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1040px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(106,166,255,.25), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(140,255,214,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding: 0 20px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.65);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{font-weight:800; letter-spacing:.3px}
.nav{display:flex; gap:16px; color:var(--muted); font-size:14px}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.hero{padding:72px 0 46px}
.hero-inner{max-width: 820px}
h1{font-size: clamp(34px, 5vw, 56px); line-height:1.08; margin:0 0 14px}
h2{font-size: clamp(24px, 3vw, 32px); margin:0 0 18px}
h3{margin:0 0 10px}
.lede{color:var(--muted); font-size:18px; margin:0 0 18px}
.micro{color:rgba(232,236,255,.75); margin:14px 0 0; font-size:14px}

.section{padding:56px 0}
.section.alt{background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.card + .card{margin-top:18px}

.card-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-bottom:10px;
}

.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  border:1px solid rgba(106,166,255,.35);
  color: rgba(232,236,255,.9);
  background: rgba(106,166,255,.10);
}

.bullets{margin:12px 0 0; padding-left:18px; color:rgba(232,236,255,.88)}
.bullets li{margin:6px 0}

.links{display:flex; gap:14px; margin-top:14px; flex-wrap:wrap}
.textlink{color:var(--accent)}
.textlink:hover{text-decoration:underline}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:18px;
}

.cta{display:flex; gap:12px; flex-wrap:wrap}
.button{
  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);
}
.button:hover{background: rgba(255,255,255,.08)}
.button.primary{
  border-color: rgba(106,166,255,.55);
  background: rgba(106,166,255,.18);
}

.note{color:rgba(232,236,255,.68); font-size:13px; margin-top:12px}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  color:rgba(232,236,255,.70);
  font-size:14px;
}

@media (max-width: 860px){
  .grid{grid-template-columns: 1fr}
  .nav{display:none} /* keep V1 simple on mobile */
}
