/* ----------------------------------------------------------------------------
   XecureLogic — shared chrome (brand mark + footer).
   Brand mark mirrors Kataris's logo treatment: Audiowide uppercase wordmark,
   white hairline, red gradient accent fading right.
   ---------------------------------------------------------------------------- */

/* ----------- Brand mark (Kataris-style) ----------- */
.brand-mark { display: inline-block; cursor: pointer; text-decoration: none; }
.brand-text {
  font-family: 'Audiowide', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1;
}
.brand-mark.lg .brand-text { font-size: 22px; letter-spacing: 2.5px; }
.brand-mark.dark .brand-text { color: #0a0f1a; }
.brand-line-white {
  height: 1px;
  background: #ffffff;
  margin-top: 5px;
  width: 100%;
}
.brand-mark.dark .brand-line-white { background: #0a0f1a; }
.brand-line-accent {
  height: 1px;
  margin-top: 1px;
  width: 100%;
  background: linear-gradient(90deg, #F3A30F 0%, #F3A30F 40%, transparent 85%);
}
.brand-mark.lg .brand-line-white,
.brand-mark.lg .brand-line-accent { height: 1.5px; }


.site-footer {
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding: 60px 40px 40px;
  background: rgba(20, 28, 48, 0.3);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #9ca3af;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  text-align: center;
}

.footer-brand .footer-logo-link {
  text-decoration: none;
  display: inline-block;
}

.footer-logo {
  font-family: 'Audiowide', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
.footer-logo .logo-xecure { color: #ffffff; }
.footer-logo .logo-logic  { color: #60a5fa; }
.footer-logo .logo-cursor { color: #F3A30F; }

.footer-attrib {
  font-size: 11px;
  color: #6b7280;
  margin-top: 16px;
  font-family: 'Courier New', Consolas, monospace;
}
.footer-attrib a {
  color: #F3A30F;
  text-decoration: none;
}
.footer-attrib a:hover { text-decoration: underline; }

.footer-col-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  transform: translateX(0);
}
.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 32px;
  }
}
