/* File: assets/footer.css */

/* Design tokens */
:root{
  --footer-bg:#151c2b;
  --footer-ink:#E5E7EB;
  --footer-muted:#9CA3AF;
  --footer-line:#22314e;
  --footer-brand:#2D6CF6;
}

/* Footer wrapper */
.site-footer{
  background:var(--footer-bg);
  color:var(--footer-ink);
  border-top:1px solid var(--footer-line);
  margin-top:0px;
}

/* Inner layout */
.site-footer .footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:18px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* Brand block */
.footer-brand{
  max-width:520px;
}
.footer-logo{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--footer-ink); font-weight:900; letter-spacing:.2px; text-decoration:none;
  margin-left:-20px;
}
.footer-logo:hover{ opacity:.9 }
.footer-brand .footer-tagline{
  margin:6px 0 0; color:var(--footer-muted); font-size:13.5px; line-height:1.5;
}

/* Nav */
.footer-nav{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
}
.footer-nav a{
  color:var(--footer-ink);
  text-decoration:none;
  font-size:13.5px; font-weight:700;
  padding:6px 8px;
  border-radius:8px;
  border:1px solid transparent;
}
.footer-nav a:hover{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
}

/* Bottom line */
.footer-bottom{
  border-top:1px solid var(--footer-line);
  padding:12px 16px 16px;
}
.footer-bottom .copyright{
  max-width:1100px; margin:0 auto; color:var(--footer-muted); font-size:13px;
  display:flex; gap:10px; flex-wrap:wrap; justify-content:space-between;
}

/* Responsive */
@media (max-width:720px){
  .site-footer .footer-inner{ padding:16px 12px }
  .footer-nav{ gap:8px }
}