:root{
  --bg:#0b1020;
  --card:#121a33;
  --text:#eaf0ff;
  --muted:#a9b3d6;
  --line:#22305c;
  --accent:#8ecaff;
  --accent2:#ffd166;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 20% 0%, #182354 0%, var(--bg) 55%);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px; margin:0 auto; padding:0 18px}
.nav{
  position:sticky; top:0;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,.7);
  border-bottom:1px solid rgba(34,48,92,.7);
  z-index: 10;
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.brand img{
  .brand img{
  width:56px;
  height: auto;
  display :block;
  border-radius:14px;
  background:#0f1630;
  padding:6px;
}
 border-radius:10px;
  background: #0f1630; border:1px solid rgba(34,48,92,.8);
}
.brand .name{font-size:1.05rem}
.brand .tag{display:block; font-weight:600; color:var(--muted); font-size:.85rem; margin-top:-2px}

.menu{display:flex; gap:14px; align-items:center}
.menu a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--text);
  opacity:.9;
}
.menu a.active, .menu a:hover{
  background: rgba(18,26,51,.7);
  border:1px solid rgba(34,48,92,.6);
  text-decoration:none;
}

.hero{
  padding:48px 0 22px;
}
.hero-grid{
  display:grid; gap:18px;
  grid-template-columns: 1.2fr .8fr;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
.h-card{
  background: linear-gradient(180deg, rgba(18,26,51,.9), rgba(18,26,51,.55));
  border:1px solid rgba(34,48,92,.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}
.h-title{
  font-size:2.3rem;
  line-height:1.1;
  margin:0 0 8px;
}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(142,202,255,.12);
  border:1px solid rgba(142,202,255,.25);
  color: var(--accent);
  font-weight:700;
  font-size:.85rem;
}
.sub{
  color: var(--muted);
  margin:10px 0 16px;
  max-width: 60ch;
}
.cta{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(34,48,92,.7);
  background: rgba(18,26,51,.7);
  color: var(--text);
  font-weight:800;
  text-decoration:none;
}
.btn.primary{
  background: rgba(142,202,255,.18);
  border-color: rgba(142,202,255,.35);
}
.btn:hover{transform: translateY(-1px); text-decoration:none}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 16px 0 30px;
}
@media (max-width: 900px){ .grid{grid-template-columns:1fr} }

.card{
  background: rgba(18,26,51,.75);
  border:1px solid rgba(34,48,92,.7);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 6px; color: var(--accent2)}
.card p{margin:0; color: var(--muted)}
.small{font-size:.92rem}
.section-title{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:22px;
}
.section-title h2{margin:0; font-size:1.2rem}
.chip-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(34,48,92,.7);
  background: rgba(18,26,51,.55);
  color: var(--text);
  font-weight:700;
  font-size:.88rem;
}
.footer{
  margin-top:34px;
  border-top:1px solid rgba(34,48,92,.7);
  padding:18px 0 26px;
  color: var(--muted);
  font-size:.92rem;
}
.footer a{color: var(--muted)}
.kicker{color: var(--accent); font-weight:800}
