/* ─── GLOBAL FOOTER ─── */
footer {
  position: relative;
  background: #050509;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 80px) clamp(32px, 4vw, 48px);
  overflow: hidden;
  z-index: 2;
}

/* Glowing top edge */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124,111,255,0.12) 15%,
    rgba(124,111,255,0.55) 50%,
    rgba(124,111,255,0.12) 85%,
    transparent 100%
  );
}

/* Ambient radial bloom */
.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,111,255,0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Layout ─── */
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── Brand ─── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.75;
  max-width: 380px;
  margin-top: 2px;
}

/* ─── Divider ─── */
.footer-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin-bottom: 32px;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06));
}

.footer-divider-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(255,255,255,0.06));
}

.footer-divider-gem {
  font-size: 6px;
  color: rgba(124,111,255,0.45);
  line-height: 1;
  flex-shrink: 0;
}

/* ─── Bottom strip ─── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.025em;
}

.footer-legal a:hover { color: rgba(255,255,255,0.75); }
.footer-legal a.active { color: var(--white); }

.footer-dot {
  font-size: 11px;
  color: rgba(255,255,255,0.12);
  user-select: none;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.025em;
}
