:root {
  --bg: #1a1a1a;
  --bg-alt: #222222;
  --fg: #f0ece4;
  --fg-muted: #a39e94;
  --accent: #e86d3a;
  --accent-light: #f0945f;
  --surface: #2a2a2a;
  --border: #3a3a3a;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10% 60px;
  position: relative;
  background: linear-gradient(160deg, #1a1a1a 0%, #2a1f1a 50%, #1a1a1a 100%);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  font-family: var(--font-display);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* How It Works */
.how-it-works {
  padding: 120px 10%;
  background: var(--bg-alt);
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 64px;
  letter-spacing: -1px;
}

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

.step {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.2s;
}

.step:hover {
  border-color: var(--accent);
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Split Sections */
.for-workers,
.for-businesses {
  padding: 120px 10%;
}

.for-businesses {
  background: var(--bg-alt);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-lede {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 0;
  line-height: 1.6;
}

.benefits li strong {
  color: var(--fg);
}

/* Visual Cards */
.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.card-skills,
.card-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.card-skills span,
.card-industries span {
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--fg-muted);
}

.business-card .card-industries span {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(232, 109, 58, 0.08);
}

/* Closing */
.closing {
  padding: 140px 10%;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #2a1f1a 100%);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 40px 10%;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* CTA Buttons (landing page) */
.hero-ctas, .closing-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: -0.2px;
}
.cta-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.cta-secondary {
  display: inline-block;
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-secondary:hover { border-color: var(--accent); background: rgba(232,109,58,0.06); }

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 6% 40px;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .how-it-works,
  .for-workers,
  .for-businesses {
    padding: 80px 6%;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse {
    direction: ltr;
  }

  .closing {
    padding: 80px 6%;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}