:root{
  --bg:#0b0f14;
  --panel:#0f1622;
  --panel2:#0c131d;
  --text:#eaf0ff;
  --muted:#9aa7bd;
  --stroke:rgba(255,255,255,.08);
  --accent:#00c6ff;
  --accent2:#0072ff;
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(0,198,255,.18), transparent 60%),
    radial-gradient(1200px 700px at 85% 20%, rgba(0,114,255,.14), transparent 55%),
    var(--bg);
  color:var(--text);
}

.wrap{max-width:1120px;margin:0 auto;padding:0 20px}

/* ===== Top Bar (Premium) ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,15,20,.85);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0; /* Taller header */
}

/* Bigger logo + subtle glow */
.brand img{
  height:82px;
  width:auto;
  display:block;
  filter: drop-shadow(0 0 14px rgba(0,198,255,.35));
  transition: transform .25s ease, filter .25s ease;
}

.brand img:hover{
  filter: drop-shadow(0 0 22px rgba(0,198,255,.55));
  transform: scale(1.03);
}

/* Nav */
.nav{
  display:flex;
  gap:28px;
  align-items:center;
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  letter-spacing:.3px;
  transition: transform .2s ease, color .2s ease;
}

.nav a:hover{
  color:var(--text);
  transform: translateY(-1px);
}

.nav-cta{
  padding:10px 14px;
  border:1px solid var(--stroke);
  border-radius:999px;
  color:var(--text) !important;
}

.hero{position:relative;padding:78px 0 40px}
.hero-grid{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:28px;
  align-items:stretch;
}

/* Keep nav hidden on mobile like before */
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  .nav{display:none}
  .brand img{height:66px;} /* Slightly smaller logo on mobile */
  .topbar-inner{padding:14px 0;}
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
  background:rgba(255,255,255,.03);
}

h1{
  font-size:52px;
  line-height:1.04;
  margin:16px 0 14px;
  letter-spacing:-.02em;
}

@media (max-width: 560px){
  h1{font-size:38px}
}

p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--stroke);
}

.btn.primary{
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  color:#04101a;
  border:none;
}

.btn.ghost{
  background:rgba(255,255,255,.03);
  color:var(--text);
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
}

.metric{
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:12px;
  background:rgba(255,255,255,.02);
}

.metric-num{font-weight:800;letter-spacing:.02em}
.metric-label{font-size:12px;color:var(--muted);margin-top:6px}

.hero-card .glass,
.contact-cta .glass{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.hero-card h3{margin:0 0 10px;font-size:16px}
.hero-card ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.8}
.divider{height:1px;background:var(--stroke);margin:14px 0}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.bg-accent{
  position:absolute;
  inset:auto 0 -120px 0;
  height:220px;
  background: radial-gradient(600px 180px at 50% 30%, rgba(0,198,255,.16), transparent 70%);
  pointer-events:none;
}

.section{padding:64px 0}
.section-alt{
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}

h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.01em;
}

.lead{margin-bottom:22px}

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

@media (max-width: 960px){
  .cards{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--stroke);
  background:rgba(15,22,34,.55);
  border-radius:var(--radius);
  padding:20px;
}

.card h3{margin:10px 0 8px}
.card p{font-size:15px}

.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  font-size:12px;
  font-weight:700;
  color:var(--text);
  background:rgba(255,255,255,.03);
}

.contact{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
  align-items:start;
}

@media (max-width: 960px){
  .contact{grid-template-columns:1fr}
}

.contact-box{
  border:1px solid var(--stroke);
  background:rgba(15,22,34,.55);
  border-radius:var(--radius);
  padding:18px;
  margin-top:14px;
}

.contact-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--stroke);
}

.contact-row:last-child{border-bottom:none}

.label{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.value{
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}

.footer{
  border-top:1px solid var(--stroke);
  padding:22px 0;
  background:rgba(0,0,0,.18);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
