@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Syne:wght@700;800&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0B0C1A; /* Deep Indigo */
  color: #E2E8F0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: #39FF14; /* Neon Lime */
  color: #0B0C1A;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  margin-bottom: 1.5rem;
  color: #94A3B8;
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* --- LAYOUT & CONTAINER --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* --- HEADER & NAV --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 12, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Generous height */
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: #39FF14;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.nav__row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #CBD5E1;
  position: relative;
}

.nav__link:hover {
  color: #39FF14;
}

.nav__link--cta {
  background: #7B2CBF; /* Electric Violet */
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav__link--cta:hover {
  background: #5A189A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

/* Mobile Nav Toggle (Hidden on Desktop) */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: clamp(180px, 20vh, 250px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative background blob */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.25) 0%, rgba(11, 12, 26, 0) 70%);
  z-index: -1;
  filter: blur(60px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  color: #39FF14;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.hero__title span {
  color: #FF007F; /* Hot Pink */
  font-style: italic;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.btn--primary {
  background-color: #39FF14;
  color: #0B0C1A;
  border: 2px solid #39FF14;
}

.btn--primary:hover {
  background-color: transparent;
  color: #39FF14;
}

.btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: #FF007F;
  color: #FF007F;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotate(-3deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.hero__image:hover img {
  transform: rotate(0deg) scale(1.02);
}

/* --- CARDS / GRID --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background-color: #0F1020;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #15172E;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #7B2CBF;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #7B2CBF;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 1;
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.card__text {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 0;
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #39FF14;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  color: #FF007F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.faq-answer {
  color: #94A3B8;
  display: none; /* Controlled by JS in real scenario, showing static here */
  margin-top: 0.5rem;
}

/* --- CTA BAND --- */
.cta-band {
  background: linear-gradient(135deg, #7B2CBF 0%, #3C096C 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 24px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-band .btn {
  background: #fff;
  color: #7B2CBF;
  border: none;
  position: relative;
}

.cta-band .btn:hover {
  background: #39FF14;
  color: #0B0C1A;
}

/* --- FOOTER --- */
.footer {
  background-color: #05060F;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__col h4 {
  font-size: 1rem;
  color: #39FF14;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.75rem;
}

.footer__col a {
  color: #94A3B8;
  font-size: 0.95rem;
}

.footer__col a:hover {
  color: #fff;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .nav {
    display: none; /* In real production, toggle this */
  }
  
  .mobile-toggle {
    display: block;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
} *{box-sizing:border-box} body{margin:0} img,svg,video{max-width:100%;height:auto} 