:root{
  --footer-text:#e5e7eb;
  --footer-muted:rgba(229,231,235,.72);
  --footer-border:rgba(255,255,255,.12);
  --footer-shadow: 0 24px 70px rgba(2, 6, 23, .28);
}

.site-footer{
  position:relative;
  margin-top:10px;
  overflow:hidden;
  background: #06101f;
  color: var(--footer-text);
}

.footer-curves{
  position:absolute;
  inset:-70px -40px auto -40px;
  height:160px;
  pointer-events:none;
  background: transparent;
  z-index:0;
}

.footer-curves::before,
.footer-curves::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:160%;
  background: transparent;
}


.footer-curves::before{
  top:0;
  height:110px;
  border-bottom-left-radius: 100% 60px;
  border-bottom-right-radius: 100% 60px;
}

.footer-curves::after{
  top:45px;
  height:140px;
  border-top-left-radius: 100% 70px;
  border-top-right-radius: 100% 70px;
  opacity:.18;
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background: #000;
  z-index:0;
  pointer-events:none;
}




.footer-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:56px 18px 28px;
  display:grid;
  grid-template-columns: 1.05fr 1.65fr;
  gap:34px;
  align-items:start;
}

.footer-brand{
  padding-right:10px;
}

.footer-logo-wrap{
  width:96px;
  height:96px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--footer-shadow);
}

.footer-logo-wrap.is-plain{
  border:none;
  background:transparent;
  box-shadow:none;
}

.footer-logo-wrap.is-plain .footer-logo{
  width:120px;
  height:120px;
  object-fit:contain;
  display:block;
  margin-left:20px;
}




.footer-logo{
  width:70px;
  height:70px;
  object-fit:contain;
  display:block;
}

.footer-tagline{
  margin:14px 0 0;
  color: var(--footer-muted);
  line-height:1.8;
  font-size:14px;
  max-width:380px;
}

.footer-social{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-social-link{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
}

.footer-social-link:hover{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}

.footer-social-icon{
  width:18px;
  height:18px;
  fill: currentColor;
}

.footer-columns{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
}

.footer-title{
  margin:0 0 12px;
  font-size:15px;
  letter-spacing:.2px;
  text-transform:none;
  color:#ffffff;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-item{
  color: var(--footer-muted);
  font-size:14px;
  line-height:1.6;
}

.footer-strong{
  color:#fff;
  font-weight:800;
  margin-right:6px;
}

.footer-link{
  color: var(--footer-muted);
  text-decoration:none;
  font-weight:700;
}

.footer-link:hover{
  color:#fff;
  text-decoration:underline;
}

.footer-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-pill{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight:800;
  font-size:12px;
  text-decoration:none;
}


.footer-bottom{
  position:relative;
  z-index:1;
  border-top:1px solid #000;
  background: #000;
}


.footer-bottom-inner{
  max-width:1200px;
  margin:0 auto;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer-copyright{
  margin:0;
  color: rgba(229,231,235,.68);
  font-size:13px;
  font-weight:600;
}

.footer-privacy{
  color: rgba(229,231,235,.78);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}

.footer-privacy:hover{
  color:#fff;
  text-decoration:underline;
}

@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr;
    padding-top:44px;
  }
  .footer-columns{
    grid-template-columns: 1fr;
  }
  .footer-brand{
    padding-right:0;
  }
}

