/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #ffffff;
}

/* Container and layout */
.container {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e1b4b 0%, #581c87 50%, #be185d 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.background {
  position: absolute;
  inset: 0;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(60px);
  opacity: 0.2;
}

.bg-element-1 {
  top: 80px;
  left: 80px;
  width: 288px;
  height: 288px;
  background-color: #3b82f6;
  animation: pulse 3s ease-in-out infinite;
}

.bg-element-2 {
  top: 160px;
  right: 80px;
  width: 384px;
  height: 384px;
  background-color: #8b5cf6;
  animation: pulse 3s ease-in-out infinite 1s;
}

.bg-element-3 {
  bottom: 80px;
  left: 160px;
  width: 320px;
  height: 320px;
  background-color: #ec4899;
  animation: pulse 3s ease-in-out infinite 2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

/* Content wrapper */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  padding: 24px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbulb-icon {
  width: 32px;
  height: 32px;
  color: #fbbf24;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* Main content */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.main-content {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

/* Rocket container */
.rocket-container {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.rocket-wrapper {
  position: relative;
}

.rocket-bg {
  position: absolute;
  inset: -16px;
  background: linear-gradient(45deg, #fbbf24, #f97316);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.3;
}

.rocket-circle {
  position: relative;
  width: 96px;
  height: 96px;
  background: linear-gradient(45deg, #fbbf24, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.rocket-circle:hover {
  transform: scale(1.1);
}

.rocket-icon {
  width: 48px;
  height: 48px;
  color: #ffffff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40%, 43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(-2px);
  }
}

/* Main heading */
.main-heading {
  font-size: 80px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.gradient-text {
  display: block;
  background: linear-gradient(45deg, #fbbf24, #f97316, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Tagline */
.tagline {
  font-size: 32px;
  color: #bfdbfe;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Description */
.description {
  font-size: 20px;
  color: #dbeafe;
  margin-bottom: 48px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: #fbbf24;
  margin: 0 auto 12px;
}

.feature-card h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Footer */
.footer {
  padding: 24px 32px;
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.copyright {
  color: #bfdbfe;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfdbfe;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  .header {
    padding: 24px;
  }
  
  .logo h1 {
    font-size: 20px;
  }
  
  .lightbulb-icon {
    width: 28px;
    height: 28px;
  }
  
  .main {
    padding: 48px 24px;
  }
  
  .rocket-circle {
    width: 80px;
    height: 80px;
  }
  
  .rocket-icon {
    width: 40px;
    height: 40px;
  }
  
  .main-heading {
    font-size: 48px;
  }
  
  .tagline {
    font-size: 24px;
  }
  
  .description {
    font-size: 18px;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer {
    padding: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 40px;
  }
  
  .tagline {
    font-size: 20px;
  }
  
  .description {
    font-size: 16px;
  }
}