/* ===========================
   ONE ARCYS™ — FOOTER
   =========================== */

.oaFooter{
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(43,196,227,.08), transparent 60%),
    radial-gradient(800px 420px at 85% 20%, rgba(255,45,85,.06), transparent 62%),
    linear-gradient(180deg, #0a0d12, #070a10);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

.oaFooter__inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 18px 34px;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 28px;
}

.oaFooter__brand{
  max-width: 420px;
}

.oaFooter__logo{
  height: 38px;
  width: auto;
  display: block;
}

.oaFooter__tagline{
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}

.oaFooter__nav{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.oaFooter__col{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oaFooter__title{
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: rgba(255,255,255,.9);
}

.oaFooter__col a{
  font-size: 13px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s ease, transform .15s ease;
}

.oaFooter__col a:hover{
  color: #2bc4e3;
  transform: translateX(2px);
}

/* Bottom bar */
.oaFooter__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

.oaFooter__note{
  opacity: .8;
}

/* Responsive */
@media (max-width: 860px){
  .oaFooter__inner{
    grid-template-columns: 1fr;
  }
  .oaFooter__nav{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .oaFooter__nav{
    grid-template-columns: 1fr;
  }
  .oaFooter__bottom{
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
