/* HumanX 2026 - AI Innovation Theme */
/* Color Palette: Deep purple (#7c3aed), cyan (#06b6d4), warm white */

.humanxPage {
  background: linear-gradient(180deg, #0f0a1f 0%, #1a1025 50%, #0f172a 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.heroBackground {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
}

.heroBackground::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-2%, -2%);
  }
}

/* AI Thinking Animation */
.aiThinkingContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.aiThinking {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  color: #67e8f9;
}

.aiThinkingDots {
  display: flex;
  gap: 4px;
}

.aiThinkingDot {
  width: 6px;
  height: 6px;
  background: #06b6d4;
  border-radius: 50%;
  animation: aiPulse 1.4s ease-in-out infinite;
}

.aiThinkingDot:nth-child(2) {
  animation-delay: 0.2s;
}

.aiThinkingDot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes aiPulse {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Neural Nodes Floating Animation */
.neuralNodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(124, 58, 237, 0.4);
  border-radius: 50%;
  animation: nodeFloat 8s ease-in-out infinite;
}

.node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.3), transparent);
  transform-origin: left center;
}

.node:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.node:nth-child(2) {
  top: 60%;
  left: 85%;
  animation-delay: 2s;
}

.node:nth-child(2)::after {
  transform: rotate(180deg);
}

.node:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.node:nth-child(4) {
  top: 30%;
  left: 90%;
  animation-delay: 1s;
}

.node:nth-child(4)::after {
  transform: rotate(200deg);
}

.node:nth-child(5) {
  top: 70%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
}

.heroContent {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 100px;
  color: #a78bfa;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.heroTitle {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroSubtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.heroButtons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.primaryButton {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.primaryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  color: white;
}

.secondaryButton {
  padding: 1rem 2.5rem;
  background: transparent;
  color: #a78bfa;
  text-decoration: none;
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.secondaryButton:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.6);
  color: white;
}

.eventDetails {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 1rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #7c3aed;
}

/* Demo Section */
.demoSection {
  padding: 5rem 0;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.sectionTitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.sectionSubtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.demoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.demoCard {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.demoCard:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.cardIcon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.demoCard h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.demoCard p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

/* Stats Section */
.statsSection {
  padding: 4rem 0;
  background: rgba(124, 58, 237, 0.03);
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 1.5rem;
}

.statNumber {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.statLabel {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Section */
.ctaSection {
  padding: 5rem 0;
}

.ctaContent {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.ctaTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.ctaText {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ctaButtons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer Navigation */
.footerNav {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.backLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.backLink:hover {
  color: #7c3aed;
}

.backIcon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .heroTitle {
    font-size: 2.25rem;
  }

  .heroSubtitle {
    font-size: 1.1rem;
  }

  .heroButtons {
    flex-direction: column;
    align-items: center;
  }

  .primaryButton,
  .secondaryButton {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .eventDetails {
    flex-direction: column;
    gap: 1rem;
  }

  .sectionTitle {
    font-size: 2rem;
  }

  .ctaContent {
    padding: 2rem 1.5rem;
  }

  .ctaButtons {
    flex-direction: column;
    align-items: center;
  }
}
