:root {
  --bg: #0c0c0e;
  --bg-2: #131316;
  --bg-card: #18181c;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 140px;
  line-height: 1.4;
}

/* ─── PROOF ──────────────────────────────────────────────── */
.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  font-weight: 600;
}
.proof-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}
.proof-icon { color: var(--accent); flex-shrink: 0; }

/* ─── SECTION SHARED ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}

/* ─── HOW ────────────────────────────────────────────────── */
.how { padding: 100px 32px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-title { margin-bottom: 64px; max-width: 500px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.step {
  padding: 40px;
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
}
.step:nth-child(2n) { border-left: none; }
.step:nth-child(3), .step:nth-child(4) { border-top: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ─── FEATURES ───────────────────────────────────────────── */
.features {
  background: var(--bg-2);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features .section-title { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.feature-card {
  background: var(--bg-2);
  padding: 36px 32px;
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ─── DASHBOARD ──────────────────────────────────────────── */
.dashboard { padding: 100px 32px; }
.dashboard-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dashboard-text .section-title { margin-bottom: 20px; }
.dashboard-text p { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; }
.dashboard-metrics { display: flex; gap: 40px; }
.dm { display: flex; flex-direction: column; gap: 4px; }
.dm-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.dm-label { font-size: 12px; color: var(--fg-muted); max-width: 80px; line-height: 1.4; }
.dashboard-viz { display: flex; flex-direction: column; gap: 16px; }
.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.dash-period { color: var(--fg-muted); font-weight: 400; }
.dash-bars { display: flex; flex-direction: column; gap: 12px; }
.dash-bar-row { display: flex; align-items: center; gap: 12px; }
.dash-bar-label { font-size: 13px; color: var(--fg-muted); width: 80px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; }
.dash-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.dash-bar-num { font-size: 13px; color: var(--fg); font-weight: 600; width: 30px; text-align: right; }
.dash-cal { display: flex; flex-direction: column; gap: 10px; }
.dash-cal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.dash-day { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.dash-jobs { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ─── MANIFESTO ──────────────────────────────────────────── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 32px;
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-quote {
  border-left: 3px solid var(--accent);
  padding-left: 32px;
  margin-bottom: 64px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  font-weight: 300;
}
.manifesto-cta { text-align: center; }
.manifesto-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.manifesto-cta p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); font-weight: 600; margin-bottom: 4px; }
.footer-col span:not(.footer-col-title) { font-size: 14px; color: var(--fg); opacity: 0.6; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-inner { padding: 14px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .proof-inner { flex-direction: column; gap: 20px; }
  .proof-items { gap: 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .step:nth-child(2n) { border-left: 1px solid var(--border); border-top: none; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--border); }
  .features-grid { grid-template-columns: 1fr; }
  .dashboard-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-stat-num { font-size: 28px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .how-steps { gap: 0; }
  .step { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; }
}