:root{
  --bg:#070B18;
  --bg2:#0A0F1F;
  --panel: rgba(10,15,31,.62);
  --panel2: rgba(8,12,26,.55);
  --text:#E9ECF7;
  --muted:rgba(233,236,247,.72);
  --faint:rgba(233,236,247,.52);
  --line:rgba(233,236,247,.10);
  --line2:rgba(185,94,245,.26);
  --accent:#B95EF5;
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --r: 18px;
  --r2: 24px;
  --max: 1480px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:
    radial-gradient(1100px 600px at 12% 4%, rgba(185,94,245,.18), transparent 58%),
    radial-gradient(1200px 700px at 88% 30%, rgba(80,150,255,.10), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.full{width:100%}

/* HEADER */
.headerWrap{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,11,24,.85), rgba(7,11,24,.55));
  border-bottom: 1px solid rgba(233,236,247,.08);
  overflow: visible;
}
header{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
  overflow: visible;
}
.logo{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
  min-width: 230px;
}
.mark{
  width:38px; height:38px; border-radius:14px;
  background: linear-gradient(135deg, rgba(185,94,245,.95), rgba(185,94,245,.30));
  box-shadow: 0 14px 40px rgba(185,94,245,.22);
  position:relative; overflow:hidden;
}
.mark:before{
  content:""; position:absolute; inset:-40%;
  background: radial-gradient(circle at 28% 28%, rgba(255,255,255,.55), transparent 48%);
  transform: rotate(25deg);
  opacity:.35;
}
.brand{display:flex; flex-direction:column; line-height:1.1}
.brand small{
  color:var(--faint);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
}
.brand strong{font-size:15px; font-weight:780}

@media (max-width: 980px){
  .logo{min-width:auto}
}

/* =========================
   PRIMARY NAV (DROPDOWNS)
========================= */
nav.primary{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  overflow: visible;
}

@media (max-width: 980px){
  nav.primary{justify-content:flex-start}
}

nav.primary .nav-item{
  position: relative;
  display: inline-flex;
}

nav.primary .nav-top{
  appearance:none;
  -webkit-appearance:none;
  border:1px solid rgba(233,236,247,.12);
  background: rgba(7,11,24,.35);
  padding:9px 12px;
  border-radius:999px;
  color:rgba(233,236,247,.82);
  text-decoration:none;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  user-select:none;
  line-height:1;
}

nav.primary .nav-top::-moz-focus-inner{border:0}

nav.primary .nav-top:hover{
  border-color: rgba(185,94,245,.30);
  color: rgba(233,236,247,1);
}

nav.primary .nav-top.primary{
  border-color: rgba(185,94,245,.45);
  background: linear-gradient(135deg, rgba(185,94,245,.18), rgba(185,94,245,.06));
  color: var(--text);
}

nav.primary .caret{opacity:.85;font-size:12px}

nav.primary .dropdown{
  display:none;
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(233,236,247,.12);
  background: rgba(7,11,24,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  z-index: 1000;
}

nav.primary .nav-item:hover > .dropdown,
nav.primary .nav-item:focus-within > .dropdown,
nav.primary .nav-item.open > .dropdown{
  display:block;
}

nav.primary .dropdown a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  text-decoration:none;
  font-size:13px;
  color: rgba(233,236,247,.86);
  white-space: nowrap;
  border:1px solid transparent;
}

nav.primary .dropdown a:hover{
  background: rgba(185,94,245,.10);
  border-color: rgba(185,94,245,.18);
  color: rgba(233,236,247,1);
}

/* PAGE */
.panel{
  border:1px solid rgba(233,236,247,.10);
  background: linear-gradient(180deg, rgba(13,20,48,.65), rgba(11,17,42,.52));
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.page{padding:26px 0 44px}
.hero{padding:34px 0 10px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color:rgba(233,236,247,.60);
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent);box-shadow:0 0 0 6px rgba(185,94,245,.14)}
h1{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.06;
  letter-spacing:-.02em;
}
@media (max-width: 520px){ h1{font-size:38px} }
.accent{color:var(--accent)}
.sub{
  margin:0;
  color:rgba(233,236,247,.84);
  font-size:17px;
  line-height:1.6;
  max-width: 90ch;
}
.block{
  margin-top:14px;
  border:1px solid rgba(233,236,247,.10);
  background: rgba(7,11,24,.32);
  border-radius: var(--r2);
  padding:22px;
}
.block h2{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(233,236,247,.88);
}
.grid2{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width: 980px){ .grid2{grid-template-columns:1fr} }
.feature{
  border:1px solid rgba(233,236,247,.10);
  background: rgba(7,11,24,.40);
  border-radius: var(--r);
  padding:16px 16px 14px;
}
.feature h3{margin:0 0 6px; font-size:14px}
.feature p{margin:0; color:rgba(233,236,247,.70); font-size:13px; line-height:1.6}
.feature ul{margin:10px 0 0; padding-left:16px; color:rgba(233,236,247,.70); line-height:1.6; font-size:13px}
.feature li{margin:4px 0}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(233,236,247,.10);
  background: rgba(7,11,24,.40);
  text-decoration:none;
  color:rgba(233,236,247,.82);
  font-size:13px;
}
.btn:hover{border-color:var(--line2); color:var(--text)}
.btn.primary{
  border-color: rgba(185,94,245,.42);
  background: linear-gradient(135deg, rgba(185,94,245,.18), rgba(185,94,245,.06));
}
.footer{
  margin-top:18px;
  padding:18px 0 40px;
  color:rgba(233,236,247,.55);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.mutedLink{color:rgba(233,236,247,.72); text-decoration:none}
.mutedLink:hover{color:var(--text)}
.breadcrumbs{
  color:rgba(233,236,247,.55);
  font-size:12px;
  margin-top:10px;
}
.breadcrumbs a{color:rgba(233,236,247,.72); text-decoration:none}
.breadcrumbs a:hover{color:var(--text)}
