/* Al3xLabs Page Styles */

/* Hero */
.al3x-hero {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1040 40%, #0d1b2a 100%);
  text-align: center;
  padding: 6rem 0 4rem;
}

.al3x-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  margin: 0 auto;
}

.al3x-hero__logo {
  width: 100%;
  max-width: 28rem;
  height: auto;
  border-radius: 1rem;
  object-fit: contain;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 60px rgba(47, 128, 255, 0.3), 0 0 40px rgba(0, 209, 255, 0.15);
  animation: logoFloat 4s ease-in-out infinite;
  border: 1px solid rgba(47, 128, 255, 0.25);
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 20px 60px rgba(47, 128, 255, 0.3), 0 0 40px rgba(0, 209, 255, 0.15);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(47, 128, 255, 0.4), 0 0 60px rgba(0, 209, 255, 0.2);
  }
}

@keyframes logoGlow {
  0% {
    box-shadow: 0 0 40px rgba(47, 128, 255, 0.4), 0 0 80px rgba(0, 209, 255, 0.2);
    filter: brightness(1);
  }
  100% {
    box-shadow: 0 0 60px rgba(47, 128, 255, 0.7), 0 0 120px rgba(0, 209, 255, 0.4), 0 0 200px rgba(47, 128, 255, 0.15);
    filter: brightness(1.1);
  }
}

.al3x-hero__title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a0c4ff, #ffffff, #00d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: none;
  letter-spacing: 0.05em;
}

.al3x-hero__subtitle {
  font-size: 0.85rem;
  color: #00D1FF;
  margin-bottom: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.al3x-hero__desc {
  font-size: 1.125rem;
  color: #b0b8d1;
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.al3x-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 768px) {
  .al3x-hero__title {
    font-size: 4.5rem;
  }

  .al3x-hero__ctas {
    flex-direction: row;
    max-width: none;
    width: auto;
  }

  .al3x-hero__logo {
    max-width: 36rem;
  }
}

/* Programs Grid */
.al3x-programs {
  background-color: #0a0e27;
}

.al3x-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .al3x-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .al3x-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.al3x-card {
  background-color: #12162e;
  border: 1px solid #2a3055;
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.al3x-card:hover {
  border-color: #00d4ff;
  transform: translateY(-4px);
}

.al3x-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.al3x-card__title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.al3x-card__desc {
  font-size: 0.875rem;
  color: #b0b8d1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.al3x-card__topics {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.al3x-card__topics li {
  font-size: 0.8125rem;
  color: #00ff88;
  padding-left: 1.25rem;
  position: relative;
}

.al3x-card__topics li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00d4ff;
}

/* Why Section */
.al3x-why {
  background-color: #1a1f3a;
}

.al3x-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .al3x-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .al3x-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.al3x-feature {
  background-color: #12162e;
  border: 1px solid #2a3055;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.al3x-feature strong {
  display: block;
  color: #00d4ff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.al3x-feature p {
  font-size: 0.875rem;
  color: #b0b8d1;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.al3x-cta {
  background: linear-gradient(135deg, #12162e 0%, #1a1040 100%);
}

/* Process connectors — hide on mobile */
@media (max-width: 767px) {
  .al3x-process-connector {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .al3x-process-line {
    display: block !important;
  }
}
