* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
}

header {
  padding: 16px 24px;
  border-bottom: 1px solid #1a1a1a;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #fff;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.tagline {
  font-size: 1.25rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.btn-secondary:hover {
  background: #222;
  border-color: #444;
}

section {
  padding: 60px 0;
}

section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  padding: 32px;
  background: #141414;
  border-radius: 16px;
  border: 1px solid #1a1a1a;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.step p {
  color: #888;
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature {
  padding: 24px;
  background: #141414;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #667eea;
}

.feature p {
  color: #888;
  font-size: 0.95rem;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 32px;
  min-width: 300px;
  text-align: center;
}

.pricing-card.featured {
  border-color: #667eea;
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.price span {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.pricing-card li::before {
  content: '✓';
  margin-right: 8px;
  color: #667eea;
}

.gumroad-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 12px;
}

.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: #141414;
  border-radius: 12px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #667eea;
}

.faq-item p {
  color: #888;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 40px 24px;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .pricing-card {
    min-width: 100%;
  }
}