:root{
  --bg:#020617;
  --panel:rgba(15,23,42,.72);
  --line:rgba(103,232,249,.22);
  --cyan:#22d3ee;
  --cyan2:#67e8f9;
  --purple:#8b5cf6;
  --text:#e5e7eb;
  --muted:#94a3b8;
}

.lm-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:16px 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(2,6,23,.78);
  backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(103,232,249,.16);
  box-shadow:0 12px 50px rgba(0,0,0,.25);
}

.lm-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
  letter-spacing:.12em;
  color:#fff;
  text-decoration:none;
}

.lm-logo-mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:
    radial-gradient(circle at 30% 20%,rgba(255,255,255,.35),transparent 25%),
    linear-gradient(135deg,#06b6d4,#7c3aed);
  color:white;
  box-shadow:0 0 28px rgba(34,211,238,.38);
}

.lm-logo-text strong{
  color:var(--cyan2);
  text-shadow:0 0 20px rgba(34,211,238,.38);
}

.lm-logo-text small{
  display:block;
  margin-top:2px;
  font-size:10px;
  letter-spacing:.24em;
  color:#94a3b8;
}

.lm-nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.lm-nav a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:14px;
  transition:.2s;
}

.lm-nav a:hover{
  color:var(--cyan2);
}

.lm-cta{
  padding:11px 17px;
  border-radius:999px;
  color:#020617 !important;
  font-weight:900;
  background:linear-gradient(90deg,#22d3ee,#a78bfa);
  box-shadow:0 0 28px rgba(34,211,238,.26);
}

.lm-footer{
  margin-top:70px;
  padding:48px 6% 30px;
  border-top:1px solid rgba(103,232,249,.14);
  background:
    radial-gradient(circle at 15% 0%,rgba(34,211,238,.12),transparent 28%),
    rgba(2,6,23,.78);
}

.lm-footer-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr .7fr .7fr;
  gap:26px;
  max-width:1280px;
  margin:auto;
}

.lm-footer h4{
  margin:0 0 14px;
  color:#e5e7eb;
}

.lm-footer p,
.lm-footer a{
  color:#94a3b8;
  line-height:1.65;
  font-size:14px;
  text-decoration:none;
}

.lm-footer a{
  display:block;
  margin:7px 0;
}

.lm-footer a:hover{
  color:var(--cyan2);
}

.lm-disclaimer{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(148,163,184,.12);
  color:#64748b;
  font-size:13px;
  line-height:1.6;
  max-width:1280px;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:900px){
  .lm-header{
    align-items:flex-start;
    gap:16px;
    flex-direction:column;
  }

  .lm-nav{
    width:100%;
    overflow:auto;
    gap:16px;
    padding-bottom:4px;
  }

  .lm-footer-grid{
    grid-template-columns:1fr;
  }
}
