
:root{
  --bg:#0b0613;
  --card:#120a22;
  --muted:#b9a7d6;
  --text:#f6f2ff;
  --brand:#8b5cf6;
  --brand2:#a78bfa;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --max: 1100px;
}
*{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(900px 500px at 20% 10%, rgba(139,92,246,.35), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(167,139,250,.25), transparent 60%),
    radial-gradient(1000px 700px at 50% 110%, rgba(139,92,246,.20), transparent 55%),
    linear-gradient(180deg, #07030d 0%, #0b0613 45%, #07030d 100%);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.nav{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background: rgba(11, 6, 19, .55);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:700; letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 30px rgba(139,92,246,.35);
  position:relative;
}
.logo:after{
  content:"";
  position:absolute; inset:8px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.35);
}
.nav-links{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.pill{
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
}
.pill:hover{background: rgba(255,255,255,.06)}
.cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(139,92,246,.45);
  background: linear-gradient(135deg, rgba(139,92,246,.92), rgba(167,139,250,.92));
  color:#0b0613;
  font-weight:700;
  box-shadow: 0 18px 40px rgba(139,92,246,.25);
}
.cta:hover{transform: translateY(-1px)}
.hero{padding:72px 0 36px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} }
.h-title{
  font-size: clamp(32px, 4vw, 54px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.8px;
}
.h-sub{
  margin:0 0 22px;
  color:var(--muted);
  max-width: 62ch;
  font-size: 1.05rem;
}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 0}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: .95rem;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-pad{padding:18px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; color: var(--muted);
  margin-bottom:10px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(139,92,246,.15);
}
.img{
  width:100%; height: 240px;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.02);
}
.section{padding:18px 0 52px}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 900px){ .grid-3{grid-template-columns:1fr} }
.h3{margin:0 0 8px; font-size: 1.12rem}
.p{margin:0; color: var(--muted)}
.ul{margin:10px 0 0; padding-left:18px; color: var(--muted)}
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color: var(--muted);
}
.small{font-size:.92rem}
hr.sep{border:none; border-top:1px solid var(--line); margin:16px 0}
.doc{padding:42px 0 52px}
.doc h1{margin:0 0 10px; font-size: 2rem}
.doc h2{margin:22px 0 8px; font-size: 1.25rem}
.doc p, .doc li{color: var(--muted)}
.doc a{color: var(--brand2); text-decoration:underline}
