/* Shared site footer — drop-in stylesheet for static pages.
   Self-contained tokens so it can render outside the wheel-app bundle. */
.site-footer {
  --sf-text-primary: #f0f0f5;
  --sf-text-secondary: #9a9ab0;
  --sf-text-tertiary: #6a6a80;
  --sf-border: rgba(255, 255, 255, 0.08);

  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 24px;
  margin-top: 32px;
  border-top: 1px solid var(--sf-border);
  color: var(--sf-text-tertiary);
  font-size: 0.8125rem;
}

html[data-theme="light"] .site-footer {
  --sf-text-primary: #1a1a2e;
  --sf-text-secondary: #5a5a72;
  --sf-text-tertiary: #8a8a9f;
  --sf-border: rgba(0, 0, 0, 0.08);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.site-footer__nav a {
  color: var(--sf-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: var(--sf-text-primary);
}

.site-footer p {
  font-size: 0.8125rem;
  margin-top: 10px;
  margin-bottom: 0;
}

.site-footer__copyright {
  margin-top: 10px;
  color: var(--sf-text-tertiary);
}

.site-footer__copyright a {
  color: var(--sf-text-secondary);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.site-footer__copyright a:hover {
  color: var(--sf-text-primary);
}