:root {
  --bg: #080D18;
  --surface: #0D1526;
  --surface-2: #111D33;
  --fg: #E8EDF5;
  --fg-muted: #7A8899;
  --cyan: #00E5FF;
  --cyan-dim: rgba(0, 229, 255, 0.12);
  --amber: #FF9500;
  --amber-dim: rgba(255, 149, 0, 0.12);
  --border: rgba(0, 229, 255, 0.1);
  --radius: 8px;
}

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8,13,24,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-logo strong { color: var(--cyan); }
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav-app-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-app-link:hover { color: var(--fg); }
.nav-cta-btn {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { opacity: 0.85; }

/* Sections shared */
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 32px;
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--cyan);
}
.hero-sub {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat {}
.stat-val {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Lead card */
.lead-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 40px rgba(0,229,255,0.08), 0 24px 48px rgba(0,0,0,0.4);
}
.lead-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.lead-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.lead-card-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cyan);
  padding: 2px 8px;
  border-radius: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}
.lead-card-company {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.lead-card-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.score-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 80px;
  flex-shrink: 0;
}
.score-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #00BFFF);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,229,255,0.4);
}
.score-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  width: 28px;
  text-align: right;
}
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.signal-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 4px;
  padding: 3px 8px;
}
.signal-tag.amber {
  color: var(--amber);
  border-color: rgba(255,149,0,0.3);
}
.outreach-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.outreach-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.outreach-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-style: italic;
}
.lead-card-actions {
  display: flex;
  gap: 12px;
}
.action-approve, .action-edit {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}
.action-approve {
  background: var(--cyan);
  color: var(--bg);
  font-weight: 500;
}
.action-edit {
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

/* How it works */
.howitworks {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.loop-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 60px;
}
.loop-step { padding: 0 8px; }
.step-icon {
  margin-bottom: 16px;
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.loop-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
}

/* Why autonomous */
.whyautonomous {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.whyautonomous-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.whyautonomous-body {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.comparison-table {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 12px 16px;
  gap: 8px;
}
.comp-header {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.comp-col-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.comp-col-label.cyan { color: var(--cyan); }
.comp-row {
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-feat {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg);
}
.comp-val {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
}
.comp-val.cyan { color: var(--cyan); }

/* Radar */
.radar-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.radar-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.radar-svg { width: 220px; height: 220px; }
.radar-legend {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
}
.leg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.leg-dot.amber { background: var(--amber); }
.leg-dot.cyan { background: var(--cyan); }
.leg-dot.dim { background: rgba(0,229,255,0.3); }

/* ICP */
.icp {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.icp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.icp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.icp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.icp-card:hover { border-color: rgba(0,229,255,0.3); }
.icp-icon { margin-bottom: 20px; }
.icp-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.icp-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.icp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.icp-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 4px;
  padding: 3px 8px;
}

/* Manifesto */
.manifesto {
  padding: 100px 0 120px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-quote {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--fg);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 40px;
}
.manifesto-body {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.manifesto-stat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.mstat { text-align: center; }
.mstat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.mstat-desc {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.mstat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.manifesto-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.manifesto-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.manifesto-cta-btn:hover { opacity: 0.85; }
.manifesto-cta-note {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.footer-logo strong { color: var(--cyan); }
.footer-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  text-align: right;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
}

/* Waitlist form */
.waitlist-wrap {
  margin-bottom: 40px;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}
.waitlist-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--fg-muted); }
.waitlist-input:focus { border-color: rgba(0,229,255,0.5); }
.waitlist-btn {
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.waitlist-btn:hover { opacity: 0.85; }
.waitlist-note {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.waitlist-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .whyautonomous-inner { grid-template-columns: 1fr; }
  .icp-cards { grid-template-columns: 1fr; }
  .loop-diagram { grid-template-columns: 1fr; gap: 24px; }
  .loop-arrow { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .manifesto-stat-row { flex-direction: column; gap: 24px; }
  .mstat-sep { width: 40px; height: 1px; }
  .footer-tagline { text-align: left; }
  .waitlist-form { flex-direction: column; }
  .waitlist-btn { width: 100%; }
}
