body {
  background-color: #0f172a;
}

.site-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  margin-bottom: var(--footer-height, 26rem);
  background-color: #f8fafc;
}

.reveal-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.reveal-footer-inner {
  will-change: transform;
  transition: transform 0.1s linear;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links,
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a,
.footer-social a {
  color: #94a3b8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ffffff;
}

.footer-social {
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #1e293b;
  color: #cbd5e1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover .footer-social-icon {
  background-color: #fbbf24;
  color: #0f172a;
}

.footer-signup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-signup-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  background-color: #1e293b;
  color: #f8fafc;
  font-size: 0.875rem;
}

.footer-signup-input::placeholder {
  color: #64748b;
}

.footer-signup-input:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 1px;
  border-color: #fbbf24;
}

.footer-signup-button {
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #fbbf24;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-signup-button:hover {
  background-color: #f59e0b;
}

.footer-credits {
  color: #64748b;
}

.footer-credits a {
  margin-left: 0.25rem;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1023px) {
  body {
    background-color: #f8fafc;
  }

  .site-content {
    margin-bottom: 0;
    min-height: auto;
  }

  .reveal-footer {
    position: static;
  }

  .reveal-footer-inner {
    transform: none !important;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-footer-inner {
    transition: none;
    transform: none !important;
  }
}
