:root{
  --bg:#0b1220;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --line:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.06);
  --blue:#3b82f6;
  --blue2:#60a5fa;
  --shadow:0 20px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(800px 500px at 80% 20%, rgba(96,165,250,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), #070b14 70%);
}

.wrap{max-width:1100px;margin:0 auto;padding:0 18px}
a{color:inherit}

.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,0.55);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand__mark{
  width:14px; height:14px; border-radius:5px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 10px 25px rgba(59,130,246,0.35);
}
.brand__text{font-weight:700; letter-spacing:0.2px}

.nav{display:flex; gap:16px}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight:600;
  padding:10px 10px;
  border-radius:10px;
}
.nav a:hover{background: rgba(255,255,255,0.06); color:var(--text)}
.nav a.is-active{background: rgba(59,130,246,0.16); color:var(--text)}

.hero{padding:34px 0 10px}
.kicker{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(59,130,246,.12);
  font-size:12px;
  font-weight:700;
  color:rgba(234,240,255,.85);
}
.hero h1{
  margin:12px 0 10px;
  font-size:40px;
  letter-spacing:-.7px;
  line-height:1.1;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
  max-width:65ch;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  align-items:start;
}

.card{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,0.03));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow);
}
.heroCard h2{margin:0 0 12px; font-size:18px}
.list{margin:0; padding-left:18px; color:rgba(234,240,255,.84); line-height:1.7}
.list li{margin:6px 0}

.divider{height:1px; background:var(--line); margin:16px 0}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin: 12px 0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(96,165,250,.35);
  background: linear-gradient(135deg, rgba(59,130,246,.95), rgba(96,165,250,.85));
  color:#061028;
  font-weight:900;
  text-decoration:none;
}
.btn:hover{filter:brightness(1.05)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--full{width:100%; margin-top:12px}

.mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.mini__card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px;
}
.mini__title{font-weight:900; font-size:13px}
.mini__text{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.45}

.cards{padding: 10px 0 34px}
.cards h2{margin:22px 0 12px; font-size:18px}
.cards__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cards__grid h3{margin:0 0 8px; font-size:15px}
.cards__grid p{margin:0; color:var(--muted); line-height:1.55}

.contactBox__row{margin:10px 0}
.strong{font-weight:900}
.footer{padding: 22px 0 30px}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:18px;
  color: rgba(234,240,255,.65);
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .mini{grid-template-columns:1fr}
  .cards__grid{grid-template-columns:1fr}
}

.brand__logo{
  height: 34px;
  width: auto;
  display: block;
}
