/* LeadChef — Custom Theme */

:root {
  --bg: #0d0d1a;
  --bg-card: #12121f;
  --bg-surface: #1a1a2e;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --text-primary: #faf9f7;
  --text-secondary: #a8a3b5;
  --text-muted: #5a566d;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.action-label {
  font-size: 14px;
  color: var(--text-muted);
}
.action-link {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(245,166,35,0.4);
  transition: border-color 0.2s;
}
.action-link:hover { border-color: var(--accent); }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.proof-item:first-child { padding-left: 0; }
.proof-stat {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.proof-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* AGENT DISPLAY */
.agent-display {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.agent-header {
  background: var(--bg-surface);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}
.agent-dot.active {
  background: #22c55e;
  animation: pulse 2s infinite;
}
.agent-body {
  padding: 16px;
}
.agent-log {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.log-entry {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.log-time {
  color: var(--text-muted);
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
}
.log-action {
  color: var(--text-secondary);
}
.log-entry.found .log-action { color: #60a5fa; }
.log-entry.writing .log-action { color: var(--accent); }
.log-entry.sent .log-action { color: #22c55e; }
.agent-status {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.status-bar {
  height: 3px;
  background: var(--bg-surface);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.status-fill {
  height: 100%;
  width: 45%;
  background: var(--accent);
  border-radius: 2px;
  animation: slideRight 3s ease-in-out infinite;
}
@keyframes slideRight {
  0% { width: 10%; }
  50% { width: 80%; }
  100% { width: 45%; }
}
.status-text {
  font-size: 11px;
  color: var(--text-muted);
}

/* SECTION COMMON */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 48px;
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.step-icon {
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* FEATURES */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 32px;
}
.feature-icon {
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes-content {
  margin-bottom: 48px;
}
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--text-primary);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.outcome {
  background: var(--bg-card);
  padding: 32px;
}
.outcome-stat {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.outcome-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.outcome-detail {
  font-size: 13px;
  color: var(--text-muted);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.manifesto-attribution {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 64px;
}
.manifesto-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.cta-link {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-link:hover { opacity: 0.85; }

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-tagline { display: none; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
}