/* Landing Page */
.landing-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.landing-hero {
  text-align: center;
  margin-bottom: 60px;
}

.landing-title {
  font-size: 42px;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.landing-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
  font-style: italic;
}

.landing-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
}

.landing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.landing-button {
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
}

.landing-button.primary {
  background: #007bff;
  color: white;
  border: 2px solid #007bff;
}

.landing-button.primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

.landing-button.secondary {
  background: white;
  color: #007bff;
  border: 2px solid #007bff;
}

.landing-button.secondary:hover {
  background: #f0f7ff;
}

.landing-section {
  margin-bottom: 48px;
}

.landing-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.landing-list {
  list-style: none;
  padding: 0;
}

.landing-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.landing-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.landing-section.manifesto {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.landing-manifesto {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}