/* Landing Page Styles */
.landing-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cosmic-deep) 0%, var(--cosmic-dark) 25%, var(--cosmic-blue) 50%, var(--cosmic-purple) 75%, var(--cosmic-red) 100%);
  background-attachment: fixed;
  color: var(--cosmic-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Ensure homepage styles take precedence over onboarding styles */
.homepage-wrapper .step {
  text-align: center !important;
  position: relative !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.homepage-wrapper .step-number {
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin: 0 auto 24px !important;
  box-shadow: 0 8px 20px rgba(83, 52, 131, 0.3) !important;
}

.homepage-wrapper .step h3 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  color: var(--cosmic-gold) !important;
}

.homepage-wrapper .step p {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6 !important;
}

.homepage-wrapper .steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
  background: linear-gradient(45deg, var(--cosmic-gold), var(--cosmic-red), var(--cosmic-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cosmic-white);
  color: var(--cosmic-white);
}

.btn-outline:hover {
  background: var(--cosmic-white);
  color: var(--cosmic-deep);
  transform: translateY(-2px);
}

/* App Mockup */
.app-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.mockup-screen {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  height: 400px;
  transform: rotateY(-15deg) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mockup-screen:hover {
  transform: rotateY(-10deg) rotateX(2deg);
}

.mockup-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cosmic-gold);
  opacity: 0.7;
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-task {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  border-left: 3px solid var(--cosmic-gold);
  transition: all 0.3s ease;
}

.mockup-task:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cosmic-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--cosmic-gold);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
}

/* Homepage specific styles with high specificity */
.landing-page .steps-grid,
.homepage-wrapper .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.landing-page .step,
.homepage-wrapper .step {
  text-align: center;
  position: relative;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-page .step-number,
.homepage-wrapper .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(83, 52, 131, 0.3);
}

.landing-page .step h3,
.homepage-wrapper .step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--cosmic-gold);
}

.landing-page .step p,
.homepage-wrapper .step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--cosmic-gold);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cosmic-gold);
}

.author-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legacy homepage styles for backward compatibility */
.homepage {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 20px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  margin-bottom: 80px;
}

.hero {
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold), var(--cosmic-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cosmic-gold);
  margin-bottom: 1rem;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.homepage .feature-icon {
  margin-right: 0.5rem;
  color: var(--cosmic-gold);
  font-size: 1.25rem;
  vertical-align: bottom;
  margin-bottom: 0;
  display: inline;
}

.actions {
  margin-top: 1rem;
}

.actions p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .mockup-screen {
    width: 250px;
    height: 350px;
    transform: none;
  }

  .mockup-screen:hover {
    transform: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .homepage {
    min-height: calc(100vh - 56px);
    padding: 16px 0;
  }
  
  .container {
    margin-bottom: 70px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .button-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .features-section,
  .how-it-works-section,
  .testimonials-section,
  .cta-section {
    padding: 60px 0;
  }

  .feature-card,
  .testimonial-card {
    padding: 24px 20px;
  }
} 