/* ============================================================
   KaspaNova — FOOTER (GLOBAL / SHARED)
   FINAL / PRODUCTION SAFE
============================================================ */

/* ------------------------------------------------------------
   WRAPPER — ISOLATION TOTALE
------------------------------------------------------------ */

.kn-footer {
  position: relative;
  z-index: 10;

  background: var(--kn-bg-elevated);
  border-top: 1px solid var(--kn-border);
  padding: 1.6rem 1rem;

  overflow: hidden;
}

.kn-footer::before,
.kn-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--kn-bg-elevated);
  z-index: -1;
}

/* ------------------------------------------------------------
   IMAGE SAFETY
------------------------------------------------------------ */

.kn-footer img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* ------------------------------------------------------------
   CONTAINER
------------------------------------------------------------ */

.kn-footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;

  text-align: center;
}

/* ------------------------------------------------------------
   BRAND
------------------------------------------------------------ */

.kn-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.kn-footer-logo-main {
  height: 36px;
}

.kn-footer-kaspaline {
  height: 32px;
  opacity: 0.95;
}

/* ------------------------------------------------------------
   LEGAL LINKS (Lucide icons)
------------------------------------------------------------ */

.kn-footer-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
}

.kn-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: var(--kn-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.kn-footer-links a:hover {
  color: var(--kn-green);
}

.kn-footer-links svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.kn-footer-sep {
  opacity: 0.4;
}

/* ------------------------------------------------------------
   META
------------------------------------------------------------ */

.kn-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  font-size: 0.72rem;
  color: var(--kn-text-muted);
}

/* ------------------------------------------------------------
   TRUST PILLS
------------------------------------------------------------ */

.kn-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 4px 10px;
  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition: all 0.2s ease;
}

.kn-footer-pill-icon {
  height: 16px;
}

/* Kaspa */
.kn-footer-pill-kaspa {
  background: rgba(112,199,186,0.18);
  color: #70c7ba;
  border: 1px solid rgba(112,199,186,0.45);
}

.kn-footer-pill-kaspa:hover {
  background: rgba(112,199,186,0.24);
  box-shadow:
    0 0 0 1px rgba(112,199,186,0.25),
    0 6px 16px rgba(112,199,186,0.25);
}

/* JobeLabs */
.kn-footer-pill-jobelabs {
  background: rgba(122,61,241,0.14);
  color: #c4b5fd;
  border: 1px solid rgba(122,61,241,0.35);
}

.kn-footer-pill-jobelabs:hover {
  background: rgba(122,61,241,0.20);
  box-shadow:
    0 0 0 1px rgba(122,61,241,0.28),
    0 6px 16px rgba(122,61,241,0.30);
}

.kn-footer-pill-icon-jobelabs {
  height: 18px;
}

/* ------------------------------------------------------------
   META HELPERS
------------------------------------------------------------ */

.kn-footer-meta-sep {
  opacity: 0.4;
  margin: 0 4px;
}

.kn-footer-copy {
  font-size: 0.7rem;
  color: var(--kn-text-muted);
}

/* ------------------------------------------------------------
   DESKTOP
------------------------------------------------------------ */

@media (min-width: 768px) {
  .kn-footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
