/* CSS RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #191919;
  --border: #222222;
  --border2: #2a2a2a;
  --accent: #BFFF00;
  --accent-dim: rgba(191, 255, 0, 0.08);
  --accent-dim2: rgba(191, 255, 0, 0.15);
  --text: #FFF8E6;
  --text-dim: rgba(255, 248, 230, 0.55);
  --text-muted: rgba(255, 248, 230, 0.3);
  --old-icon: #666;
  --lime-glow: 0 0 40px rgba(191, 255, 0, 0.12);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* GRID PATTERN BG */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(191,255,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,255,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(191,255,0,0.2);
  padding: 6px 14px;
  border-radius: 99px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.status-label { font-size: 12px; font-weight: 500; color: var(--accent); letter-spacing: 0.3px; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(191,255,0,0.2);
}

.eyebrow-divider { color: var(--text-muted); font-size: 14px; }

.eyebrow-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.headline-accent {
  font-style: normal;
  color: var(--accent);
  display: block;
  text-shadow: var(--lime-glow);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 400;
}

/* PIPELINE VIZ */
.hero-pipeline-viz {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pipeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pipeline-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
}

.pipeline-bar {
  width: 60px;
  height: 3px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.pipeline-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: fillBar 2s ease-in-out infinite;
}

@keyframes fillBar {
  0% { width: 10%; }
  50% { width: 90%; }
  100% { width: 10%; }
}

.pipeline-arrow { padding: 0 8px; }

/* CANDIDATE CARDS */
.hero-visual { position: relative; }

.candidate-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cand-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cand-card:hover { transform: translateX(-4px); border-color: rgba(191,255,0,0.2); }

.cand-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim2);
  border: 1px solid rgba(191,255,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.cand-info { flex: 1; min-width: 0; }

.cand-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; display: block; }

.cand-role { font-size: 12px; color: var(--text-dim); display: block; margin-bottom: 8px; }

.cand-score { display: flex; align-items: center; gap: 8px; }

.score-bar {
  flex: 1;
  height: 4px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
  max-width: 100px;
}

.score-fill { height: 100%; background: var(--accent); border-radius: 2px; }

.score-num { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--accent); }

.cand-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 99px;
  flex-shrink: 0;
}

.cand-status.scheduled { background: rgba(191,255,0,0.15); color: var(--accent); border: 1px solid rgba(191,255,0,0.3); }
.cand-status.outreach { background: rgba(100,100,100,0.15); color: var(--text-dim); border: 1px solid var(--border2); }
.cand-status.screening { background: rgba(191,255,0,0.08); color: var(--text-dim); border: 1px solid var(--border2); }

/* AGENT BADGE */
.agent-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 99px;
  padding: 8px 16px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  width: fit-content;
}

.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px;
  position: relative;
  z-index: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
}

.proof-item { padding: 0 40px; }

.proof-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 8px;
}

.proof-label { font-size: 13px; color: var(--text-dim); line-height: 1.4; max-width: 120px; }

.proof-divider { width: 1px; height: 60px; background: var(--border2); }

/* FEATURES */
.features {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-header { text-align: center; margin-bottom: 72px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.features-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(191,255,0,0.25);
  transform: translateY(-2px);
}

.feature-card:nth-child(1) { border-left: 2px solid var(--accent); }

.feature-icon-box {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid rgba(191,255,0,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-detail span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* PIPELINE SECTION */
.pipeline-section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pipeline-headline { text-align: center; margin-bottom: 60px; }

.pipeline-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.pipeline-headline p { font-size: 15px; color: var(--text-dim); }

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

.comp-col { background: var(--surface); padding: 40px; }

.comp-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.old-label { color: var(--text-muted); }
.new-label { color: var(--accent); }

.comp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
}

.comp-row:last-of-type { border-bottom: none; }

.comp-icon { flex-shrink: 0; }

.comp-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
}

.comp-result {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.old-result { color: var(--text-muted); text-decoration: line-through; }
.new-result { color: var(--accent); }

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-content { max-width: 760px; }

.manifesto-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.manifesto-headline em { font-style: normal; color: var(--accent); }

.manifesto-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

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

.closing-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.time-saved { text-align: center; padding: 0 48px; }

.time-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.time-unit {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.time-divider {
  width: 1px;
  height: 48px;
  background: var(--border2);
}

/* FOOTER */
.footer {
  padding: 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.footer-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.footer-copy { font-size: 11px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 48px; }
  .hero-visual { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .proof-divider { display: none; }
  .features { padding: 80px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .pipeline-section { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .closing-viz { flex-direction: column; gap: 24px; }
  .time-divider { display: none; }
  .time-saved { padding: 0; }
}
