:root {
  --bg: #FDFCF9;
  --bg-alt: #F4F1EC;
  --fg: #1A1814;
  --accent: #C8783A;
  --accent-light: #F2E8D9;
  --navy: #1C2B4A;
  --muted: #6B6560;
  --border: #E2DDD6;
  --radius: 8px;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', 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.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.topbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.wordmark {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.suffix { color: var(--accent); }

/* HERO */
.hero {
  padding: 80px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* DASHBOARD MOCK */
.dashboard-mock {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28,43,74,0.18), 0 4px 16px rgba(28,43,74,0.12);
}

.mock-topbar {
  background: #0D1A2E;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #FF5F57; }
.mock-dot.yellow { background: #FFBD2E; }
.mock-dot.green { background: #28C840; }

.mock-title {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.mock-body { display: flex; height: 320px; }

.mock-sidebar {
  width: 80px;
  background: #0F1D33;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.mock-nav {
  padding: 8px 12px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  cursor: pointer;
}

.mock-nav.active { color: var(--accent); border-left: 2px solid var(--accent); }

.mock-content {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.mock-header {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.mock-job {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 6px;
}

.mock-job.done { opacity: 0.35; }

.job-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.job-info { flex: 1; min-width: 0; }

.job-name {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-body);
}

.job-address {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-body);
}

.job-time {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.job-badge {
  font-size: 0.5rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(200,120,58,0.25);
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.job-badge.done { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  padding: 36px 0;
  gap: 0;
}

.stat { text-align: center; padding: 0 40px; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.3;
}

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

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-size: 1.125rem;
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.manifesto-text em { font-style: italic; color: var(--accent); font-weight: 400; }

/* FEATURES */
.features {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature:hover { background: var(--bg-alt); }

.feature-icon {
  margin-bottom: 20px;
  display: flex;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--navy);
  padding: 80px 48px;
}

.howitworks .section-title { color: #FDFCF9; }

.steps {
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.step:last-child { margin-bottom: 0; }

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #FDFCF9;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.9375rem;
  color: rgba(253,252,249,0.55);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

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

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.closing-tagline {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--accent);
  font-style: italic;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-note {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { padding: 48px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }
  .manifesto { padding: 48px 24px; }
  .features { padding: 48px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 48px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .step { gap: 20px; }
  .step-num { font-size: 2rem; width: 48px; }
}