:root {
  --bg: #0d0d0f;
  --surface: #161618;
  --surface2: #1e1e21;
  --border: #2a2a2e;
  --fg: #f0f0f0;
  --fg-muted: #888;
  --accent: #c8f240;
  --accent-dim: rgba(200, 242, 64, 0.12);
  --danger: #ff4d4d;
  --success: #3ecf8e;
  --radius: 10px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* AGENT CARD */
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 13px;
}
.agent-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}
.agent-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fg-muted);
}
.agent-dot.active { background: var(--success); }
.agent-status { color: var(--fg-muted); font-weight: 400; margin-left: auto; font-size: 12px; }
.agent-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.metric {
  background: var(--surface2);
  padding: 10px;
  text-align: center;
}
.metric-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
}
.metric-label { color: var(--fg-muted); font-size: 11px; }
.agent-activity { display: flex; flex-direction: column; gap: 8px; }
.activity-item { display: flex; gap: 10px; align-items: baseline; }
.activity-time { color: var(--fg-muted); font-size: 11px; min-width: 42px; }
.activity-text { color: var(--fg-muted); line-height: 1.4; }

/* SECTION LABELS */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 40px;
}

/* DASHBOARD */
.dashboard {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.dash-card {
  background: var(--surface);
  padding: 28px 24px;
}
.dash-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.dash-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.dash-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.dash-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* AGENTS SECTION */
.agents-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.agents-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.agents-desc {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.comparison-col {
  background: var(--surface2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comparison-col span { font-size: 13px; }
.comparison-label {
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-head);
}
.weak .comparison-label { color: var(--fg-muted); }
.weak span:not(.comparison-label) { color: var(--fg-muted); }
.strong { background: var(--accent-dim); }
.strong .comparison-label { color: var(--accent); }

/* TIMELINE WIDGET */
.timeline-widget {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 13px;
}
.timeline-header {
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 16px;
  color: var(--fg-muted);
}
.timeline-item {
  display: grid;
  grid-template-columns: 44px 1px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 12px;
}
.tl-time { color: var(--fg-muted); font-size: 12px; padding-top: 2px; }
.tl-line {
  width: 1px;
  background: var(--border);
  height: 100%;
  min-height: 20px;
}
.tl-line.active { background: var(--success); }
.tl-text { line-height: 1.4; }

/* HOW IT WORKS */
.howitworks {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {}
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.pricing .section-title { max-width: 500px; }
.pricing-sub { font-size: 16px; color: var(--fg-muted); margin-top: -28px; margin-bottom: 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1000px;
}
.pricing-card {
  background: var(--surface2);
  padding: 28px 24px;
  position: relative;
}
.pricing-card.featured { background: var(--surface); }
.pricing-popular {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li { font-size: 13px; padding-left: 16px; position: relative; color: var(--fg-muted); }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--fg-muted);
  font-style: italic;
}
.closing-cta {
  font-size: 18px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 12px; }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 30px; }
  .dashboard { padding: 48px 20px; }
  .dash-grid { grid-template-columns: 1fr; }
  .agents-section { padding: 48px 20px; }
  .agents-inner { grid-template-columns: 1fr; gap: 40px; }
  .howitworks { padding: 48px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing { padding: 48px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 20px; }
}

/* FONT LOADS INDEPENDENTLY */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Syne Regular'), local('Syne-Regular'), url('https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjEAc.woff2') format('woff2');
}