:root {
  --bg: #0f0f14;
  --surface: #16161f;
  --surface2: #1e1e2a;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8894;
  --border: rgba(255, 255, 255, 0.06);
  --open-green: #22c55e;
  --open-green-dim: rgba(34, 197, 94, 0.1);
  --assigned-blue: #60a5fa;
  --assigned-blue-dim: rgba(96, 165, 250, 0.1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { font-size: 18px; color: var(--amber); line-height: 1; }
.logo-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav-tagline { color: var(--text-muted); font-size: 13px; letter-spacing: 0.02em; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 64px;
  min-height: 520px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* JOB WIDGET */
.job-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.widget-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.job-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.job-item:last-of-type { border-bottom: none; }

.job-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.job-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.job-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.job-status.open {
  background: var(--open-green-dim);
  color: var(--open-green);
}

.job-status.assigned {
  background: var(--assigned-blue-dim);
  color: var(--assigned-blue);
}

.widget-footer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--open-green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* STATS BAR */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

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

/* SECTION SHARED */
.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 560px;
}

/* LIVE FEED / HOW IT WORKS */
.livefeed {
  padding: 80px 48px;
  background: var(--bg);
}

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

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--amber);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* JOB TYPES */
.job-types {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.type-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.type-card:hover { border-color: rgba(245, 158, 11, 0.2); }

.type-icon {
  font-size: 24px;
  color: var(--amber);
  margin-bottom: 12px;
  font-weight: 700;
}

.type-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.type-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.closing-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.closing-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-tagline { color: var(--text-muted); font-size: 13px; flex: 1; }
.footer-meta { font-size: 12px; color: var(--text-muted); opacity: 0.5; width: 100%; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 40px; }
  .hero-right { display: none; }
  .stats-bar { flex-direction: column; gap: 16px; padding: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .types-grid { grid-template-columns: 1fr; gap: 12px; }
  .livefeed, .job-types, .closing { padding: 60px 24px; }
  .footer { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .nav-tagline { display: none; }
}