/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0B0F1A;
  --bg-alt: #111827;
  --bg-card: #161D2E;
  --fg: #E8EDF5;
  --fg-muted: #8B9AB4;
  --accent: #B4FF00;
  --accent-dim: rgba(180, 255, 0, 0.12);
  --border: rgba(255,255,255,0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

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

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }
.section-label { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--fg); margin-bottom: 48px; }
.accent { color: var(--accent); }

/* ─── Nav ─── */
.nav { border-bottom: 1px solid var(--border); padding: 20px 0; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 16px; }
.nav-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--fg); }
.nav-tag { font-size: 12px; color: var(--fg-muted); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; }

/* ─── Hero ─── */
.hero { padding: 80px 0 72px; }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; margin-bottom: 24px; }
.badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline { font-size: clamp(38px, 5.5vw, 60px); font-weight: 800; color: var(--fg); margin-bottom: 20px; line-height: 1.1; }
.hero-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 440px; margin-bottom: 36px; }

.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-value { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--fg); display: block; }
.stat-label { font-size: 12px; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ─── Scout Mock ─── */
.scout-mock { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.mock-header { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-title { font-size: 13px; color: var(--fg-muted); flex: 1; text-align: center; }
.mock-status { font-size: 12px; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.status-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.mock-body { padding: 0; }
.scout-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.scout-item:last-child { border-bottom: none; }
.scout-item:hover { background: rgba(255,255,255,0.03); }
.scout-icon { font-size: 12px; flex-shrink: 0; width: 20px; }
.scout-item.found .scout-icon { color: var(--accent); }
.scout-item.sent .scout-icon { color: #60a5fa; }
.scout-item.done .scout-icon { color: #34d399; }
.scout-info { flex: 1; min-width: 0; }
.scout-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: var(--fg); display: block; }
.scout-role { font-size: 11px; color: var(--fg-muted); display: block; }
.scout-reason { font-size: 11px; color: var(--accent); display: block; opacity: 0.7; }
.scout-action { flex-shrink: 0; }
.action-tag { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.action-tag { background: var(--accent-dim); color: var(--accent); }
.action-tag.send { background: rgba(96,165,250,0.12); color: #60a5fa; }
.action-tag.out { background: rgba(96,165,250,0.12); color: #60a5fa; }
.action-tag.done { background: rgba(52,211,153,0.12); color: #34d399; }

.mock-footer { padding: 12px 18px; border-top: 1px solid var(--border); background: var(--bg-card); }
.progress-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--fg-muted); }
.progress-val { color: var(--fg-muted); }

/* ─── How ─── */
.how { padding: 80px 0; border-top: 1px solid var(--border); }
.how-header { max-width: 1100px; margin: 0 auto 56px; padding: 0 24px; }
.how-steps { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.step { padding: 0 32px 0 0; }
.step-num { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: var(--border); display: block; margin-bottom: 12px; }
.step h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-arrow { width: 40px; display: flex; align-items: center; justify-content: center; padding-top: 20px; opacity: 0.4; }
.step-arrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--fg-muted); }

/* ─── Features ─── */
.features { padding: 80px 0; border-top: 1px solid var(--border); background: var(--bg-alt); }
.features-header { max-width: 1100px; margin: 0 auto 48px; padding: 0 24px; }
.features-grid { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.feature { background: var(--bg-alt); padding: 32px 28px; transition: background 0.2s; }
.feature:hover { background: var(--bg-card); }
.feature-icon { width: 44px; height: 44px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); }
.feature h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ─── Outcomes ─── */
.outcomes { padding: 80px 0; border-top: 1px solid var(--border); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.outcomes-copy h2 { font-size: clamp(26px, 3.5vw, 38px); }
.outcomes-copy p { font-size: 16px; color: var(--fg-muted); margin-top: 16px; line-height: 1.65; }
.outcomes-metrics { display: flex; flex-direction: column; gap: 32px; }
.metric { border-left: 2px solid var(--accent); padding-left: 20px; }
.metric-number { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--fg); display: block; line-height: 1; }
.metric-desc { font-size: 14px; color: var(--fg-muted); display: block; margin-top: 6px; }

/* ─── Closing ─── */
.closing { padding: 100px 0; border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--bg) 0%, #0D1A0B 100%); text-align: center; }
.closing-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.closing-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; margin-bottom: 32px; }
.closing-headline { font-size: clamp(34px, 5vw, 54px); font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.closing-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 480px; margin: 0 auto; }

/* ─── Footer ─── */
.footer { padding: 40px 0 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--fg); display: block; }
.footer-tag { font-size: 13px; color: var(--fg-muted); display: block; margin-top: 4px; }
.footer-links { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--fg-muted); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 16px 24px 0; border-top: 1px solid var(--border); font-size: 12px; color: var(--fg-muted); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 48px; }
  .hero-headline { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; }
}