:root{
  --bg:#070b16;
  --panel:#0c1630;
  --panel2:#0f1d3d;
  --text:#eef2ff;
  --muted:#a7b6da;
  --brand:#1f6fff;
  --brand2:#22c55e;
  --border:rgba(255,255,255,.12);
  --shadow: 0 16px 40px rgba(0,0,0,.38);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  line-height:1.55;
  background:
    radial-gradient(1050px 520px at 15% -5%, rgba(31,111,255,.34), transparent 60%),
    radial-gradient(860px 520px at 95% 10%, rgba(34,197,94,.18), transparent 60%),
    linear-gradient(180deg, #070b16 0%, #0a1022 35%, #070b16 100%);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}
.small{font-size:13px; color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,22,.72);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px;
}
.brandmark{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(31,111,255,1), rgba(31,111,255,.22));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 28px rgba(31,111,255,.18);
}
.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}
.navlinks a:hover{color:var(--text)}
.navcta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight:900; font-size:14px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn.primary{
  border-color: rgba(31,111,255,.55);
  background: linear-gradient(135deg, rgba(31,111,255,1), rgba(31,111,255,.24));
  box-shadow: 0 16px 34px rgba(31,111,255,.18);
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(31,111,255,1), rgba(31,111,255,.34))}
.btn.ghost{background: rgba(255,255,255,.05)}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
}
.mobilepanel{
  display:none;
  padding:10px 0 14px;
  border-top:1px solid var(--border);
}
.mobilepanel a{display:block; padding:10px 0; color:var(--muted); font-weight:900}
.mobilepanel a:hover{color:var(--text)}

@media (max-width: 940px){
  .navlinks{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
}

.card{
  background: rgba(12,22,48,.76);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{padding:64px 0 22px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 940px){
  .heroGrid{grid-template-columns:1fr}
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.dot{width:8px; height:8px; border-radius:999px; background:var(--brand2)}
h1{margin:14px 0 10px; font-size:46px; line-height:1.06}
@media (max-width: 520px){h1{font-size:36px}}
.sub{color:var(--muted); font-size:16px; max-width:64ch}
.heroLeft{padding:28px}
.heroRight{padding:22px}
.ctaRow{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:900;
  font-size:12px;
}

.stat{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  margin-bottom:12px;
}
.stat b{display:block; font-size:16px; margin-bottom:4px}
.stat span{color:var(--muted); font-weight:800; font-size:13px}

.section{padding:34px 0}
.section h2{margin:0 0 10px; font-size:28px}
.section p{margin:0; color:var(--muted)}
.grid3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); margin-top:16px}
.grid2{display:grid; gap:14px; grid-template-columns: repeat(2, 1fr); margin-top:16px}
@media (max-width: 940px){
  .grid3,.grid2{grid-template-columns:1fr}
}
.tile{padding:18px}
.pill{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--muted); font-weight:900; font-size:12px;
}
.tile h3{margin:10px 0 8px; font-size:18px}
.list{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.list li{margin:6px 0}

.banner{
  margin-top:18px;
  padding:18px;
  border-radius: 18px;
  border:1px solid rgba(31,111,255,.35);
  background: linear-gradient(135deg, rgba(31,111,255,.14), rgba(255,255,255,.03));
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.form label{
  display:block;
  margin:10px 0 6px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}
.form input,.form textarea,.form select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,22,.55);
  color:var(--text);
  outline:none;
}
.form textarea{min-height:120px; resize:vertical}
.form .row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media(max-width: 720px){.form .row{grid-template-columns:1fr}}

.footer{
  padding:28px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
.footerGrid{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
@media(max-width: 940px){.footerGrid{grid-template-columns:1fr}}
.footer a{color:var(--muted); font-weight:800}
.footer a:hover{color:var(--text)}
hr.sep{border:0; border-top:1px solid var(--border); margin:18px 0}


}


.footer img{ height:34px; }
}


.footer img{ height:36px; }
}




.footer img{
  height:28px;
  width:auto;
}

/* Slightly scale down on very small devices */
@media (max-width: 480px){
  .brand img{ height:24px; }
  .footer img{ height:24px; }
}


.footer img{ height:60px; }
}


/* v1.10: premium scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}


/* v1.11: full logo in header + footer */
.brand img{
  height:44px;
  width:auto;
  display:block;
}

.footer img{
  height:54px;
  width:auto;
  display:block;
}

@media (max-width: 820px){
  .brand img{ height:40px; }
  .footer img{ height:48px; }
}

@media (max-width: 480px){
  .brand img{ height:34px; }
  .footer img{ height:40px; }
}


/* v1.16b: case study card hover elevation */
.case-card{
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .18);
}
@media (prefers-reduced-motion: reduce){
  .case-card{ transition:none; }
  .case-card:hover{ transform:none; }
}
