@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/inter-medium.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-semibold.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/inter-bold.woff2') format('woff2'); }

html {
  height: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}
#site-header {
  flex-shrink: 0;
}
.site-content-wrap {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.footer {
  flex-shrink: 0;
  background: #0a0a0a;
  padding: 2rem 24px 2.5rem;
  text-align: center;
  margin-top: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1.25rem;
  text-align: center;
}
.footer-logo {
  display: block;
  line-height: 0;
}
.footer-logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.footer-tagline {
  margin: 0;
  font-size: 0.75rem;
  color: #5a5a5a;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #6b6b6b;
}
.footer-bottom a {
  color: #7a7a7a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: #ec4899;
}
.footer-sep {
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}
.footer-copy {
  margin: 0.5rem 0 0;
  width: 100%;
  font-size: 0.7rem;
  color: #5a5a5a;
}

.footer[data-reveal="1"] {
  opacity: 0;
  transform: translateY(80px) translateZ(0);
  pointer-events: none;
  contain: paint;
}
.footer[data-reveal="1"].is-visible {
  pointer-events: auto;
  animation: footer-reveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes footer-reveal {
  from { opacity: 0; transform: translateY(80px) translateZ(0); }
  to   { opacity: 1; transform: translateY(0) translateZ(0); }
}

@media (prefers-reduced-motion: reduce) {
  .footer[data-reveal="1"] {
    animation: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}
