:root{
  --bg:#0a0d14;
  --fg:#eaf0ff;
  --muted:rgba(234,240,255,.62);
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --accent:#7ef3ff;
  --accent2:#b48cff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0; font-family:Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif; background:radial-gradient(1400px 900px at 70% 10%, rgba(126,243,255,.10), rgba(0,0,0,0)), var(--bg); color:var(--fg)}
a{color:inherit; text-decoration:none}

.top{position:sticky; top:0; z-index:5; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 18px; border-bottom:1px solid var(--stroke); background:rgba(10,13,20,.75); backdrop-filter: blur(10px)}
.brand{display:flex; align-items:baseline; gap:10px}
.brand__mark{font-weight:900; letter-spacing:-.8px}
.brand__sub{color:var(--muted); font-size:12px}
.nav{display:flex; align-items:center; gap:14px}
.nav a{color:rgba(234,240,255,.78); font-weight:600}
.nav a:hover{color:rgba(234,240,255,.96)}

.burger{display:none; padding:10px 12px; border-radius:12px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.06); color:var(--fg); font-weight:700}

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

.hero{display:grid; grid-template-columns: 1.25fr .75fr; gap:16px; padding:26px 0 10px}
.kicker{color:rgba(126,243,255,.9); font-weight:700; letter-spacing:.2px; font-size:13px}
.hero h1{margin:10px 0 10px; font-size:44px; line-height:1.05; letter-spacing:-1.6px}
.lead{margin:0; color:rgba(234,240,255,.72); font-size:16px; line-height:1.55; max-width:52ch}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

.btn{display:inline-flex; align-items:center; justify-content:center; padding:12px 14px; border-radius:14px; border:1px solid rgba(255,255,255,.18); background:linear-gradient(180deg, rgba(126,243,255,.18), rgba(126,243,255,.10)); color:var(--fg); font-weight:800}
.btn--ghost{background:rgba(255,255,255,.06)}
.btn--sm{padding:10px 12px; border-radius:12px; font-weight:800}

.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.badge{padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.18); color:rgba(234,240,255,.78); font-size:12px; font-weight:700}

.section{padding:26px 0}
.section__head{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:end; margin-bottom:14px}
.section__head h2{margin:0; font-size:26px; letter-spacing:-.6px}
.section__head p{margin:0; color:rgba(234,240,255,.72); line-height:1.55}

.card{border:1px solid var(--stroke); background:rgba(255,255,255,.05); border-radius:18px; padding:14px}
.card__h{font-weight:900; letter-spacing:-.2px; margin-bottom:8px}
.card--glow{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); box-shadow: 0 20px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(126,243,255,.14) inset}
.card__foot{margin-top:12px}

.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.cards3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}

.list{margin:10px 0 0; padding-left:18px; color:rgba(234,240,255,.78); line-height:1.55}
.list li{margin:6px 0}

.steps{margin:8px 0 0; padding-left:18px; color:rgba(234,240,255,.78); line-height:1.6}
.steps b{color:rgba(234,240,255,.94)}

.pillRow{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.pill{padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.18); color:rgba(234,240,255,.78); font-size:12px; font-weight:700}

.stack{display:grid; grid-template-columns: 1fr; gap:10px}
.stack__item{display:flex; justify-content:space-between; gap:12px; padding:12px 14px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.18)}
.stack__item b{color:rgba(234,240,255,.95)}
.stack__item span{color:rgba(234,240,255,.72)}

.work{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.work__item{border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.18); border-radius:16px; padding:14px; transition: transform .15s ease, border-color .15s ease}
.work__item:hover{transform: translateY(-2px); border-color: rgba(126,243,255,.35)}
.work__title{font-weight:900; letter-spacing:-.2px}
.work__meta{margin-top:6px; color:rgba(234,240,255,.68); font-size:13px}

.note{margin-top:12px; color:rgba(234,240,255,.62)}

.contact{display:flex; gap:10px; flex-wrap:wrap}

.footer{display:flex; justify-content:space-between; gap:14px; padding:18px 0 30px; border-top:1px solid rgba(255,255,255,.08); color:rgba(234,240,255,.56)}
.footer__links{display:flex; gap:12px}

.link{color:var(--accent)}
.link:hover{text-decoration:underline}

.muted{color:var(--muted)}
.small{font-size:12px}

@media (max-width: 900px){
  .hero{grid-template-columns: 1fr;}
  .hero h1{font-size:34px}
  .section__head{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .cards3{grid-template-columns: 1fr}
  .work{grid-template-columns: 1fr}
  .nav{display:none}
  .burger{display:inline-flex}
}

/* Mobile menu (simple) */
.menuOpen .nav{display:flex; position:fixed; inset:58px 14px auto 14px; flex-direction:column; padding:14px; border:1px solid rgba(255,255,255,.10); border-radius:16px; background:rgba(10,13,20,.95); backdrop-filter: blur(12px)}
.menuOpen .nav a{padding:10px 8px}
