:root{
  --bg:#0b0f17;
  --panel:#0f1626;
  --panel2:rgba(255,255,255,.03);
  --text:#e8eefc;
  --muted:#b7c2dd;
  --line:rgba(255,255,255,.08);
  --accent:#7aa2ff;
  --accent2:#4de3c1;
  --shadow: 0 14px 36px rgba(0,0,0,.35);
  --radius: 18px;
}

*{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;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1100px, 92%); margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:10;
  background:rgba(11,15,23,.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
  flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:12px;
  color:var(--text);
}
.logo{
  width:40px; height:40px; border-radius:14px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  display:grid; place-items:center;
  font-weight:900;
  color:#07101a;
  letter-spacing:.3px;
}
.brand-text{display:flex; flex-direction:column; gap:1px}
.brand-name{font-weight:900; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted)}

.nav{display:flex; gap:14px; flex-wrap:wrap}
.nav a{
  color:var(--text);
  opacity:.9;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{
  opacity:1;
  border-color:var(--line);
  background:rgba(255,255,255,.02);
  text-decoration:none;
}

.hero{
  padding:66px 0 44px;
  background:
    radial-gradient(900px 450px at 20% -10%, rgba(122,162,255,.20), transparent 62%),
    radial-gradient(700px 380px at 92% 12%, rgba(77,227,193,.14), transparent 58%);
  border-bottom:1px solid var(--line);
}
.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--muted);
  font-size:12px;
  margin:0 0 12px;
}
h1{
  font-size:clamp(32px, 4.4vw, 56px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.5px;
}
h2{
  font-size:26px;
  margin:0 0 12px;
}
h3{margin:0 0 8px}
.lead{
  font-size:18px;
  color:var(--muted);
  max-width:75ch;
  margin:0 0 16px;
}
.subnote{font-size:13px; color:var(--muted); margin-top:10px}
.section{padding:56px 0}
.section.alt{
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.two-col{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 900px){
  .two-col{grid-template-columns:1fr}
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

.card, .feature, .contact{
  border:1px solid var(--line);
  background:var(--panel2);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.feature p{color:var(--muted); margin:0}
.muted{color:var(--muted)}
.small{font-size:13px}

.list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.list li{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding-bottom:10px;
  border-bottom:1px dashed rgba(255,255,255,.10);
}
.list li:last-child{border-bottom:none; padding-bottom:0}
.k{color:var(--muted); font-size:13px}
.v{font-weight:650}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text);
  text-decoration:none;
}
.btn:hover{background:rgba(255,255,255,.04); text-decoration:none}
.btn.primary{
  border-color:rgba(122,162,255,.35);
  background:linear-gradient(135deg, rgba(122,162,255,.26), rgba(77,227,193,.12));
}

.contact{margin-top:14px}
.contact-row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contact-row:last-child{border-bottom:none}

.prose h2{margin-top:22px}
.prose p{color:var(--muted)}
.bullets{
  margin:10px 0 18px 18px;
  color:var(--muted);
}
.page-title{
  font-size:40px;
  letter-spacing:-.5px;
  margin:0 0 8px;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:22px 0;
}
.footer-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer-links{display:flex; gap:14px}
.footer-links a{color:var(--muted)}
