.hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.15), transparent),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(34, 211, 238, 0.08), transparent);
}

.hero-inner { text-align: center; }

.hero-tagline {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.stats-section { padding: 60px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-num { display: block; font-size: 48px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.stat-label { font-size: 16px; color: var(--text-secondary); }

.steps-section { padding: 80px 0; }
.steps-section .section-title { margin-bottom: 12px; }
.steps-section .section-subtitle { margin-bottom: 48px; }

.section-title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-secondary); text-align: center; margin-bottom: 48px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}

.step-card:hover { border-color: rgba(212, 175, 55, 0.4); }

.step-num {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0f;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-card h3 { font-size: 18px; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--text-secondary); }

.recruit-preview { padding: 80px 0; background: var(--bg-primary); }
.recruit-preview .section-subtitle { margin-bottom: 40px; }

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.recruit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.recruit-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.recruit-card-header {
  padding: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.recruit-badge {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.recruit-badge-s { background: var(--gold); color: #0a0a0f; }
.recruit-badge-a { background: var(--neon-purple); color: white; }
.recruit-badge-b { background: var(--text-muted); color: white; }

.recruit-card-body { padding: 20px; }
.recruit-card h3 { font-size: 18px; margin-bottom: 8px; }
.recruit-card .recruit-genre { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.recruit-card .recruit-roles { font-size: 13px; color: var(--text-muted); }
.section-more { text-align: center; }

.why-section { padding: 80px 0; }
.why-section .section-subtitle { margin-bottom: 48px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-secondary); }

@media (max-width: 900px) {
  .stats-grid, .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 36px; }
}
