/* Shared site footer — used across demo pages (canonical: landing.html) */

.site-footer {
  border-top: 1px solid var(--border, rgba(176, 96, 255, 0.2));
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-sizing: border-box;
  width: 100%;
  flex-shrink: 0;
}

.site-footer .footer-logo {
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink, #ff2d78), var(--purple, #b060ff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-footer .footer-links {
  display: flex;
  gap: 20px;
}

.site-footer .footer-link {
  font-size: 15px;
  color: var(--text-dim, var(--muted, #8060b0));
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer .footer-link:hover {
  color: var(--text-muted, var(--text, #e2d5ff));
}

.site-footer .footer-copy {
  font-size: 14px;
  color: var(--text-dim, var(--muted, #8060b0));
}

/* Demo-specific meta / control hints sit above the site footer */
.controls-hint,
.demo-meta {
  font-size: 0.7rem;
  color: var(--muted, var(--text-dim, #8060b0));
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.8;
  padding: 12px 16px;
  box-sizing: border-box;
  width: 100%;
}

.controls-hint a,
.demo-meta a {
  color: var(--cyan, var(--accent, var(--pink, #00d4ff)));
  text-decoration: none;
}

.controls-hint a:hover,
.demo-meta a:hover {
  text-decoration: underline;
}

.demo-meta code {
  font-size: 0.85em;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 24px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
