.site-footer {
  background: #0d0d15;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, sans-serif;
}

.site-footer * {
  font-family: inherit;
  box-sizing: border-box;
}

.footer-accent-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #CCFF00, #0d0d15);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 64px;
  display: flex;
  flex-direction: row;
  gap: 48px;
}

.footer-brand {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  width: 44px;
  height: 44px;
  background: #CCFF00;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo-ring {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #171720;
  background: transparent;
}

.footer-wordmark {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.footer-wordmark-crew {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  line-height: 1;
}

.footer-wordmark-10x {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #CCFF00, #88FF22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  color: #7a7a8e;
  line-height: 1.5;
  width: 200px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  color: #7a7a8e;
  transition: color 0.2s;
  display: flex;
}

.footer-social a:hover {
  color: #CCFF00;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #CCFF00;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-badge-new {
  font-size: 9px;
  font-weight: 600;
  color: #CCFF00;
  background: #1e3a1e;
  padding: 3px 8px;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
}

.footer-badge-hiring {
  font-size: 9px;
  font-weight: 600;
  color: #0d0d15;
  background: #CCFF00;
  padding: 3px 8px;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
}

.footer-divider {
  margin: 0 64px;
  height: 1px;
  background: #2a2a3a;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 12px;
  font-weight: 400;
  color: #7a7a8e;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copyright {
  font-size: 11px;
  font-weight: 400;
  color: #4a4a5e;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid #2a2a3a;
  background: transparent;
  color: #b0b0b0;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}

.footer-lang svg {
  flex-shrink: 0;
}

.footer-lang .lang-globe {
  width: 14px;
  height: 14px;
  color: #7a7a8e;
}

.footer-lang .lang-chevron {
  width: 12px;
  height: 12px;
  color: #7a7a8e;
}

.footer-disclaimer {
  background: #08080e;
  padding: 24px 64px;
}

.footer-disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclaimer-divline {
  display: none;
}

.footer-disclaimer p {
  font-size: 11px;
  font-weight: 400;
  color: #5a5a6e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-tagline {
    width: 100%;
  }
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .footer-divider {
    margin: 0 24px;
  }
  .footer-bottom {
    padding: 16px 24px;
  }
  .footer-disclaimer {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
