/* Dev-only footer preview (EmbeddedChat-inspired) */

.siteFooter{
  margin-top: auto;
  background: #020617; /* slate-950 */
  color: #94a3b8; /* slate-400 */
  border-top: 1px solid rgba(148,163,184,.18);
}

.siteFooterInner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 28px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.siteFooterBrandBlock{ grid-column: 1 / -1; }

.siteFooterBrand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.siteFooterBrand img{ width: 32px; height: 32px; object-fit: contain; }

.siteFooterBrandName{ font-weight: 800; letter-spacing: -0.02em; }
.siteFooterBrandNameMuted{ color: rgba(255,255,255,.70); }

.siteFooterTagline{
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #94a3b8;
  max-width: 56ch;
}

.siteFooterSocial{ margin-top: 18px; display: flex; gap: 10px; }

.siteFooterSocial a{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
}

.siteFooterSocial a:hover{ background: rgba(255,255,255,.10); color: #fff; }
.siteFooterSocial svg{ width: 16px; height: 16px; }

.siteFooterHeading{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.siteFooterList{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.siteFooterList a{ color: #94a3b8; text-decoration: none; }
.siteFooterList a:hover{ color: #fff; }

.siteFooterBottom{ grid-column: 1 / -1; margin-top: 18px; }
.siteFooterBottomDivider{
  width: 100%;
  height: 1px;
  background: rgba(148,163,184,.18);
  margin: 0 0 16px;
}

.siteFooterCopy{ margin: 0; font-size: 12px; color: rgba(148,163,184,.75); }

@media (min-width: 768px){
  .siteFooterInner{
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
    padding-bottom: 32px;
  }

  .siteFooterBrandBlock{ grid-column: span 4; }
  .siteFooterCol{ grid-column: span 2; }
  .siteFooterCol:nth-of-type(1){ grid-column: 5 / span 2; }
}

@media (max-width: 420px){
  .siteFooterInner{ padding-left: 16px; padding-right: 16px; }
}
