.footer{
  margin-top:80px;
  padding:56px 0 32px;
  border-top:1px solid rgba(234,240,255,.08);
  background:
    linear-gradient(180deg, rgba(7,10,16,0) 0%, rgba(7,10,16,.82) 38%, rgba(7,10,16,.96) 100%),
    radial-gradient(900px 280px at 15% 0%, rgba(52,211,153,.05), transparent 60%);
}

.footer .container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:44px;
  align-items:start;
}

.footer-brand{
  font-size:14px;
  color:rgba(234,240,255,.72);
  max-width:380px;
}

.footer .brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-weight:700;
  font-size:16px;
  color:rgba(234,240,255,.94);
}

.footer .dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#41ff9a;
  box-shadow:
    0 0 0 5px rgba(65,255,154,.06),
    0 0 10px rgba(65,255,154,.20);
}

.footer-text{
  margin:0;
  line-height:1.6;
  color:rgba(234,240,255,.75);
}

.footer-title{
  font-size:12px;
  margin:0 0 14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(234,240,255,.46);
}

.footer-col a{
  display:block;
  margin-bottom:10px;
  font-size:13.5px;
  color:rgba(234,240,255,.76);
  text-decoration:none;
  transition:all .18s ease;
}

.footer-col a:hover{
  color:rgba(234,240,255,.98);
  transform:translateX(2px);
}

.footer-bottom{
  margin-top:42px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  border-top:1px solid rgba(234,240,255,.06);
  font-size:12px;
}

.footer-legal{
  color:rgba(234,240,255,.46);
}

.footer-tagline{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(234,240,255,.08);
  background:rgba(234,240,255,.015);
  color:rgba(234,240,255,.38);
  letter-spacing:.03em;
}

@media (max-width:980px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
}

@media (max-width:640px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:22px;
  }
}