File size: 22,598 Bytes
c1ba3e2 2b65ee2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Strategic Analytics Lab | From NYC to Norristown</title>
<link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔬</text></svg>">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');
:root {
--primary: #0a0a0a;
--secondary: #1a1a1a;
--accent: #00ff88;
--accent-dark: #00cc6a;
--text: #ffffff;
--text-muted: #888888;
--border: #333333;
}
* {
font-family: 'Inter', sans-serif;
}
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
body {
background: var(--primary);
color: var(--text);
overflow-x: hidden;
}
.gradient-text {
background: linear-gradient(135deg, var(--accent) 0%, #00ccff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.glass-card {
background: rgba(26, 26, 26, 0.8);
backdrop-filter: blur(10px);
border: 1px solid var(--border);
border-radius: 16px;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.3;
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.pulse-glow {
animation: pulse-glow 2s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
from { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
to { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}
.network-line {
position: absolute;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
height: 1px;
opacity: 0.3;
}
.btn-primary {
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: var(--primary);
font-weight: 600;
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.stat-number {
background: linear-gradient(135deg, var(--accent) 0%, #00ccff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 glass-card border-b border-gray-800">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<i data-feather="activity" class="w-6 h-6 text-green-400"></i>
<span class="font-bold text-xl">Strategic Analytics Lab</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#mission" class="text-gray-300 hover:text-white transition">Mission</a>
<a href="#capabilities" class="text-gray-300 hover:text-white transition">Capabilities</a>
<a href="#network" class="text-gray-300 hover:text-white transition">Network</a>
<a href="#contact" class="btn-primary px-6 py-2 rounded-full text-sm">Connect</a>
</div>
<button class="md:hidden" id="mobile-menu-toggle">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="fixed inset-0 z-40 bg-black bg-opacity-95 hidden">
<div class="container mx-auto px-6 py-20">
<div class="flex flex-col space-y-8 text-center">
<a href="#mission" class="text-2xl text-gray-300 hover:text-white transition mobile-link">Mission</a>
<a href="#capabilities" class="text-2xl text-gray-300 hover:text-white transition mobile-link">Capabilities</a>
<a href="#network" class="text-2xl text-gray-300 hover:text-white transition mobile-link">Network</a>
<a href="#contact" class="btn-primary px-8 py-3 rounded-full text-lg mobile-link">Connect</a>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden">
<div class="hero-bg" id="vanta-bg"></div>
<div class="container mx-auto px-6 text-center relative z-10">
<h1 class="text-5xl md:text-7xl font-black mb-6" data-aos="fade-up">
From NYC Streets to <span class="gradient-text">Norristown</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="200">
Bringing decades of entrepreneurial firepower, cyber expertise, and venture-building experience to Montgomery County's next chapter
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center" data-aos="fade-up" data-aos-delay="400">
<button class="btn-primary px-8 py-4 rounded-full text-lg font-semibold pulse-glow">
View Capability Statement
</button>
<button class="border-2 border-green-400 text-green-400 px-8 py-4 rounded-full text-lg font-semibold hover:bg-green-400 hover:text-black transition">
Schedule Strategy Call
</button>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<i data-feather="chevron-down" class="w-8 h-8 text-gray-400"></i>
</div>
</section>
<!-- Mission Section -->
<section id="mission" class="py-20 md:py-32">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<h2 class="text-4xl md:text-5xl font-bold mb-6">
Building the <span class="gradient-text">Future</span> from Norristown
</h2>
<p class="text-gray-300 mb-6 text-lg leading-relaxed">
After decades of building ventures in NYC's hyper-connected ecosystem, we're bringing that same energy, expertise, and execution capability to Montgomery County. This isn't about relocating—it's about revolutionizing.
</p>
<p class="text-gray-300 mb-8 text-lg leading-relaxed">
We're creating a strategic analytics hub that bridges the gap between regional wealth, untapped talent, and the next generation of cyber-secure, AI-powered ventures.
</p>
<div class="flex items-center space-x-6">
<div class="text-center">
<div class="text-3xl font-bold stat-number">30+</div>
<div class="text-gray-400 text-sm">Years Experience</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold stat-number">$500M+</div>
<div class="text-gray-400 text-sm">Value Created</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold stat-number">50+</div>
<div class="text-gray-400 text-sm">Ventures Built</div>
</div>
</div>
</div>
<div data-aos="fade-left" class="relative">
<div class="glass-card p-8 floating">
<img src="http://static.photos/technology/640x360/42" alt="Strategic Analytics Lab" class="w-full rounded-lg mb-6">
<div class="flex items-center justify-between">
<div>
<h3 class="font-semibold text-lg">Strategic Analytics Lab</h3>
<p class="text-gray-400 text-sm">Norristown, PA</p>
</div>
<div class="flex space-x-2">
<div class="w-3 h-3 bg-green-400 rounded-full"></div>
<div class="w-3 h-3 bg-green-400 rounded-full"></div>
<div class="w-3 h-3 bg-green-400 rounded-full"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Capabilities Section -->
<section id="capabilities" class="py-20 md:py-32 bg-gray-900">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16" data-aos="fade-up">
Full-Stack <span class="gradient-text">Capabilities</span>
</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="glass-card p-8 hover:border-green-400 transition" data-aos="fade-up" data-aos-delay="100">
<div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-full flex items-center justify-center mb-6">
<i data-feather="shield" class="w-8 h-8 text-green-400"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Cyber Systems</h3>
<p class="text-gray-300 mb-4">Enterprise-grade security architecture, threat modeling, and secure development practices honed across defense and commercial sectors.</p>
<ul class="text-sm text-gray-400 space-y-2">
<li>• Zero-trust architecture</li>
<li>• Secure cloud migration</li>
<li>• Compliance frameworks</li>
</ul>
</div>
<div class="glass-card p-8 hover:border-green-400 transition" data-aos="fade-up" data-aos-delay="200">
<div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-full flex items-center justify-center mb-6">
<i data-feather="trending-up" class="w-8 h-8 text-green-400"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Strategic Analytics</h3>
<p class="text-gray-300 mb-4">AI-powered business intelligence, predictive modeling, and data monetization strategies that drive measurable ROI.</p>
<ul class="text-sm text-gray-400 space-y-2">
<li>• Predictive analytics</li>
<li>• Real-time dashboards</li>
<li>• Revenue optimization</li>
</ul>
</div>
<div class="glass-card p-8 hover:border-green-400 transition" data-aos="fade-up" data-aos-delay="300">
<div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-full flex items-center justify-center mb-6">
<i data-feather="rocket" class="w-8 h-8 text-green-400"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Venture Building</h3>
<p class="text-gray-300 mb-4">End-to-end venture development from ideation to exit, including MVP development, fundraising, and scaling strategies.</p>
<ul class="text-sm text-gray-400 space-y-2">
<li>• MVP to Series B</li>
<li>• Technical due diligence</li>
<li>• Exit strategy planning</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Network Section -->
<section id="network" class="py-20 md:py-32">
<div class="container mx-auto px-6">
<h2 class="text-4xl md:text-5xl font-bold text-center mb-16" data-aos="fade-up">
Regional <span class="gradient-text">Network</span>
</h2>
<div class="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<h3 class="text-3xl font-bold mb-6">Montgomery County Advantage</h3>
<p class="text-gray-300 mb-6 text-lg leading-relaxed">
Positioned at the nexus of Philadelphia's innovation corridor and the Main Line's wealth concentration, we're tapping into an underserved market of family offices, defense contractors, and institutional capital.
</p>
<div class="space-y-4">
<div class="flex items-center space-x-4">
<div class="w-2 h-2 bg-green-400 rounded-full"></div>
<span class="text-gray-300">Ben Franklin Tech Partners</span>
</div>
<div class="flex items-center space-x-4">
<div class="w-2 h-2 bg-green-400 rounded-full"></div>
<span class="text-gray-300">Philly Startup Leaders</span>
</div>
<div class="flex items-center space-x-4">
<div class="w-2 h-2 bg-green-400 rounded-full"></div>
<span class="text-gray-300">Robin Hood Ventures</span>
</div>
<div class="flex items-center space-x-4">
<div class="w-2 h-2 bg-green-400 rounded-full"></div>
<span class="text-gray-300">Osage Venture Partners</span>
</div>
</div>
</div>
<div data-aos="fade-left" class="relative">
<div class="glass-card p-8">
<div class="mb-6">
<img src="http://static.photos/cityscape/640x360/133" alt="Philadelphia Skyline" class="w-full rounded-lg">
</div>
<div class="grid grid-cols-2 gap-4 text-center">
<div class="glass-card p-4">
<div class="text-2xl font-bold stat-number">3.1M</div>
<div class="text-xs text-gray-400">Metro Population</div>
</div>
<div class="glass-card p-4">
<div class="text-2xl font-bold stat-number">$50B+</div>
<div class="text-xs text-gray-400">Regional GDP</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="contact" class="py-20 md:py-32 bg-gradient-to-r from-green-400 to-blue-500">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">
Ready to Build the Future Together?
</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200">
Whether you're an investor, entrepreneur, or institution looking to leverage strategic analytics and cyber capabilities, let's connect.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center" data-aos="fade-up" data-aos-delay="400">
<button class="bg-white text-black px-8 py-4 rounded-full text-lg font-semibold hover:bg-gray-100 transition">
Schedule Strategy Call
</button>
<button class="border-2 border-white text-white px-8 py-4 rounded-full text-lg font-semibold hover:bg-white hover:text-black transition">
Download Capability Statement
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 bg-gray-900 border-t border-gray-800">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i data-feather="activity" class="w-6 h-6 text-green-400"></i>
<span class="font-bold text-xl">Strategic Analytics Lab</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="mail" class="w-5 h-5"></i>
</a>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-800 text-center text-gray-400">
<p>© 2024 Strategic Analytics Lab. Building the future from Norristown, PA.</p>
</div>
</div>
</footer>
<script>
// Initialize AOS
AOS.init({
duration: 1000,
once: true,
offset: 100
});
// Initialize Feather Icons
feather.replace();
// Mobile menu toggle
const mobileMenuToggle = document.getElementById('mobile-menu-toggle');
const mobileMenu = document.getElementById('mobile-menu');
const mobileLinks = document.querySelectorAll('.mobile-link');
mobileMenuToggle.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
});
});
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Vanta.js background
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x00ff88,
color2: 0x00ccff,
size: 1.00,
backgroundColor: 0x0a0a0a
});
// Network animation
const createNetworkLine = () => {
const line = document.createElement('div');
line.className = 'network-line';
line.style.width = Math.random() * 200 + 100 + 'px';
line.style.top = Math.random() * 100 + '%';
line.style.left = Math.random() * 100 + '%';
line.style.transform = `rotate(${Math.random() * 360}deg)`;
document.body.appendChild(line);
setTimeout(() => {
line.remove();
}, 5000);
};
// Create network lines periodically
setInterval(createNetworkLine, 2000);
// Button click animations
document.querySelectorAll('button').forEach(button => {
button.addEventListener('click', function(e) {
anime({
targets: this,
scale: [1, 0.95, 1],
duration: 300,
easing: 'easeInOutQuad'
});
});
});
// Stats counter animation
const animateStats = () => {
const stats = document.querySelectorAll('.stat-number');
stats.forEach(stat => {
const finalValue = stat.textContent;
const numericValue = parseInt(finalValue);
if (!isNaN(numericValue)) {
anime({
targets: stat,
innerHTML: [0, numericValue],
duration: 2000,
easing: 'easeInOutQuad',
round: 1,
delay: anime.stagger(200)
});
}
});
};
// Trigger stats animation when section is visible
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
animateStats();
observer.unobserve(entry.target);
}
});
});
const missionSection = document.querySelector('#mission');
if (missionSection) {
observer.observe(missionSection);
}
</script>
</body>
</html>
|