:root {
  --bg: rgb(225, 231, 239);
  --text: #333;
  --muted: #4a5568;
  --accent: #2d3748;
  --subtle: #e5e7eb;
  --panel: #ffffff;
  --muted-2: #6b7280;
  --soft: #eef1f5;
  --primary: #2d3748;
  --btn-border: #d1d5db;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 20px 0;
  background: transparent;
}

main { padding: 80px 0; text-align: center; }
.hero-section { margin-bottom: 60px; }
.main-heading {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
}
.subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 60px;
}
.stats::before {
  content: "👥";
  font-size: 1.2rem;
}

.form-container {
  background: white;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.form-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}
.form-group { margin-bottom: 20px; text-align: left; }
.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #f8f9fa;
}
.form-input:focus {
  outline: none;
  border-color: #667eea;
  background-color: white;
}
.form-input::placeholder { color: #9ca3af; }
.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.submit-btn {
  width: 100%;
  background: #4a5568;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover { background: #2d3748; }
.submit-btn::before { content: "✉️"; }

.what-to-expect {
  background: #f8f9fa;
  padding: 80px 0;
  margin-top: 80px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  font-family: inherit;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-item { text-align: center; padding: 20px; }
.feature-icon {
  width: 60px;
  height: 60px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}
.feature-description {
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.early-bird {
  padding: 80px 0;
  text-align: center;
}
.benefits-list {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: left;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #333;
}
.benefit-checkmark {
  color: #10b981;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.benefit-text { line-height: 1.6; }
.benefit-label { font-weight: 600; margin-right: 5px; }
.creator-cta {
  background: #4a5568;
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.creator-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 24px;
}
.creator-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: inherit;
}
.creator-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}
.creator-btn {
  background: white;
  color: #4a5568;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-bottom: 20px;
}
.creator-btn:hover { transform: translateY(-2px); }
.creator-features {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .main-heading { font-size: 2.5rem; }
  .subtitle { font-size: 1.1rem; }
  .form-container { margin: 0 20px; padding: 30px 20px; }
  .stats { flex-direction: column; gap: 5px; }
  .section-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; gap: 30px; }
  .creator-cta { margin: 0 20px; padding: 40px 30px; }
  .creator-title { font-size: 1.5rem; }
  .what-to-expect { padding: 60px 0; }
  .early-bird { padding: 60px 0; }
}
@media (max-width: 480px) {
  .main-heading { font-size: 2rem; }
}
