/* ═══════════════════════════════════════════════════════════
   footer.css — Site Footer / Credit
═══════════════════════════════════════════════════════════ */

.site-footer {
  position: relative;
  padding: 0 20px 48px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.25), rgba(6,182,212,0.20), transparent);
  margin-bottom: 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 6px rgba(59,130,246,0.7);
  animation: pulseGlow 2s ease-in-out infinite;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 7px;
}

.credit-link {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gray-1);
  transition: color 0.2s ease;
  text-decoration: none;
}

.credit-link:hover {
  color: #60A5FA;
}

.footer-copy {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.15);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   DESKTOP (min-width: 768px)
══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .site-footer { max-width: 720px; padding: 0 40px 64px; }
  .credit-link { font-size: 1.1rem; }
  .footer-copy { font-size: 0.74rem; }
}
