:root{
  --bg:#070A12;
  --card:rgba(255,255,255,.05);
  --card2:rgba(255,255,255,.02);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --accent:#ff7a00;
  --shadow:0 10px 40px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:22px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
@media (min-width:768px){.container{padding:0 28px}}

.bg{position:fixed; inset:0; pointer-events:none; overflow:hidden; z-index:-1}
.bg__glow{position:absolute; border-radius:999px; filter:blur(48px)}
.bg__glow--top{left:50%; top:-120px; width:560px; height:560px; transform:translateX(-50%);
  background:radial-gradient(circle at center, rgba(255,255,255,.12), transparent 60%);
}
.bg__glow--br{right:-140px; bottom:-160px; width:560px; height:560px;
  background:radial-gradient(circle at center, rgba(255,122,0,.18), transparent 60%);
}
.bg__glow--bl{left:-160px; bottom:-180px; width:560px; height:560px;
  background:radial-gradient(circle at center, rgba(90,160,255,.12), transparent 60%);
}

.topbar{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--border);
  background:rgba(7,10,18,.70);
  backdrop-filter: blur(10px);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  font-weight:700;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:700; font-size:14px}
.brand__tag{font-size:12px; color:var(--muted2); margin-top:3px}

.nav{display:none; gap:6px}
@media (min-width:900px){.nav{display:flex}}
.nav__link{
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.nav__link:hover{color:var(--text); background:rgba(255,255,255,.06)}
.topbar__actions{display:flex; align-items:center; gap:10px}
.iconbtn{
  display:inline-flex; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; border-radius:999px;
  border:1px solid var(--border); background:rgba(255,255,255,.05);
}
.iconbtn span{display:block; height:2px; width:18px; background:rgba(255,255,255,.80); margin:0 auto; border-radius:2px}
@media (min-width:900px){.iconbtn{display:none}}

.mobileNav{display:none; border-top:1px solid var(--border)}
.mobileNav.open{display:block}
.mobileNav__inner{padding:12px 0; display:flex; gap:8px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:12px 16px;
  border-radius:999px; border:1px solid transparent;
  font-weight:700; font-size:14px; text-decoration:none;
}
.btn--primary{background:#fff; color:#070A12; box-shadow:var(--shadow)}
.btn--primary:hover{opacity:.92}
.btn--ghost{border-color:rgba(255,255,255,.15); background:rgba(255,255,255,.05); color:var(--text)}
.btn--ghost:hover{background:rgba(255,255,255,.10)}
.btn--full{width:100%}

.section{padding:58px 0}
.section--hero{padding:64px 0 50px}
.section__head{margin-bottom:22px}
.section__head h2{margin:10px 0 0; font-size:28px; letter-spacing:-.02em}
.section__head p{margin:10px 0 0; max-width:860px; color:var(--muted); line-height:1.6}

.grid{display:grid; gap:18px}
.grid--2{grid-template-columns:1fr}
.grid--3{grid-template-columns:1fr}
@media(min-width:900px){
  .grid--2{grid-template-columns:1.05fr .95fr}
  .grid--3{grid-template-columns:1.2fr .8fr .8fr}
  .grid__span2{grid-column: span 2}
}

.pillRow{display:flex; flex-wrap:wrap; gap:8px}
.pillRow--tight{margin-top:12px}
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  font-size:12px; font-weight:700; color:rgba(255,255,255,.85)
}
.pill--muted{color:rgba(255,255,255,.75)}

.hero__title{margin:16px 0 0; font-size:40px; line-height:1.05; letter-spacing:-.03em}
@media(min-width:900px){.hero__title{font-size:52px}}
.hero__lead{margin:14px 0 0; color:var(--muted); max-width:640px; line-height:1.7}
.hero__cta{margin-top:18px; display:flex; flex-wrap:wrap; gap:10px}

.stats{margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:12px}
.stat{border:1px solid var(--border); background:rgba(255,255,255,.05); border-radius:14px; padding:12px}
.stat__k{font-size:12px; color:var(--muted2)}
.stat__v{margin-top:4px; font-size:18px; font-weight:800}
.stat__n{margin-top:4px; font-size:12px; color:rgba(255,255,255,.50)}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius2);
  background:linear-gradient(to bottom, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:16px;
  box-shadow:var(--shadow);
}
.card--hero{padding:16px}
.card__head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.card__title{font-size:14px; font-weight:800}
.card__sub{font-size:12px; color:var(--muted2); margin-top:3px}

.imgFrame{
  margin-top:12px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(0,0,0,.35);
}
.imgFrame img{width:100%; height:auto; display:block; object-fit:contain}

