:root {
  --bg: #FAF8F3;
  --fg: #1A1A1A;
  --accent: #1A4D2E;
  --accent-light: #E8F0E9;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --muted: #6B7280;
  --border: #E5E0D8;
  --card-bg: #FFFFFF;
  --problem-bg: #1A4D2E;
  --problem-fg: #FAF8F3;
  --manifesto-bg: #F5F0E8;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

/* Navigation */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Automation Stack */
.automation-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.stack-card {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}
.stack-card:last-child { border-bottom: none; }
.stack-card--active { background: #F0F7F1; }
.stack-card--done { background: var(--accent-light); }
.stack-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.stack-icon--ai {
  background: #E8F0FF;
  color: #4F46E5;
}
.stack-icon--done {
  background: var(--accent-light);
  color: var(--accent);
}
.stack-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 4px;
}
.stack-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.stack-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: var(--border);
  background: var(--card-bg);
}

/* Problem */
.problem {
  background: var(--problem-bg);
  padding: 96px 48px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7BBF8A;
  margin-bottom: 24px;
}
.problem-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--problem-fg);
  margin-bottom: 64px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.problem-item {
  padding: 32px 40px;
  background: rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.problem-item:last-child { border-right: none; }
.problem-time {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
}
.problem-item p {
  font-size: 15px;
  color: rgba(250,248,243,0.7);
  line-height: 1.6;
}
.problem-bottom {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.problem-bottom p {
  font-size: 18px;
  color: rgba(250,248,243,0.85);
  max-width: 600px;
  line-height: 1.7;
}

/* Features */
.features {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 56px;
}
.features-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  padding: 40px 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  position: relative;
  z-index: 1;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Clients */
.clients {
  padding: 96px 48px;
  background: var(--manifesto-bg);
}
.clients-inner { max-width: 1200px; margin: 0 auto; }
.clients-header {
  margin-bottom: 56px;
}
.clients-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.clients-headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.clients-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.client-card {
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.client-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.client-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.client-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--card-bg);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 40px;
  border-left: 4px solid var(--amber);
  padding-left: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 680px;
}

/* Closing */
.closing {
  padding: 96px 48px;
  text-align: center;
  background: var(--accent);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--problem-fg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.closing-body {
  font-size: 18px;
  color: rgba(250,248,243,0.75);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .clients { padding: 64px 24px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .features-grid .feature-card:last-child,
  .features-grid .feature-card:nth-last-child(2) { grid-column: span 1; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; }
  .hero-divider { display: none; }
}