:root {
  --bg: #0D0D0D;
  --bg-warm: #151210;
  --fg: #F5F0EB;
  --fg-muted: #A39B91;
  --accent: #E8572A;
  --accent-glow: rgba(232, 87, 42, 0.15);
  --accent-light: #FF8C5A;
  --gold: #D4A853;
  --gold-muted: rgba(212, 168, 83, 0.2);
  --surface: #1A1714;
  --surface-light: #231F1A;
  --border: rgba(245, 240, 235, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, var(--accent-glow), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, var(--gold-muted), transparent),
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(232, 87, 42, 0.02) 3deg, transparent 6deg);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Problem */
.problem {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.problem-content {
  max-width: 1100px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 56px;
  max-width: 700px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
}

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--fg);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Features */
.features {
  padding: 120px 24px;
  background: var(--bg);
}

.features-content {
  max-width: 900px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.features-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}

.feature:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  min-width: 40px;
  padding-top: 2px;
}

.feature-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.feature-body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How */
.how {
  padding: 120px 24px;
  background: var(--bg-warm);
}

.how-content {
  max-width: 1000px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 48px;
  text-align: center;
}

.how-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.step-marker {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.step-marker.employer {
  background: var(--gold);
  color: var(--bg);
}

.step-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-item {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--fg);
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.step-arrow {
  color: var(--fg-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Closing */
.closing {
  position: relative;
  padding: 140px 24px;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}

.closing-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, var(--accent-glow), transparent),
    radial-gradient(ellipse 50% 40% at 50% 0%, var(--gold-muted), transparent);
}

.closing-content {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.closing-markets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.market-tag {
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 48px 24px;
  background: var(--bg);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
}

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

.footer-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    flex-direction: column;
    gap: 12px;
  }

  .step-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

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

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .closing-markets {
    gap: 8px;
  }

  .market-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px;
    min-height: auto;
  }

  .problem, .features, .how, .closing {
    padding: 80px 16px;
  }

  .step-item {
    min-width: auto;
  }
}