/* ─── FOOTER ─── */
footer {
  position: relative;
  padding: 24px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(167, 139, 250, 0.35) 20%,
      rgba(45, 212, 191, 0.15) 50%,
      rgba(167, 139, 250, 0.35) 80%,
      transparent 100%);
}

.footer-classified {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 14px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(167, 139, 250, 0.05);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.footer-left {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.footer-left a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-left a:hover {
  color: var(--text);
}

.footer-right {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer-langs {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--text-tertiary);
  text-align: center;
  flex: 1;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

