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

:root {
  --bg: #060D1A;
  --bg-card: #0C1625;
  --bg-card-hover: #111D30;
  --fg: #F4F0E8;
  --fg-muted: #9A9A8E;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --accent-green: #7DFF9C;
  --accent-orange: #FF9D5C;
  --border: rgba(244, 240, 232, 0.07);
  --radius: 10px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === 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(6, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.nav-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 77, 0, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
}

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

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.hero-accent { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* === UI CARD (dashboard mockup) === */
.ui-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,77,0,0.08);
}

.ui-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.ui-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }

.ui-card-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.ui-card-body { padding: 20px; display: flex; flex-direction: column; gap: 20px; }

.ui-stat-row { display: flex; gap: 16px; }

.ui-stat { flex: 1; background: rgba(255,255,255,0.02); border-radius: 8px; padding: 12px 14px; }

.ui-stat-value {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.ui-stat-value.accent { color: var(--accent); }
.ui-stat-value.accent-green { color: var(--accent-green); }

.ui-stat-label { font-size: 11px; color: var(--fg-muted); margin-top: 4px; font-weight: 500; }

.ui-progress-section { display: flex; flex-direction: column; gap: 6px; }

.ui-progress-label { font-size: 12px; color: var(--fg-muted); font-weight: 500; }

.ui-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.ui-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  background-image: linear-gradient(90deg, #FF4D00 0%, #FF9D5C 100%);
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.4);
}

.ui-progress-meta { font-size: 11px; color: var(--fg-muted); }

.ui-lead-list { display: flex; flex-direction: column; gap: 2px; }

.ui-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.ui-lead--active {
  background: rgba(255,77,0,0.06);
  border-color: rgba(255,77,0,0.15);
}

.ui-lead-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a2540;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.ui-lead-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-head);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-lead-role {
  font-size: 11px;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-lead-status { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }

.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-reply { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.status-sent { background: var(--accent-orange); }
.status-pending { background: rgba(244,240,232,0.2); }

.status-text { font-size: 11px; color: var(--fg-muted); font-weight: 500; }

/* === MANIFESTO === */
.manifesto {
  background: linear-gradient(180deg, var(--bg) 0%, #080F1D 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 8px;
}

.manifesto-text { display: flex; flex-direction: column; gap: 24px; }

.manifesto-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.2;
}

.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
}

.manifesto-body--highlight {
  color: var(--fg);
  font-weight: 500;
}

/* === FEATURES === */
.features {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.features-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.features-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 10px;
}

.features-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.2;
  max-width: 560px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}

.feature-card:hover { background: var(--bg-card-hover); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,0,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  background: linear-gradient(180deg, #080F1D 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}

.process-header {
  max-width: 1300px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}

.process-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 10px;
}

.process-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.2;
}

.process-steps {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 80px;
}

.process-step {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255,77,0,0.15);
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.process-step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.process-stats {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.stat {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.closing-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1.15;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

.closing-vibe {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.vibe-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 12px;
  color: rgba(154,154,142,0.5);
  margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 120px 32px 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .manifesto-inner, .features-header, .process-header { grid-template-columns: 1fr; gap: 16px; }
  .manifesto-number, .features-number, .process-number { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto, .process { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .process-stats { border-radius: 10px; }
  .stat { padding: 28px 24px; }
  .ui-card { display: none; }
}