* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Space Grotesk', sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header-spacer {
  flex: 1;
}

.header-logo {
  height: 40px;
  width: auto;
  display: block;
}

.header-logo-link {
  display: flex;
  align-items: center;
}
.white-logo {
  filter: brightness(0) invert(1);
}
.nav-link {
  padding: 12px 32px;
  background: transparent;
  color: #4A90E2;
  border: 2px solid #4A90E2;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.nav-link:hover {
  background: #4A90E2;
  color: #fff;
  transform: translateY(-2px);
}

/* Launching Soon Banner */
.launch-banner {
  margin-top: 90px;
  padding: 40px 60px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(53, 122, 189, 0.08));
  border-bottom: 2px solid rgba(74, 144, 226, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.launch-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.launch-banner-content {
  position: relative;
  z-index: 1;
}

.launch-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.4);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #4A90E2;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.launch-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff 0%, #4A90E2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launch-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.hero-support {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 80px;
  background: radial-gradient(ellipse at top center, rgba(74, 144, 226, 0.15), transparent 60%), #0a0a0a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-support::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2), transparent 70%);
  filter: blur(100px);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.6; }
}

.hero-support-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-support h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff 0%, #4A90E2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-support p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.support-section {
  padding: 100px 60px;
  background: #000;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 80px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding: 35px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(74, 144, 226, 0.3);
  transform: translateY(-3px);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  color: #4A90E2;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.contact-box {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(53, 122, 189, 0.04));
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.contact-box p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
  line-height: 1.7;
}

.btn-contact {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
  text-decoration: none;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.6);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.resource-card {
  background: rgba(255,255,255,0.02);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: all 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 144, 226, 0.25);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.resource-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.resource-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.resource-link {
  display: inline-block;
  margin-top: 15px;
  color: #4A90E2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.resource-link:hover {
  color: #357ABD;
}

footer {
  padding: 60px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #4A90E2;
}

@media (max-width: 768px) {
  header {
    padding: 15px 30px;
  }

  .launch-banner {
    padding: 30px 30px;
    margin-top: 70px;
  }

  .launch-title {
    font-size: 2rem;
  }

  .launch-subtitle {
    font-size: 1rem;
  }

  .hero-support {
    padding: 60px 30px 60px;
  }

  .hero-support h1 {
    font-size: 2.5rem;
  }

  .support-section {
    padding: 80px 30px;
  }

  .contact-box {
    padding: 40px 30px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 25px 25px;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}
