:root {
  --bg: #0A0F1C;
  --bg-alt: #111827;
  --bg-cream: #F5F0E8;
  --fg: #F5F0E8;
  --fg-muted: #9CA3AF;
  --accent: #00E5C3;
  --accent-dark: #00B89C;
  --ink: #0A0F1C;
  --nav-height: 64px;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,229,195,0.1);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid rgba(0,229,195,0.08);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: #9CA3AF;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* AGENT WINDOW */
.agent-window {
  background: #0F1A2E;
  border: 1px solid rgba(0,229,195,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0,229,195,0.06);
}
.agent-window-header {
  background: rgba(0,229,195,0.08);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(0,229,195,0.12);
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }
.agent-title {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-left: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.agent-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.msg {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.msg-bot .msg-avatar { background: rgba(0,229,195,0.15); color: var(--accent); }
.msg-user { flex-direction: row-reverse; }
.msg-user .msg-avatar { background: rgba(255,255,255,0.1); color: #fff; }
.msg-user .msg-text { background: rgba(0,229,195,0.12); border: 1px solid rgba(0,229,195,0.15); }
.msg-avatar {
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.msg-text {
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 260px;
  color: var(--fg);
}
.msg-bot .msg-text {
  background: rgba(0,229,195,0.07);
  border: 1px solid rgba(0,229,195,0.1);
}

/* SECTION COMMONS */
.section-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  max-width: 680px;
}

/* PROBLEM */
.problem {
  padding: 5rem 2rem;
  background: var(--bg);
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-header { margin-bottom: 3.5rem; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: #0F1A2E;
  border: 1px solid rgba(0,229,195,0.1);
  border-radius: 16px;
  padding: 1.75rem;
}
.problem-icon {
  width: 44px; height: 44px;
  background: rgba(0,229,195,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.problem-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.problem-card p {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
}
.problem-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}
.problem-quote blockquote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #9CA3AF;
  font-style: italic;
  line-height: 1.5;
}

/* PLAYBOOK */
.playbook {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.playbook-inner { max-width: 1200px; margin: 0 auto; }
.playbook-header { margin-bottom: 3.5rem; }
.playbook-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}
.playbook-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.playbook-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0,229,195,0.25);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.25rem;
}
.step-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.65;
  max-width: 580px;
}
.playbook-services {
  background: rgba(0,229,195,0.06);
  border: 1px solid rgba(0,229,195,0.12);
  border-radius: 12px;
  padding: 1.5rem;
}
.services-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.service-tag {
  background: rgba(0,229,195,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,229,195,0.2);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* OUTCOMES */
.outcomes {
  padding: 5rem 2rem;
  background: var(--bg);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,229,195,0.15);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.outcome-block {
  background: #0A0F1C;
  padding: 2.5rem 2rem;
  text-align: center;
}
.outcome-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.outcome-label {
  font-size: 0.82rem;
  color: #9CA3AF;
  line-height: 1.5;
}
.outcomes-verticals { }
.verticals-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.verticals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.vertical-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--fg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.vertical-emoji {
  display: inline-block;
  width: 18px; height: 18px;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--bg-cream);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
}
.manifesto-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* FOOTER */
.footer {
  padding: 3rem 2rem 2rem;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-top: 0.25rem;
}
.footer-links {
  font-size: 0.85rem;
  color: #9CA3AF;
}
.footer-copy {
  width: 100%;
  font-size: 0.75rem;
  color: #4B5563;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-stats { gap: 1.25rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .playbook-step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-num { font-size: 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .agent-window { transform: scale(0.85); transform-origin: top left; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}