:root {
  --bg: #0d0d0d;
  --bg-surface: #141414;
  --bg-card: #1a1a1a;
  --fg: #f2f2f0;
  --fg-muted: #888;
  --accent: #c8f135;
  --accent-dim: rgba(200, 241, 53, 0.12);
  --red: #ff4545;
  --yellow: #ffd60a;
  --green: #2ecc71;
  --border: #2a2a2a;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.wordmark .accent { color: var(--accent); }
nav { display: flex; gap: 32px; }
nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 140px 32px 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Visual */
.hero-visual { position: relative; }
.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.terminal-title { font-size: 12px; color: var(--fg-muted); margin-left: 8px; font-family: 'DM Sans', sans-serif; }
.terminal-body { padding: 16px; }
.log-line { font-family: 'DM Sans', monospace; font-size: 12px; color: var(--fg-muted); margin-bottom: 8px; }
.log-line .ts { color: #444; margin-right: 8px; }
.log-line .ok { color: #2ecc71; margin-right: 8px; }
.log-line .muted { color: #666; margin-right: 8px; }
.terminal-stats {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 14px 16px;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Agent Feed */
.agent-feed {
  padding: 0 32px 80px;
  background: var(--bg);
}
.feed-inner { max-width: 1200px; margin: 0 auto; }
.feed-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Syne', sans-serif;
  margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.cards-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.candidate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #0d0d0d;
  flex-shrink: 0;
}
.c-name { font-weight: 600; font-size: 14px; }
.c-role { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.match-badge {
  margin-left: auto;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}
.card-actions { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.channel-tag {
  background: #222;
  color: var(--fg-muted);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}
.sent-badge {
  background: #1a3a1a;
  color: #2ecc71;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}
.reply-badge {
  background: #1a3a1a;
  color: var(--accent);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}
.scheduled-badge {
  background: #1a2a3a;
  color: #6bcfff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

/* How it Works */
.how-it-works { padding: 80px 32px; background: var(--bg-surface); }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hiw-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 60px;
  color: var(--fg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* What It Does */
.what-it-does { padding: 80px 32px; background: var(--bg); }
.wid-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.wid-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.wid-body { font-size: 16px; color: var(--fg-muted); line-height: 1.7; }
.capability-list { display: flex; flex-direction: column; gap: 0; }
.cap {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cap:first-child { border-top: 1px solid var(--border); }
.cap-icon {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.cap-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--fg); margin-bottom: 4px; }
.cap-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Why section */
.why { padding: 80px 32px; background: var(--bg-surface); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.quote-block { margin-bottom: 60px; }
.quote {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 12px;
}
.quote-source { font-size: 13px; color: var(--fg-muted); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.why-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.why-item p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* Closing */
.closing { padding: 100px 32px; background: var(--bg); text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing p { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; }
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: inline-block;
  padding: 20px 40px;
  border-radius: var(--radius);
  background: var(--accent-dim);
}

/* Footer */
.site-footer { padding: 40px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-wordmark .accent { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-links { font-size: 12px; color: var(--fg-muted); display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .wid-inner { grid-template-columns: 1fr; gap: 40px; }
  .cards-scroll { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 24px 60px; }
  nav { display: none; }
  .terminal-stats { gap: 16px; }
}