* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: rgb(11, 14, 20);
  color: rgb(224, 230, 235);
}

.font-heading {
  font-family: "Space Grotesk", sans-serif;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    rgb(51, 204, 153) 0%,
    rgb(52, 211, 153) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(19, 24, 32, 0.6);
  border: 1px solid rgba(37, 44, 55, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(29, 34, 43, 0.8);
  border: 1px solid rgba(51, 204, 153, 0.3);
  transform: translateY(-4px);
  box-shadow: none;
}

.glow-box {
  box-shadow: 0 0 20px rgba(51, 204, 153, 0.15);
  transition: all 0.3s ease;
}
.glow-box:hover {
  box-shadow: none;
  transform: translateY(0);
}

a:hover .glow-box,
button:hover .glow-box {
  box-shadow: none !important;
}

.glass-card.deployment {
  display: flex;
  flex-direction: column;
}

.glass-card.deployment .deployment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(51, 204, 153);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(11, 14, 20, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37, 44, 55, 0.5);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 40;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.deployment-card {
  background: linear-gradient(135deg, #1a2332 0%, #141b28 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.deployment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 204, 153, 0.3);
}

.deployment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0;
}

.deployment-dots {
  display: flex;
  gap: 6px;
}

.deployment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.deployment-dot.green {
  background: #5eead4;
}

.deployment-dot.yellow {
  background: #fbbf24;
}

.deployment-dot.blue {
  background: #60a5fa;
}

.deployment-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.deployment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  margin: 16px 20px 0;
  border: 1px solid;
}

.deployment-badge.live {
  background: rgba(94, 234, 212, 0.1);
  border-color: rgba(94, 234, 212, 0.3);
}

.deployment-badge.in-progress {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.deployment-badge.concept {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.deployment-badge-icon {
  font-size: 16px;
}

.deployment-badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.deployment-badge-text.live {
  color: #5eead4;
}

.deployment-badge-text.in-progress {
  color: #fbbf24;
}

.deployment-badge-text.concept {
  color: #60a5fa;
}

.deployment-content {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deployment-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.deployment-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.deployment-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deployment-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.deployment-btn-primary {
  background: linear-gradient(135deg, #5eead4 0%, #14b8a6 100%);
  color: #0a0e27;
}

.deployment-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(94, 234, 212, 0.45);
}

.deployment-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.deployment-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.deployment-btn-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 640px) {
  .glow-box.w-full,
  .inline-flex.w-full {
    display: inline-flex !important;
    width: auto !important;
    max-width: 360px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .deployment-buttons .glow-box.w-full,
  .deployment-buttons .inline-flex.w-full {
    max-width: 320px;
  }

  #submit-btn.w-full {
    max-width: 420px;
  }
}
