Netlify
tcp/443 tcp/80
Open service 75.2.60.5:443 · www.zeroleadloss.com
2026-01-12 22:12
HTTP/1.1 301 Moved Permanently Content-Type: text/plain; charset=utf-8 Date: Mon, 12 Jan 2026 22:12:09 GMT Location: https://zeroleadloss.com/ Server: Netlify Strict-Transport-Security: max-age=31536000 X-Nf-Request-Id: 01KET48FF4TA223CSGJ03ZTH80 Content-Length: 40 Connection: close Redirecting to https://zeroleadloss.com/
Open service 75.2.60.5:80 · zeroleadloss.com
2026-01-12 22:12
HTTP/1.1 301 Moved Permanently Content-Type: text/plain; charset=utf-8 Date: Mon, 12 Jan 2026 22:12:17 GMT Location: https://zeroleadloss.com/ Server: Netlify X-Nf-Request-Id: 01KET48QA1RNY27GYJA4Q092TH Content-Length: 40 Connection: close Redirecting to https://zeroleadloss.com/
Open service 75.2.60.5:80 · www.zeroleadloss.com
2026-01-12 22:12
HTTP/1.1 301 Moved Permanently Content-Type: text/plain; charset=utf-8 Date: Mon, 12 Jan 2026 22:12:17 GMT Location: https://www.zeroleadloss.com/ Server: Netlify X-Nf-Request-Id: 01KET48Q7YBDYK3XPWC9431PA1 Content-Length: 44 Connection: close Redirecting to https://www.zeroleadloss.com/
Open service 75.2.60.5:443 · zeroleadloss.com
2026-01-12 22:12
HTTP/1.1 200 OK
Accept-Ranges: bytes
Age: 0
Cache-Control: public,max-age=0,must-revalidate
Cache-Status: "Netlify Edge"; fwd=miss
Content-Length: 56381
Content-Type: text/html; charset=UTF-8
Date: Mon, 12 Jan 2026 22:12:10 GMT
Etag: "266a2fd0a98e32a31f35ae6b0ee8a500-ssl"
Server: Netlify
Strict-Transport-Security: max-age=31536000
X-Nf-Request-Id: 01KET48FQH5Q0367H8GJJ6Z546
Connection: close
Page title: Paul Meyers | Zero Lead Loss
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paul Meyers | Zero Lead Loss</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #050508;
--bg-secondary: #0a0a0f;
--bg-card: rgba(255, 255, 255, 0.03);
--bg-card-hover: rgba(255, 255, 255, 0.06);
--accent-cyan: #00f0ff;
--accent-cyan-dim: rgba(0, 240, 255, 0.15);
--accent-amber: #f59e0b;
--accent-amber-glow: rgba(245, 158, 11, 0.4);
--accent-purple: #8b5cf6;
--text-primary: #ffffff;
--text-secondary: rgba(255, 255, 255, 0.7);
--text-muted: rgba(255, 255, 255, 0.4);
--border-subtle: rgba(255, 255, 255, 0.08);
--border-glow: rgba(0, 240, 255, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Outfit', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* Animated Background */
.bg-gradient-mesh {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background:
radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
radial-gradient(ellipse 50% 30% at 60% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
var(--bg-primary);
animation: meshMove 20s ease-in-out infinite;
}
@keyframes meshMove {
0%, 100% { transform: scale(1) rotate(0deg); }
50% { transform: scale(1.1) rotate(2deg); }
}
/* Grid Overlay */
.grid-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image:
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}
/* Floating Particles */
.particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
pointer-events: none;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--accent-cyan);
border-radius: 50%;
opacity: 0.3;
animation: float 15s infinite ease-in-out;
}
.particle:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; animation-delay: -4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 60%; animation-delay: -6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 80%; animation-delay: -8s; animation-duration: 22s; }
.particle:nth-child(6) { left: 90%; animation-delay: -10s; animation-duration: 19s; }
@keyframes float {
0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
10% { opacity: 0.3; }
90%