:root {
  --shared-graphite: #1c1c1c;
  --shared-deep: #181818;
  --shared-lime: #cfff04;
  --shared-mono: 'Space Mono', monospace;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 12% 5%, rgba(207, 255, 4, .018), transparent 25rem),
    linear-gradient(180deg, var(--shared-graphite), var(--shared-deep)) !important;
  background-attachment: fixed !important;
}

.site-footer {
  display: block;
  width: 100%;
  min-height: 100px;
  margin-top: auto;
  padding: 32px 24px;
  border-top: 1px solid rgba(207, 255, 4, .55);
  position: relative;
  z-index: 1;
  background: rgba(24, 24, 24, .72);
}

.footer-inner {
  width: min(1180px, 100%);
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--shared-lime);
  font-family: var(--shared-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-left span { display: inline; }

.footer-logo {
  width: auto;
  height: 28px;
  object-fit: contain;
}

.footer-right {
  color: var(--shared-lime);
  font-family: var(--shared-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .site-footer { min-height: 82px; padding: 23px 20px; }
  .footer-inner { justify-content: center; }
  .footer-logo { height: 24px; }
  .footer-left { font-size: 10px; }
  .footer-right { display: none; }
}
