:root {
  --bg: #0B0B0F;
  --bg-2: #111116;
  --bg-3: #18181F;
  --fg: #F0EDE8;
  --fg-2: #8A8A96;
  --fg-3: #55555F;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(255,255,255,0.07);
  --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;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-2);
  background: var(--bg-3);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  padding: 80px 32px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-2);
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,0,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats-row {
  display: flex;
  gap: 36px;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Agent Window */
.agent-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,77,0,0.05);
}
.agent-window-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.agent-dots {
  display: flex;
  gap: 6px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }
.agent-window-title { font-size: 13px; color: var(--fg-2); font-weight: 500; }
.agent-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.agent-line { display: flex; gap: 12px; align-items: flex-start; }
.agent-line-in { }
.agent-line-out { flex-direction: row-reverse; }
.agent-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.agent-msg { flex: 1; }
.agent-msg-right { text-align: right; }
.agent-name-label { font-size: 11px; color: var(--fg-3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.agent-text { font-size: 14px; color: var(--fg-2); line-height: 1.6; background: var(--bg-3); padding: 10px 14px; border-radius: 8px; }
.agent-line-out .agent-text { background: rgba(255,77,0,0.1); border: 1px solid rgba(255,77,0,0.15); }

/* Proof */
.proof { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 32px; }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-header { text-align: center; margin-bottom: 48px; }
.proof-label { font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; }
.proof-card { background: var(--bg-2); padding: 40px 24px; text-align: center; display: flex; flex-direction: column; gap: 10px; justify-content: center; min-height: 160px; }
.proof-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--fg); margin-bottom: 10px; }
.proof-desc { font-size: 14px; color: var(--fg-2); line-height: 1.5; }

/* How */
.how { padding: 100px 32px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-headline { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--fg); margin-bottom: 64px; letter-spacing: -0.02em; }
.how-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.how-step { padding: 40px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 0; }
.how-step-num { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 16px; }
.how-step-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.how-step-desc { font-size: 15px; color: var(--fg-2); line-height: 1.65; }

/* Manifesto */
.manifesto { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 32px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-text { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--fg); line-height: 1.3; margin-bottom: 32px; letter-spacing: -0.02em; }
.manifesto-text-right { text-align: right; color: var(--fg-2); }
.manifesto-cta { margin-top: 64px; padding: 40px; background: var(--accent-dim); border: 1px solid rgba(255,77,0,0.2); border-radius: 14px; text-align: center; }
.manifesto-cta-text { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--fg); margin-bottom: 8px; }
.manifesto-cta-sub { font-size: 16px; color: var(--fg-2); }

/* Pricing */
.pricing { padding: 100px 32px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-label { font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; text-align: center; margin-bottom: 16px; }
.pricing-headline { font-family: var(--font-head); font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--fg); text-align: center; margin-bottom: 56px; letter-spacing: -0.02em; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px; padding: 36px; position: relative; }
.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 24px 48px rgba(255,77,0,0.1); }
.pricing-tier { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.pricing-price { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--fg); margin-bottom: 28px; }
.pricing-per { font-size: 18px; font-weight: 400; color: var(--fg-2); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 15px; color: var(--fg-2); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em; }

/* Competitor comparison */
.comp-section { margin-top: 80px; }
.comp-header { text-align: center; margin-bottom: 40px; }
.comp-headline { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--fg); margin-bottom: 16px; letter-spacing: -0.02em; }
.comp-sub { font-size: 16px; color: var(--fg-2); max-width: 540px; margin: 0 auto; line-height: 1.6; }
.comp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table th, .comp-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border); white-space: nowrap; }
.comp-table th:first-child, .comp-table td:first-child { text-align: left; color: var(--fg-2); font-weight: 500; min-width: 180px; }
.comp-table th { background: var(--bg-2); border-bottom: 1px solid var(--border); font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--fg); }
.comp-table tbody tr:nth-child(odd) td { background: var(--bg-2); }
.comp-table tbody tr:nth-child(even) td { background: var(--bg-3); }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-scoutjet-col { background: rgba(255,77,0,0.06) !important; border-left: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.comp-scoutjet-cell { background: rgba(255,77,0,0.06) !important; border-left: 2px solid var(--accent); border-right: 2px solid var(--accent); color: var(--fg); }
.comp-check { color: #27C93F; font-weight: 700; font-size: 16px; }
.comp-partial { color: #FFBD2E; }
.comp-x { color: var(--fg-3); }
.comp-tool-name { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--accent); }
.comp-tool-model { display: block; font-size: 11px; font-weight: 400; color: var(--fg-2); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.comp-note { font-size: 12px; color: var(--fg-2); font-weight: 400; }
.comp-disclaimer { text-align: center; margin-top: 16px; font-size: 12px; color: var(--fg-3); }

/* Closing */
.closing { padding: 100px 32px; }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: var(--fg); margin-bottom: 24px; letter-spacing: -0.03em; }
.closing-sub { font-size: 20px; color: var(--fg-2); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--fg); }
.footer-desc { font-size: 14px; color: var(--fg-3); margin-top: 4px; }
.footer-copy { font-size: 13px; color: var(--fg-3); }

/* Mobile */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 42px; }
  .hero-stats-row { gap: 20px; }
  .hero-stat-num { font-size: 24px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card { padding: 28px 20px; min-height: 140px; }
  .proof-num { font-size: 40px; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .closing-headline { font-size: 36px; }
}