:root {
  --primary-purple: #667eea;
  --secondary-purple: #764ba2;
  --dark-bg: #0a0a0a;
  --text-light: #e2e8f0;
}

html, body {
  overflow-y: hidden;
}

.hero {
  background: #0a0a0a;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: drift 25s ease-in-out infinite;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: var(--primary-purple);
  top: -200px;
  left: -200px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: var(--secondary-purple);
  bottom: -150px;
  right: -150px;
  animation-delay: -12s;
  animation-direction: reverse;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, 50px);
  }
  50% {
    transform: translate(50px, 100px);
  }
  75% {
    transform: translate(150px, 50px);
  }
}

.logo-container img {
  max-width: 450px;
  height: auto;
}

.content-container {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-container a {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-container a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

.hero-foot p {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
}