.cardGrid{margin-top:12px; display:grid; grid-template-columns:1fr; gap:10px}
@media(min-width:900px){.cardGrid{grid-template-columns:1fr 1fr}}
.miniCard{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  padding:12px;
}
.miniCard__k{font-size:11px; color:var(--muted2)}
.miniCard__t{font-size:13px; font-weight:800}
.miniCard__d{margin-top:6px; font-size:13px; color:var(--muted); line-height:1.5}

.infoBox{
  margin-top:12px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.05);
  padding:12px;
}
.infoBox--alt{background:linear-gradient(to right, rgba(255,255,255,.05), rgba(255,255,255,.02))}
.infoBox__t{font-size:13px; font-weight:800}
.checkList{list-style:none; padding:0; margin:10px 0 0; display:grid; gap:8px}
.check{display:inline-grid; place-items:center; width:18px; height:18px; border-radius:6px; background:rgba(255,255,255,.10); margin-right:8px}
.muted{color:var(--muted); line-height:1.6}
.mt-6{margin-top:18px}

.h3{margin:0 0 10px; font-size:14px; font-weight:900}
.split{display:grid; gap:16px}
@media(min-width:900px){.split{grid-template-columns:1.2fr .8fr}}
.bullets{display:grid; gap:10px; color:var(--muted); font-size:14px; line-height:1.6}
.miniStack{display:grid; gap:10px}
.tagGrid{display:grid; gap:10px; margin-top:10px}
@media(min-width:900px){.tagGrid{grid-template-columns:repeat(4,1fr)}}
.tag{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(7,10,18,.40);
  padding:10px;
  font-size:13px;
  color:rgba(255,255,255,.78);
}
.note{margin-top:10px; font-size:12px; color:rgba(255,255,255,.55)}
.noteBox{
  margin-top:12px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:14px;
  padding:12px;
  color:rgba(255,255,255,.65);
  font-size:13px;
  background:rgba(255,255,255,.03);
}

.kv{margin-top:10px; display:grid; gap:10px}
.kv__row{border:1px solid var(--border); background:rgba(255,255,255,.05); border-radius:14px; padding:10px}
.kv__k{font-size:11px; color:var(--muted2)}
.kv__v{margin-top:4px; font-size:13px; font-weight:800}

.callout{
  margin-top:14px;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background:linear-gradient(to right, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.callout__t{font-size:13px; font-weight:900}
.callout__d{margin-top:8px; font-size:13px; color:var(--muted); line-height:1.6}

.featureList{display:grid; gap:12px}
.feature{border:1px solid var(--border); background:rgba(255,255,255,.05); border-radius:14px; padding:12px}
.feature__t{font-size:13px; font-weight:900}
.feature__d{margin-top:6px; font-size:13px; color:var(--muted); line-height:1.6}

details.faq{border:1px solid var(--border); border-radius:14px; background:rgba(255,255,255,.05); padding:10px; margin-top:10px}
details.faq summary{cursor:pointer; font-weight:800; font-size:13px}
details.faq p{margin:10px 0 0; color:var(--muted); line-height:1.6; font-size:13px}

.contactBox{margin-top:10px; border:1px solid var(--border); border-radius:14px; padding:12px; background:rgba(255,255,255,.05)}
.contactBox__k{font-size:11px; color:var(--muted2)}
.contactBox__v{margin-top:4px; font-size:14px; font-weight:900}
.contactBox__v a{text-decoration:none}
.contactBox__v a:hover{text-decoration:underline}
.contactBox__n{margin-top:6px; font-size:12px; color:rgba(255,255,255,.50)}

.footer{border-top:1px solid var(--border); padding:22px 0}
.footer__inner{display:flex; flex-direction:column; gap:12px}
@media(min-width:900px){.footer__inner{flex-direction:row; align-items:center; justify-content:space-between}}
.footer__left{color:rgba(255,255,255,.60); font-size:13px}
.footer__right{display:flex; flex-wrap:wrap; gap:8px}
.brand__logo{
  height:34px;
  width:auto;
  display:block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}


.brand__stack{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.brand__tagline{
  font-size:11px;
  color:rgba(255,255,255,.65);
  letter-spacing:.2px;
}

.usecaseGrid .card .imgFrame{margin-top:14px}
.usecaseGrid .card .muted{margin-top:8px}

/* --- Reduced vertical spacing before section headings --- */
.section{padding:36px 0;}              /* was ~58px */
.section--hero{padding:56px 0 44px;}   /* keep hero slightly larger */
.section__head{margin-bottom:14px;}    /* tighter heading spacing */
.section__head h2{margin-top:6px;}     /* reduce gap after pill */
