@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ========================================================= */
/* SHARED REUSABLE SITE FOOTER                               */
/* ========================================================= */
.site-footer {
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --accent: #38bdf8;

  width: 100%;
  min-height: auto;
  border-top: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08));
  border-bottom: none !important;
  background: #000000 !important;
  display: flex;
  align-items: center;
  padding: 44px 24px 28px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.footer-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-header {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.footer-brand-header:hover {
  opacity: 0.95;
  transform: translateX(2px);
}

.mlsc-logo-icon {
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.mlsc-sq {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.footer-brand-header:hover .mlsc-sq-orange {
  filter: drop-shadow(0 0 8px rgba(242, 80, 34, 0.6));
}

.footer-brand-header:hover .mlsc-sq-green {
  filter: drop-shadow(0 0 8px rgba(127, 186, 0, 0.6));
}

.footer-brand-header:hover .mlsc-sq-blue {
  filter: drop-shadow(0 0 8px rgba(0, 164, 239, 0.6));
}

.footer-brand-header:hover .mlsc-sq-yellow {
  filter: drop-shadow(0 0 8px rgba(255, 185, 0, 0.6));
}

.footer-brand-title {
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #ffffff;
  line-height: 1.25;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0;
}

.footer-links-group {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  width: fit-content;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social-link .footer-social-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover .footer-social-icon {
  opacity: 1;
  transform: scale(1.1);
}

.footer-social-link[aria-label*="LinkedIn"]:hover {
  color: #38bdf8;
}

.footer-social-link[aria-label*="Instagram"]:hover {
  color: #f472b6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-indicator {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links-group {
    gap: 32px;
  }
}
