:root {
  --bg: #090909;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: #222222;
  --lime: #C8F564;
  --lime-dim: rgba(200, 245, 100, 0.12);
  --text: #f0f0f0;
  --text-muted: #888888;
  --text-dim: #555555;
  --green: #4ade80;
  --yellow: #fbbf24;
  --red: #f87171;
}

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

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,245,100,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime);
  border: 1px solid rgba(200,245,100,0.2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: #000;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover { border-color: var(--text-muted); color: var(--text); }

.hero-fine {
  font-size: 13px;
  color: var(--text-dim);
}

/* DASHBOARD MOCK */
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(200,245,100,0.04);
}

.mock-header {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.mock-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mock-title { font-size: 12px; color: var(--text-muted); flex: 1; }

.status-live {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  background: rgba(74,222,128,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.mock-body { padding: 24px; }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.mock-stat { text-align: center; }

.mock-stat-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--text);
}

.mock-stat-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-bars { margin-bottom: 24px; }

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bar-label { font-size: 11px; color: var(--text-muted); width: 80px; flex-shrink: 0; }

.bar-track { flex: 1; height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }

.bar-fill { height: 100%; background: var(--lime); border-radius: 3px; }
.bar-fill-green { background: var(--green); }
.bar-fill-yellow { background: var(--yellow); }

.bar-val { font-size: 11px; color: var(--text-muted); width: 40px; text-align: right; }

.mock-agents { border-top: 1px solid var(--border); padding-top: 16px; }

.agent-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.agent-card + .agent-card { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }

.agent-icon {
  width: 32px; height: 32px;
  background: var(--lime-dim);
  color: var(--lime);
  border: 1px solid rgba(200,245,100,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

.agent-active .agent-icon { background: var(--lime); color: #000; }

.agent-info { flex: 1; }

.agent-name { display: block; font-size: 12px; font-weight: 600; }
.agent-task { display: block; font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.agent-active .agent-task { color: var(--lime); }

.agent-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-dim); flex-shrink: 0;
}
.agent-active .agent-dot { background: var(--green); box-shadow: 0 0 8px rgba(74,222,128,0.5); }

.hero-accent-lines {
  position: absolute;
  right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 12px;
}

.accent-line {
  border-top: 1px solid rgba(200,245,100,0.15);
}
.accent-line-1 { width: 180px; }
.accent-line-2 { width: 120px; }
.accent-line-3 { width: 60px; }

/* PROBLEM */
.problem {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.problem-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.problem-label, .features-label, .process-label, .metrics-label, .objections-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.problem-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 32px;
  color: var(--text);
}

.problem-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

.features-label { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 48px 40px;
}

.feature-card-offset { background: var(--surface-2); }

.feature-icon {
  font-size: 24px;
  color: var(--lime);
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* PROCESS */
.process { padding: 100px 40px; }

.process-inner { max-width: 1100px; margin: 0 auto; }

.process-label { text-align: center; }

.process-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  text-align: center;
  margin-bottom: 80px;
  color: var(--text);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step { flex: 1; text-align: center; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--lime);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; padding: 0 20px; }

.step-connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--lime), var(--border));
  margin-top: -30px;
}

/* METRICS */
.metrics {
  padding: 80px 40px;
  background: var(--lime);
}

.metrics-inner { max-width: 1100px; margin: 0 auto; }

.metrics-label { color: #000 !important; opacity: 0.6; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.metric { text-align: center; }

.metric-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: #000;
  line-height: 1;
  margin-bottom: 12px;
}

.metric-desc { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.5; }

/* OBJECTIONS */
.objections { padding: 100px 40px; }

.objections-inner { max-width: 1100px; margin: 0 auto; }

.objections-label { text-align: center; }

.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.objection { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 36px; }

.obj-q { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px; font-style: italic; }

.obj-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* CLOSING */
.closing { padding: 120px 40px; }

.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }

.closing-accent {
  width: 60px; height: 2px;
  background: var(--lime);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 32px;
}

.closing-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* FOOTER */
.footer { padding: 40px; border-top: 1px solid var(--border); }

.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline { font-size: 13px; color: var(--text-dim); }

.footer-meta { font-size: 12px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--border), var(--lime), var(--border)); margin: 0 auto; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .objections-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 24px; }
  .problem, .features, .process, .objections, .closing { padding: 60px 24px; }
  .metrics { padding: 60px 24px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .metric-val { font-size: 48px; }
}

@media (max-width: 600px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .mock-stats { grid-template-columns: 1fr; }
}