:root {
  --bg: #FAFAF7;
  --fg: #0F0F0F;
  --accent: #FF5C00;
  --accent-dark: #E04D00;
  --light: #F2F0EB;
  --mid: #8A8A82;
  --border: #D9D6CE;
  --white: #FFFFFF;
}

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

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

h1, h2, h3, .display {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── Navigation ─── */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  padding: 6rem 2.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  max-width: 820px;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.hero-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: var(--fg);
  margin-bottom: 1.75rem;
  font-weight: 800;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat {
  flex: 1;
  min-width: 160px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── What It Does ─── */
.what-it-does {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2.5rem;
}
.wid-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wid-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.wid-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  max-width: 500px;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.cap {}
.cap-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.cap-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.cap-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.hiw-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.hiw-heading {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hiw-body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hiw-body em { color: var(--fg); font-style: normal; font-weight: 500; }

.workflow-demo {
  padding: 2.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
}
.wd-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.wd-step + .wd-step { margin-top: 0; }
.wd-connector {
  width: 1.5px;
  height: 28px;
  background: var(--border);
  margin: 0.5rem 0 0.5rem 11px;
}
.wd-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.wd-step--done .wd-bullet { border-color: var(--accent); background: var(--accent); }
.wd-step--done .wd-bullet::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.wd-step--active .wd-bullet { border-color: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(255, 92, 0, 0); }
}
.wd-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.wd-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ─── Outcomes ─── */
.outcomes {
  background: var(--fg);
  color: var(--white);
  padding: 6rem 2.5rem;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 3.5rem;
  max-width: 500px;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.outcome-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.outcome-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ─── Closing ─── */
.closing {
  padding: 7rem 2.5rem;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 700px;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.footer-tag {
  font-size: 0.8rem;
  color: var(--mid);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .capabilities, .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 40px; height: 1px; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .what-it-does, .how-it-works, .outcomes, .closing { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 480px) {
  .capabilities, .outcome-grid { grid-template-columns: 1fr; }
}