/**
 * Matrix Theme - Landing Page Styles
 * Enterprise-grade landing page components
 */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(13, 13, 13, 0.9));
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="matrix" width="10" height="10" patternUnits="userSpaceOnUse"><text x="5" y="8" font-family="monospace" font-size="8" fill="%2300ff41" opacity="0.1">1</text></pattern></defs><rect width="100" height="100" fill="url(%23matrix)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Typography */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--matrix-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
  font-family: 'Courier New', monospace;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(0, 255, 65, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Feature Sections */
.features-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.8);
}

.feature-card {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--matrix-green);
  box-shadow: 0 8px 25px rgba(0, 255, 65, 0.2);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--matrix-green);
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  color: var(--matrix-green);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(0, 255, 65, 0.8);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.95);
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 65, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--matrix-green);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.stat-value {
  font-size: 3rem;
  font-weight: bold;
  color: var(--matrix-green);
  font-family: 'Courier New', monospace;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(0, 255, 65, 0.8);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(13, 13, 13, 0.95));
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--matrix-green);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(0, 255, 65, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Terminal Display */
.terminal-display {
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid var(--matrix-green);
  border-radius: 8px;
  padding: 2rem;
  font-family: 'Courier New', monospace;
  color: var(--matrix-green);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
  max-width: 600px;
  margin: 2rem auto;
}

.terminal-line {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.terminal-prompt::before {
  content: "$ ";
  color: rgba(0, 255, 65, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .features-section,
  .stats-section,
  .cta-section {
    padding: 3rem 0;
  }
  
  .feature-card,
  .stat-item {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .feature-card,
  .stat-item {
    padding: 1rem;
  }
}