:root {
  --bg: #0d0d14;
  --surface: #14141f;
  --surface-2: #1c1c2a;
  --fg: #f0ede6;
  --fg-muted: #8a8799;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --border: rgba(255, 255, 255, 0.07);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* NAV */
.nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-family: var(--font-head);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 480px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Hero Diagram */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-diagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.diagram-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 110px;
  text-align: center;
}
.node-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}
.node-sub {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.node-employee { border-color: rgba(255,255,255,0.15); }
.node-claude { border-color: var(--accent); }
.node-automation { border-color: rgba(255,255,255,0.15); }
.diagram-arrow { display: flex; align-items: center; }

/* PROBLEM */
.problem {
  padding: 6rem 0;
  background: var(--surface);
}
.problem-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.problem-label, .process-label, .services-label, .outcomes-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.problem-headline, .process-headline, .services-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 600px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.problem-icon {
  margin-bottom: 1.25rem;
}
.problem-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.problem-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 6rem 0;
}
.process-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 1rem;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* SERVICES */
.services {
  padding: 6rem 0;
  background: var(--surface);
}
.services-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.service-icon {
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* OUTCOMES */
.outcomes {
  padding: 6rem 0;
}
.outcomes-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.outcomes-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.outcomes-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.outcomes-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.outcome-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.outcome-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.outcomes-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  position: relative;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}
.outcomes-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.closing-tagline {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: var(--font-head);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-right { order: -1; }
  .hero-diagram { gap: 0.25rem; }
  .diagram-node { min-width: 85px; padding: 0.75rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; background: linear-gradient(180deg, var(--accent), transparent); }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .outcomes-numbers { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}