:root {
  --bg: #0d0f14;
  --bg-2: #13161d;
  --bg-3: #1a1e28;
  --fg: #f0f0f0;
  --fg-2: #9ca3af;
  --fg-3: #6b7280;
  --accent: #fbbf24;
  --accent-dim: rgba(251, 191, 36, 0.15);
  --border: rgba(255,255,255,0.07);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-tagline {
  color: var(--fg-3);
  font-size: 13px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Section shared */
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Hero */
.hero {
  padding: 80px 32px 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.title-accent {
  color: var(--accent);
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.4;
  border-radius: 2px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-number {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.meta-label {
  font-size: 12px;
  color: var(--fg-3);
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.workflow-diagram {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.wf-node {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wf-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  flex-shrink: 0;
}
.wf-ai-icon {
  background: var(--accent-dim);
  border-color: rgba(251,191,36,0.2);
  color: var(--accent);
}
.wf-done-icon {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
  color: #22c55e;
}
.wf-node-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}
.wf-node-sub {
  color: var(--fg-3);
  font-weight: 400;
}
.wf-arrow {
  padding: 12px 0 12px 32px;
}
.workflow-tag {
  position: absolute;
  bottom: -12px;
  right: 24px;
  background: var(--accent);
  color: #0d0f14;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Problem section */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 640px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.problem-stat {
  background: var(--bg);
  padding: 40px 32px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.stat-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
}
.problem-body {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 640px;
  line-height: 1.7;
}

/* Features */
.features {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 56px;
}
.features-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--bg-2);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.pricing-retainer {
  border-color: rgba(251,191,36,0.3);
  background: linear-gradient(135deg, var(--bg) 0%, rgba(251,191,36,0.04) 100%);
}
.pricing-card-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.pricing-per {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-2);
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-dim);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4 8 7 11 12 5' stroke='%23fbbf24' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #0d0f14;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

/* Process */
.process {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.process-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}
.step-connector {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 24px 24px 0;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 36px;
}

/* Manifesto */
.manifesto {
  background: var(--accent);
  padding: 100px 32px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote {
  position: relative;
}
.quote-mark {
  margin-bottom: 32px;
}
.manifesto-text {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: #0d0f14;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.manifesto-attribution {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #0d0f14;
  opacity: 0.6;
}

/* Closing */
.closing {
  background: var(--bg);
  padding: 100px 32px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-vision {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.vision-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.vision-text {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 520px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.footer-tagline {
  color: var(--fg-3);
  font-size: 13px;
  margin-left: auto;
}
.footer-copy {
  color: var(--fg-3);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 48px 24px 64px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    display: none;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-tagline {
    margin-left: 0;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 16px;
  }
  .meta-divider {
    display: none;
  }
}

/* ===== DEMO PAGE ===== */
.demo-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.demo-header {
  padding: 56px 0 48px;
}
.demo-header-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.demo-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.demo-subtitle {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.6;
}

/* Stats bar */
.demo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.demo-stat {
  background: var(--bg-2);
  padding: 24px;
  text-align: center;
}
.demo-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.demo-stat-label {
  font-size: 12px;
  color: var(--fg-3);
}

/* Main grid: form + feed */
.demo-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  align-items: start;
}

/* Workflow steps */
.workflow-steps {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}
.workflow-steps-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
}
.workflow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.workflow-step + .workflow-step {
  border-top: 1px solid var(--border);
}
.step-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.step-icon.lead  { background: var(--accent-dim); color: var(--accent); }
.step-icon.ai    { background: rgba(139,92,246,0.15); color: #a78bfa; }
.step-icon.email { background: rgba(34,197,94,0.1); color: #22c55e; }
.step-icon.crm   { background: rgba(59,130,246,0.1); color: #60a5fa; }
.step-label { font-size: 14px; color: var(--fg); }
.step-sub   { font-size: 12px; color: var(--fg-3); }

/* Demo form */
.demo-form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}
.demo-form-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg-3);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--fg-3); }

.btn-primary {
  width: 100%;
  background: var(--accent);
  color: #0d0f14;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

/* Result card */
.result-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: none;
}
.result-card.visible { display: block; }
.result-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.result-tier-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.tier-hot    { background: rgba(239,68,68,0.15); color: #f87171; }
.tier-warm   { background: rgba(251,191,36,0.15); color: var(--accent); }
.tier-cold   { background: rgba(107,114,128,0.15); color: var(--fg-3); }
.result-score {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  margin-left: auto;
}
.result-score span {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-3);
}
.result-reason {
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-3);
  border-radius: 8px;
}
.result-email-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.result-email-subject {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.result-email-body {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.6;
  white-space: pre-wrap;
  padding: 12px;
  background: var(--bg-3);
  border-radius: 8px;
}

/* Leads feed */
.leads-feed-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.leads-feed-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.leads-feed-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.leads-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #22c55e;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
}

.lead-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.lead-item:last-child { border-bottom: none; }
.lead-item:hover { background: var(--bg-3); }
.lead-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.lead-company {
  font-size: 12px;
  color: var(--fg-3);
}
.lead-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
}
.status-qualified { background: rgba(34,197,94,0.1); color: #22c55e; }
.status-warm      { background: rgba(251,191,36,0.1); color: var(--accent); }
.status-unqualified { background: rgba(107,114,128,0.1); color: var(--fg-3); }
.status-new       { background: var(--bg-3); color: var(--fg-3); }
.status-pending   { background: rgba(139,92,246,0.1); color: #a78bfa; }
.lead-score {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  min-width: 36px;
  text-align: right;
}
.score-high   { color: #22c55e; }
.score-mid    { color: var(--accent); }
.score-low    { color: var(--fg-3); }
.lead-time {
  font-size: 11px;
  color: var(--fg-3);
  min-width: 60px;
  text-align: right;
}
.leads-empty {
  padding: 48px;
  text-align: center;
  color: var(--fg-3);
  font-size: 14px;
}

/* Docs section */
.demo-docs {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.demo-docs-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.demo-docs-subtitle {
  font-size: 15px;
  color: var(--fg-2);
  margin-bottom: 40px;
}
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.docs-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.docs-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.docs-card-desc {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.docs-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.docs-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.docs-step-text {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; }
  .demo-stats { grid-template-columns: 1fr 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .lead-item { grid-template-columns: 1fr auto auto; }
  .lead-time { display: none; }
}