:root {
  --bg: #1c1917;
  --bg-raised: #292524;
  --bg-card: #1e1c1a;
  --fg: #fafaf9;
  --fg-muted: #a8a29e;
  --fg-subtle: #78716c;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --border: #292524;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-subtle);
  font-weight: 300;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 520px;
}
.artifact-card {
  background: var(--bg-raised);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.artifact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.artifact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.artifact-metric {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}
.artifact-detail {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.artifact-stat {
  font-size: 12px;
  color: var(--fg-subtle);
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.outcomes-inner { max-width: 1400px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.outcome-item {
  padding: 40px 48px 40px 0;
  border-right: 1px solid var(--border);
}
.outcome-item:last-child { border-right: none; }
.outcome-item:not(:first-child) { padding-left: 48px; }
.outcome-value {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.outcome-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* WORKERS */
.workers {
  padding: 100px 48px;
}
.workers-inner { max-width: 1400px; margin: 0 auto; }
.workers-header { margin-bottom: 64px; }
.workers-intro {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 20px;
}
.workers-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.worker-row {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.worker-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.worker-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}
.worker-metric {
  font-size: 13px;
  color: var(--accent);
  font-weight: 400;
  text-align: right;
}
.workers-add {
  margin-top: 32px;
  font-size: 13px;
  color: var(--fg-subtle);
}
.workers-add-label {
  color: var(--accent);
  font-weight: 500;
  margin-right: 8px;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-raised);
}
.manifesto-inner { max-width: 1400px; margin: 0 auto; }
.manifesto-pull { margin-bottom: 80px; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--fg-muted);
  max-width: 860px;
  font-style: italic;
}
.manifesto-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.manifesto-col h3 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 24px;
}
.manifesto-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.manifesto-col ul li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}
.manifesto-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
}
.closing-inner { max-width: 1400px; margin: 0 auto; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 72px;
}
.closing-entry {
  display: flex;
  align-items: center;
  gap: 0;
}
.entry-card {
  flex: 1;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.entry-step {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.entry-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}
.entry-arrow {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.entry-arrow::after {
  content: '>';
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-desc {
  font-size: 12px;
  color: var(--fg-subtle);
  font-weight: 300;
}
.footer-note {
  font-size: 12px;
  color: var(--fg-subtle);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-item { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .outcome-item:last-child { border-bottom: none; }
  .outcome-item:not(:first-child) { padding-left: 0; }
  .worker-row { grid-template-columns: 160px 1fr; }
  .worker-metric { display: none; }
  .manifesto-two { grid-template-columns: 1fr; gap: 40px; }
  .closing-entry { flex-direction: column; gap: 0; }
  .entry-arrow { width: 100%; height: 32px; }
}

@media (max-width: 640px) {
  .hero, .outcomes, .workers, .manifesto, .closing { padding: 64px 24px; }
  .nav { padding: 16px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .worker-row { grid-template-columns: 1fr; gap: 8px; }
}

/* SIGNUP FORM */
.hero-signup {
  margin-top: 24px;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup-input {
  background: var(--bg);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--fg);
  font-family: var(--sans);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.signup-input::placeholder { color: var(--fg-subtle); }
.signup-input:focus { border-color: var(--accent); }
.signup-btn {
  background: var(--accent);
  color: #1c1917;
  border: none;
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.02em;
}
.signup-btn:hover:not(:disabled) { background: var(--accent-dim); }
.signup-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.signup-msg {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}