steake's picture
Fix text overflow at narrow screen sizes
06f8a3e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Chimera - The Psychometric Engine</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #111827;
color: #f3f4f6;
scroll-behavior: smooth;
}
h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
}
.gradient-text {
background: linear-gradient(90deg, #10b981, #3b82f6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.section-divider {
height: 1px;
background: linear-gradient(90deg, rgba(16, 185, 129, 0), #10b981, rgba(16, 185, 129, 0));
}
@media (max-width: 640px) {
.text-overflow-fix {
word-wrap: break-word;
overflow-wrap: break-word;
hyphens: auto;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="fixed w-full bg-gray-900 bg-opacity-90 backdrop-blur-sm z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-xl font-bold gradient-text">Project Chimera</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#about" class="text-gray-300 hover:text-emerald-400 px-3 py-2 rounded-md text-sm font-medium">What is Chimera?</a>
<a href="#how-it-works" class="text-gray-300 hover:text-emerald-400 px-3 py-2 rounded-md text-sm font-medium">How it Works</a>
<a href="#applications" class="text-gray-300 hover:text-emerald-400 px-3 py-2 rounded-md text-sm font-medium">Applications</a>
<a href="#case-study" class="text-gray-300 hover:text-emerald-400 px-3 py-2 rounded-md text-sm font-medium">Case Study</a>
<a href="#contact" class="bg-emerald-600 hover:bg-emerald-700 text-white px-4 py-2 rounded-md text-sm font-medium">Request Pilot</a>
</div>
</div>
<div class="md:hidden">
<button class="text-gray-300 hover:text-white focus:outline-none">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="hero" class="relative h-screen flex items-center justify-center overflow-hidden">
<div id="vanta-bg" class="absolute inset-0"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6 text-overflow-fix">
<span class="gradient-text">Project Chimera</span><br>
The Psychometric Engine for Conversational AI
</h1>
<p class="text-lg md:text-xl text-gray-300 max-w-3xl mx-auto mb-8 text-overflow-fix">
Build high-fidelity Synthetic Selves that power explainable predictions and decisions.
</p>
<div class="flex justify-center space-x-4">
<a href="#demo" class="bg-emerald-600 hover:bg-emerald-700 text-white px-6 py-3 rounded-md font-medium">
See the Engine in Action
</a>
<a href="#about" class="border border-emerald-500 text-emerald-400 hover:bg-emerald-900 hover:bg-opacity-30 px-6 py-3 rounded-md font-medium">
Learn More
</a>
</div>
</div>
</section>
<!-- What is Chimera? -->
<section id="about" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">What is <span class="gradient-text">Chimera</span>?</h2>
<div class="section-divider w-1/3 mx-auto my-6"></div>
<p class="text-lg text-gray-300 max-w-4xl mx-auto text-overflow-fix">
Chimera turns conversation into a calibrated instrument. Every question, every answer builds a dynamic model of mind — a Synthetic Self — consented, auditable, and predictive.
</p>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="relative h-80 bg-gray-800 rounded-xl overflow-hidden">
<!-- Placeholder for split-layer diagram -->
<div class="absolute inset-0 flex items-center justify-center text-gray-500">
<div class="text-center">
<i data-feather="layers" class="w-12 h-12 mx-auto mb-4"></i>
<p>Presentation Persona vs Authentic Core</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-50 rounded-lg p-3">
<i data-feather="cpu" class="w-6 h-6 text-emerald-400"></i>
</div>
<div class="ml-4">
<h3 class="text-xl font-semibold mb-2">Human + Machine Cognition</h3>
<p class="text-gray-400">
Chimera represents the fusion of human psychology and machine learning, creating synthetic selves that evolve through conversation.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-50 rounded-lg p-3">
<i data-feather="shield" class="w-6 h-6 text-emerald-400"></i>
</div>
<div class="ml-4">
<h3 class="text-xl font-semibold mb-2">Consent-First Architecture</h3>
<p class="text-gray-400">
Every interaction begins with explicit consent, logged on an immutable ledger that users can audit or revoke at any time.
</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-50 rounded-lg p-3">
<i data-feather="activity" class="w-6 h-6 text-emerald-400"></i>
</div>
<div class="ml-4">
<h3 class="text-xl font-semibold mb-2">Explainable Predictions</h3>
<p class="text-gray-400">
Unlike black-box AI, Chimera provides transparent reasoning for every prediction and recommendation.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- How it Works -->
<section id="how-it-works" class="py-20 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">How <span class="gradient-text">Chimera</span> Works</h2>
<div class="section-divider w-1/3 mx-auto my-6"></div>
<p class="text-lg text-gray-300 max-w-4xl mx-auto text-overflow-fix">
A five-step process that transforms conversation into calibrated psychometric intelligence.
</p>
</div>
<div class="grid md:grid-cols-5 gap-8">
<!-- Step 1 -->
<div class="group bg-gray-700 bg-opacity-50 hover:bg-opacity-70 rounded-xl p-6 transition-all duration-300 hover:shadow-lg hover:shadow-emerald-900/20">
<div class="bg-emerald-900 bg-opacity-30 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<span class="text-emerald-400 font-bold">1</span>
</div>
<h3 class="text-xl font-semibold mb-3 group-hover:text-emerald-400">Consent First</h3>
<p class="text-gray-400">
Every interaction begins with logged, revocable consent ensuring ethical data collection.
</p>
</div>
<!-- Step 2 -->
<div class="group bg-gray-700 bg-opacity-50 hover:bg-opacity-70 rounded-xl p-6 transition-all duration-300 hover:shadow-lg hover:shadow-emerald-900/20">
<div class="bg-emerald-900 bg-opacity-30 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<span class="text-emerald-400 font-bold">2</span>
</div>
<h3 class="text-xl font-semibold mb-3 group-hover:text-emerald-400 text-overflow-fix">Conversational Baselining</h3>
<p class="text-gray-400 text-overflow-fix">
Psychometric profiles emerge naturally from dialogue patterns and response dynamics.
</p>
</div>
<!-- Step 3 -->
<div class="group bg-gray-700 bg-opacity-50 hover:bg-opacity-70 rounded-xl p-6 transition-all duration-300 hover:shadow-lg hover:shadow-emerald-900/20">
<div class="bg-emerald-900 bg-opacity-30 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<span class="text-emerald-400 font-bold">3</span>
</div>
<h3 class="text-xl font-semibold mb-3 group-hover:text-emerald-400 text-overflow-fix">Subtle Elicitation</h3>
<p class="text-gray-400 text-overflow-fix">
Precision probes uncover deeper insights without open-ended questioning drift.
</p>
</div>
<!-- Step 4 -->
<div class="group bg-gray-700 bg-opacity-50 hover:bg-opacity-70 rounded-xl p-6 transition-all duration-300 hover:shadow-lg hover:shadow-emerald-900/20">
<div class="bg-emerald-900 bg-opacity-30 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<span class="text-emerald-400 font-bold">4</span>
</div>
<h3 class="text-xl font-semibold mb-3 group-hover:text-emerald-400 text-overflow-fix">Dynamic Persona Template</h3>
<p class="text-gray-400 text-overflow-fix">
A living model that evolves with each interaction while maintaining explainable outputs.
</p>
</div>
<!-- Step 5 -->
<div class="group bg-gray-700 bg-opacity-50 hover:bg-opacity-70 rounded-xl p-6 transition-all duration-300 hover:shadow-lg hover:shadow-emerald-900/20">
<div class="bg-emerald-900 bg-opacity-30 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<span class="text-emerald-400 font-bold">5</span>
</div>
<h3 class="text-xl font-semibold mb-3 group-hover:text-emerald-400 text-overflow-fix">Predictive Convergence</h3>
<p class="text-gray-400 text-overflow-fix">
Achieves &lt;5% error rates that continuously improve with additional data.
</p>
</div>
</div>
</div>
</section>
<!-- Applications -->
<section id="applications" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4"><span class="gradient-text">Chimera</span> Applications</h2>
<div class="section-divider w-1/3 mx-auto my-6"></div>
<p class="text-lg text-gray-300 max-w-4xl mx-auto text-overflow-fix">
Transforming decision-making across industries with psychometric intelligence.
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Hiring -->
<div class="bg-gray-800 rounded-xl p-6 hover:shadow-lg hover:shadow-emerald-900/20 transition-all duration-300">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="users" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Hiring & Recruiting</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Explainable screening scorecards that reduce bias and accelerate decisions.
</p>
<div class="bg-emerald-900 bg-opacity-10 text-emerald-400 text-xs px-3 py-1 rounded-full inline-block">
+47% prediction accuracy
</div>
</div>
<!-- Learning -->
<div class="bg-gray-800 rounded-xl p-6 hover:shadow-lg hover:shadow-emerald-900/20 transition-all duration-300">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="book" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Learning & Development</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Personalized coaching loops that adapt to individual learning styles.
</p>
<div class="bg-emerald-900 bg-opacity-10 text-emerald-400 text-xs px-3 py-1 rounded-full inline-block">
+62% engagement
</div>
</div>
<!-- Sales -->
<div class="bg-gray-800 rounded-xl p-6 hover:shadow-lg hover:shadow-emerald-900/20 transition-all duration-300">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="dollar-sign" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Sales & Customer Success</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Playbooks dynamically tuned to customer psychology and readiness.
</p>
<div class="bg-emerald-900 bg-opacity-10 text-emerald-400 text-xs px-3 py-1 rounded-full inline-block">
+35% conversion
</div>
</div>
<!-- Education -->
<div class="bg-gray-800 rounded-xl p-6 hover:shadow-lg hover:shadow-emerald-900/20 transition-all duration-300">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="graduation-cap" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Education</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Adaptive tutoring systems that respond to student engagement and comprehension.
</p>
<div class="bg-emerald-900 bg-opacity-10 text-emerald-400 text-xs px-3 py-1 rounded-full inline-block">
+28% retention
</div>
</div>
</div>
</div>
</section>
<!-- Why it Matters -->
<section id="why-it-matters" class="py-20 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Why <span class="gradient-text">Chimera</span> Matters</h2>
<div class="section-divider w-1/3 mx-auto my-6"></div>
<p class="text-lg text-gray-300 max-w-4xl mx-auto text-overflow-fix">
Moving beyond intuition to calibrated, explainable decision-making.
</p>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<div class="bg-gray-700 rounded-xl p-6">
<div class="flex mb-6">
<div class="w-1/2 pr-4">
<h3 class="text-lg font-semibold text-gray-400 mb-2">Old Way</h3>
<div class="bg-gray-600 rounded-lg p-4 h-40 flex items-center justify-center">
<div class="text-center">
<i data-feather="heart" class="w-8 h-8 text-pink-500 mx-auto mb-2"></i>
<p class="text-sm">Gut Feel</p>
</div>
</div>
</div>
<div class="w-1/2 pl-4">
<h3 class="text-lg font-semibold text-emerald-400 mb-2">Chimera Way</h3>
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-4 h-40 flex items-center justify-center">
<div class="text-center">
<i data-feather="activity" class="w-8 h-8 text-emerald-400 mx-auto mb-2"></i>
<p class="text-sm">Predictive Convergence</p>
</div>
</div>
</div>
</div>
<div class="space-y-4">
<div class="flex items-center">
<div class="flex-shrink-0 bg-gray-600 rounded-full p-1 mr-3">
<i data-feather="x" class="w-4 h-4 text-red-400"></i>
</div>
<p class="text-gray-300">Subjective judgments prone to bias</p>
</div>
<div class="flex items-center">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-30 rounded-full p-1 mr-3">
<i data-feather="check" class="w-4 h-4 text-emerald-400"></i>
</div>
<p class="text-gray-300">Calibrated psychometric models</p>
</div>
<div class="flex items-center">
<div class="flex-shrink-0 bg-gray-600 rounded-full p-1 mr-3">
<i data-feather="x" class="w-4 h-4 text-red-400"></i>
</div>
<p class="text-gray-300">Opaque decision processes</p>
</div>
<div class="flex items-center">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-30 rounded-full p-1 mr-3">
<i data-feather="check" class="w-4 h-4 text-emerald-400"></i>
</div>
<p class="text-gray-300">Fully explainable reasoning</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<div class="space-y-8">
<div>
<h3 class="text-xl font-semibold mb-3 text-emerald-400">For Leaders</h3>
<p class="text-gray-400">
Decisions backed by psychometric proof rather than hunches. Reduce risk while increasing prediction accuracy across hiring, promotions, and strategic planning.
</p>
</div>
<div>
<h3 class="text-xl font-semibold mb-3 text-emerald-400">For Users</h3>
<p class="text-gray-400">
Maintain control through consent management and transparency. Understand how your data is used and revoke access at any time.
</p>
</div>
<div>
<h3 class="text-xl font-semibold mb-3 text-emerald-400">For Teams</h3>
<p class="text-gray-400">
Replace noisy, subjective debates with calibrated models that highlight signal through the noise. Focus on what matters most.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Case Study -->
<section id="case-study" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Applicant Insight <span class="gradient-text">Case Study</span></h2>
<div class="section-divider w-1/3 mx-auto my-6"></div>
<p class="text-lg text-gray-300 max-w-4xl mx-auto text-overflow-fix">
How a Fortune 500 company transformed hiring with Chimera's psychometric engine.
</p>
</div>
<div class="bg-gray-800 rounded-xl overflow-hidden">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 p-8 md:p-12">
<h3 class="text-2xl font-semibold mb-4">Voice-First Candidate Screening</h3>
<p class="text-gray-400 mb-6">
A global technology firm implemented Chimera to handle initial candidate screening through natural conversation, reducing time-to-hire while improving quality.
</p>
<div class="space-y-4 mb-8">
<div class="flex">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-30 rounded-full p-1 mr-3 mt-1">
<i data-feather="check" class="w-4 h-4 text-emerald-400"></i>
</div>
<div>
<h4 class="font-semibold">67% faster screening</h4>
<p class="text-sm text-gray-500">Reduced from 14 days to 4.7 days average</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-30 rounded-full p-1 mr-3 mt-1">
<i data-feather="check" class="w-4 h-4 text-emerald-400"></i>
</div>
<div>
<h4 class="font-semibold">92% candidate satisfaction</h4>
<p class="text-sm text-gray-500">Compared to 68% with traditional methods</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0 bg-emerald-900 bg-opacity-30 rounded-full p-1 mr-3 mt-1">
<i data-feather="check" class="w-4 h-4 text-emerald-400"></i>
</div>
<div>
<h4 class="font-semibold">5.8x more diverse hires</h4>
<p class="text-sm text-gray-500">By reducing unconscious bias in screening</p>
</div>
</div>
</div>
<a href="#" class="inline-flex items-center text-emerald-400 font-medium">
Read full case study <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="md:w-1/2 bg-gray-700 p-8 flex items-center justify-center">
<!-- Placeholder for candidate flow diagram -->
<div class="text-center text-gray-500">
<i data-feather="smartphone" class="w-12 h-12 mx-auto mb-4"></i>
<p>Candidate phone call → AI dialogue → Recruiter dashboard</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Trust & Governance -->
<section id="trust" class="py-20 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trust & <span class="gradient-text">Governance</span></h2>
<div class="section-divider w-1/3 mx-auto my-6"></div>
<p class="text-lg text-gray-300 max-w-4xl mx-auto text-overflow-fix">
Designed for transparency, auditability, and ethical AI practices.
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-8">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-6">
<i data-feather="lock" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Consent Ledger</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Every data point tied to immutable consent records that users can review or revoke.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-600 text-gray-300 text-xs px-3 py-1 rounded-full">GDPR Compliant</span>
<span class="bg-gray-600 text-gray-300 text-xs px-3 py-1 rounded-full">CCPA Ready</span>
</div>
</div>
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-8">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-6">
<i data-feather="eye" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Provenance Tracking</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Full audit trails showing how each data point influenced specific predictions.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-600 text-gray-300 text-xs px-3 py-1 rounded-full">Explainability API</span>
<span class="bg-gray-600 text-gray-300 text-xs px-3 py-1 rounded-full">Decision Logs</span>
</div>
</div>
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-8">
<div class="bg-emerald-900 bg-opacity-20 rounded-lg p-3 w-12 h-12 flex items-center justify-center mb-6">
<i data-feather="shield" class="w-6 h-6 text-emerald-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3 text-overflow-fix">Ethical Boundaries</h3>
<p class="text-gray-400 mb-4 text-overflow-fix">
Hard-coded constraints prevent unethical use cases or questionable inferences.
</p>
<div class="flex flex-wrap gap-2">
<span class="bg-gray-600 text-gray-300 text-xs px-3 py-1 rounded-full">No Fabrication</span>
<span class="bg-gray-600 text-gray-300 text-xs px-3 py-1 rounded-full">Bias Controls</span>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section id="contact" class="py-20 bg-gradient-to-r from-gray-900 to-emerald-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Build <span class="gradient-text">Synthetic Selves</span>?</h2>
<p class="text-lg text-gray-300 max-w-2xl mx-auto mb-8 text-overflow-fix">
Start your pilot program and experience predictive convergence with consent.
</p>
<form class="max-w-md mx-auto">
<div class="flex flex-col sm:flex-row gap-4">
<input type="email" placeholder="Your email" class="flex-grow bg-gray-800 bg-opacity-50 border border-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-emerald-500">
<button type="submit" class="bg-emerald-600 hover:bg-emerald-700 text-white px-6 py-3 rounded-lg font-medium whitespace-nowrap">
Request a Pilot
</button>
</div>
<p class="text-xs text-gray-400 mt-3">
By submitting, you agree to our <a href="#" class="text-emerald-400 hover:underline">Privacy Policy</a>.
</p>
</form>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<span class="text-xl font-bold gradient-text">Project Chimera</span>
<p class="text-gray-500 text-sm mt-2">
Predictive Convergence with Consent.
</p>
</div>
<div class="flex flex-wrap justify-center gap-6 md:gap-8">
<a href="#" class="text-gray-400 hover:text-emerald-400">About</a>
<a href="#" class="text-gray-400 hover:text-emerald-400">Documentation</a>
<a href="#" class="text-gray-400 hover:text-emerald-400">Contact</a>
<a href="#" class="text-gray-400 hover:text-emerald-400">Privacy</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 text-sm mb-4 md:mb-0">
© 2023 Project Chimera. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-emerald-400">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-emerald-400">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-emerald-400">
<i data-feather="github"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
feather.replace();
// Initialize Vanta.js
document.addEventListener('DOMContentLoaded', function() {
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x10b981,
backgroundColor: 0x111827,
points: 12.00,
maxDistance: 22.00,
spacing: 18.00
});
// Mobile menu toggle
const mobileMenuButton = document.querySelector('.md\\:hidden button');
mobileMenuButton.addEventListener('click', function() {
// Implement mobile menu functionality here
console.log('Mobile menu clicked');
});
});
</script>
</body>
</html>