/* ── Footer Styles ── */
#cw-footer {
  background: #0e0e10;
  border-top: 1px solid #1e1e22;
  position: relative;
  overflow: hidden;
  width: 100%;
}
#cw-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(173,198,255,0.15) 0, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(173,198,255,0.10) 0, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(173,198,255,0.12) 0, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(173,198,255,0.08) 0, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(173,198,255,0.10) 0, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
#cw-footer .cw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 32px;
  position: relative;
  z-index: 1;
}
#cw-footer .cw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
/* Wordmark */
#cw-footer .cw-wordmark {
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(135deg, #adc6ff 0%, #8b9dff 50%, #7c8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
#cw-footer .cw-wordmark:hover {
  transform: translateX(4px);
}
#cw-footer .cw-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  max-width: 340px;
}
/* Sections layout */
#cw-footer .cw-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
#cw-footer .cw-section-title {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
#cw-footer .cw-link {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  padding: 4px 0;
  transition: all 0.2s ease;
  position: relative;
  width: fit-content;
}
#cw-footer .cw-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: #adc6ff;
  transition: width 0.25s ease;
}
#cw-footer .cw-link:hover {
  color: #e2e8f0;
}
#cw-footer .cw-link:hover::after {
  width: 100%;
}
/* Social links */
#cw-footer .cw-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
#cw-footer .cw-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1a1a1e;
  border: 1px solid #2a2a2e;
  color: #64748b;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
}
#cw-footer .cw-social a:hover {
  background: #2a2a2e;
  border-color: #adc6ff;
  color: #adc6ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(173,198,255,0.10);
}
/* Bottom bar */
#cw-footer .cw-bottom {
  border-top: 1px solid #1a1a1e;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
#cw-footer .cw-bottom-text {
  font-size: 12px;
  color: #475569;
}
#cw-footer .cw-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
#cw-footer .cw-bottom-links a {
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
#cw-footer .cw-bottom-links a:hover {
  color: #adc6ff;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  #cw-footer .cw-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
  }
  #cw-footer .cw-sections {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  #cw-footer .cw-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  #cw-footer .cw-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
  #cw-footer .cw-sections {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
