:root {
  --primary: #ff6b35;
  --primary-dark: #e0551f;
  --bg: #fdfaf6;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --card-bg: #ffffff;
  --border: #eee0d5;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary), #ffb37a);
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero .tagline {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: white;
  color: var(--primary-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Sections */
section {
  padding: 70px 0;
}

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

.subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: bold;
  margin: 0 auto 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
}

/* Skills board */
.skills-board {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.card-id {
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: 700;
  color: var(--primary);
}

.card p {
  margin-bottom: 6px;
}

.tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: #fff1e6;
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Join */
.join {
  text-align: center;
}

.join p {
  color: var(--muted);
  margin-bottom: 24px;
}

.join .btn-primary {
  background: var(--primary);
  color: white;
}

/* Workshop */
.workshop {
  text-align: center;
  background: white;
  border-top: 1px solid var(--border);
}

.coming-soon {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 18px;
  background: #f0f0f0;
  color: var(--muted);
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
