<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>72seconds - Coming Soon</title>
    
    <script src="https://cdn.tailwindcss.com"></script>
    <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=Exo+2:wght@700;800;900&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
    
    <style>
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }
        
        h1, h2, h3 {
            font-family: 'Exo 2', sans-serif;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #FFB66C 0%, #FF8C42 50%, #E35C41 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #FFB66C 0%, #FF8C42 50%, #E35C41 100%);
        }
        
        /* Animated background grid */
        .grid-bg {
            background-image: 
                linear-gradient(rgba(255, 182, 108, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 182, 108, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
        }
        
        @keyframes grid-move {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }
        
        /* Pulsing signal effect */
        .signal-pulse {
            animation: pulse-glow 2s ease-in-out infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
        }
        
        /* Waveform animation */
        .waveform {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            height: 80px;
        }
        
        .waveform-bar {
            width: 6px;
            background: linear-gradient(180deg, #FFB66C 0%, #E35C41 100%);
            border-radius: 3px;
            animation: wave 1.2s ease-in-out infinite;
        }
        
        .waveform-bar:nth-child(1) { animation-delay: 0s; height: 20%; }
        .waveform-bar:nth-child(2) { animation-delay: 0.1s; height: 40%; }
        .waveform-bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
        .waveform-bar:nth-child(4) { animation-delay: 0.3s; height: 60%; }
        .waveform-bar:nth-child(5) { animation-delay: 0.4s; height: 90%; }
        .waveform-bar:nth-child(6) { animation-delay: 0.5s; height: 50%; }
        .waveform-bar:nth-child(7) { animation-delay: 0.6s; height: 30%; }
        
        @keyframes wave {
            0%, 100% {
                transform: scaleY(1);
                opacity: 0.7;
            }
            50% {
                transform: scaleY(1.3);
                opacity: 1;
            }
        }
        
        /* Floating particles */
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 182, 108, 0.5);
            border-radius: 50%;
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }
        
        /* Input focus effect */
        input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(255, 182, 108, 0.5);
        }
        
        /* Button hover effect */
        .cta-button {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }
        
        /* Fade in animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }
        .delay-5 { animation-delay: 1s; }
        
        /* Glitch effect for "Wow!" moment */
        .glitch {
            position: relative;
            animation: glitch-anim 5s infinite;
        }
        
        @keyframes glitch-anim {
            0%, 90%, 100% {
                transform: translate(0);
            }
            91% {
                transform: translate(-2px, 2px);
            }
            92% {
                transform: translate(2px, -2px);
            }
            93% {
                transform: translate(-2px, 2px);
            }
        }
    </style>
</head>
<body class="grid-bg">
    
    <!-- Floating particles -->
    <div class="particle" style="left: 10%; animation-delay: 0s;"></div>
    <div class="particle" style="left: 20%; animation-delay: 2s;"></div>
    <div class="particle" style="left: 30%; animation-delay: 4s;"></div>
    <div class="particle" style="left: 40%; animation-delay: 6s;"></div>
    <div class="particle" style="left: 50%; animation-delay: 8s;"></div>
    <div class="particle" style="left: 60%; animation-delay: 10s;"></div>
    <div class="particle" style="left: 70%; animation-delay: 12s;"></div>
    <div class="particle" style="left: 80%; animation-delay: 14s;"></div>
    <div class="particle" style="left: 90%; animation-delay: 16s;"></div>
    
    <!-- Main content -->
    <div class="min-h-screen flex items-center justify-center px-4 relative">
        <div class="max-w-4xl w-full text-center">
            
            <!-- Logo -->
            <div class="mb-12 fade-in">
                <img src="logo-header-coming-soon.png" alt="72seconds" class="h-20 mx-auto mb-6">
            </div>
            
            <!-- Waveform visualization -->
            <div class="mb-12 fade-in delay-1">
                <div class="waveform mx-auto">
                    <div class="waveform-bar"></div>
                    <div class="waveform-bar"></div>
                    <div class="waveform-bar"></div>
                    <div class="waveform-bar"></div>
                    <div class="waveform-bar"></div>
                    <div class="waveform-bar"></div>
                    <div class="waveform-bar"></div>
                </div>
            </div>
            
            <!-- Main heading -->
            <h1 class="text-5xl sm:text-6xl lg:text-7xl font-black mb-6 fade-in delay-2">
                Detecting the <span class="gradient-text glitch">Signal</span>
            </h1>
            
            <!-- Subheading -->
            <p class="text-xl sm:text-2xl text-gray-400 mb-8 fade-in delay-3">
                Something extraordinary is emerging from the noise...
            </p>
            
            <!-- Description -->
            <div class="max-w-2xl mx-auto mb-12 fade-in delay-4">
                <p class="text-lg text-gray-500 mb-6">
                    On August 15, 1977, a powerful 72-second signal from deep space changed everything. 
                    It was unmistakable. Undeniable. A moment of pure clarity in cosmic chaos.
                </p>
                <p class="text-lg text-gray-400 font-semibold">
                    Your business has its own signal waiting to be discovered.
                </p>
            </div>
            
            <!-- Launch date -->
            <div class="mb-12 fade-in delay-5">
                <div class="inline-block bg-gradient-to-r from-orange-500/10 to-red-500/10 px-8 py-4 rounded-xl border border-orange-500/30">
                    <p class="text-sm text-gray-400 mb-2">Launching</p>
                    <p class="text-3xl font-black gradient-text">December 2025</p>
                </div>
            </div>
            
            <!-- Email signup -->
            <!-- <div class="max-w-md mx-auto mb-12 fade-in delay-5">
                <p class="text-gray-400 mb-4">Be the first to know when we go live</p>
                <form id="notify-form" class="flex flex-col sm:flex-row gap-3">
                    <input 
                        type="email" 
                        id="email" 
                        placeholder="your.email@company.com" 
                        required
                        class="flex-1 px-6 py-4 bg-[#1a1a1a] border border-gray-800 rounded-lg text-white placeholder-gray-600 focus:border-orange-500 transition-all"
                    >
                    <button 
                        type="submit" 
                        class="cta-button gradient-bg text-white px-8 py-4 rounded-lg font-semibold whitespace-nowrap"
                    >
                        Notify Me
                    </button>
                </form>
                <p id="form-message" class="mt-4 text-sm text-gray-500"></p>
            </div> -->
            
            <!-- Teaser points -->
            <div class="grid grid-cols-1 md:grid-cols-3 gap-6 max-w-4xl mx-auto fade-in delay-5">
                <div class="bg-[#1a1a1a]/50 backdrop-blur-sm p-6 rounded-xl border border-gray-800/50 signal-pulse">
                    <div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mx-auto mb-4">
                        <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path>
                        </svg>
                    </div>
                    <h3 class="text-lg font-bold mb-2">Agentic AI Networks</h3>
                    <p class="text-sm text-gray-500">Autonomous digital workforce</p>
                </div>
                
                <div class="bg-[#1a1a1a]/50 backdrop-blur-sm p-6 rounded-xl border border-gray-800/50 signal-pulse" style="animation-delay: 0.3s;">
                    <div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mx-auto mb-4">
                        <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"></path>
                        </svg>
                    </div>
                    <h3 class="text-lg font-bold mb-2">AI & Data Governance</h3>
                    <p class="text-sm text-gray-500">Enterprise-grade security</p>
                </div>
                
                <div class="bg-[#1a1a1a]/50 backdrop-blur-sm p-6 rounded-xl border border-gray-800/50 signal-pulse" style="animation-delay: 0.6s;">
                    <div class="w-12 h-12 gradient-bg rounded-lg flex items-center justify-center mx-auto mb-4">
                        <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"></path>
                        </svg>
                    </div>
                    <h3 class="text-lg font-bold mb-2">Strategic AI Advisory</h3>
                    <p class="text-sm text-gray-500">Production-ready results</p>
                </div>
            </div>
            
            <!-- Footer -->
            <div class="mt-16 pt-8 border-t border-gray-800/50 fade-in delay-5">
                <p class="text-gray-600 text-sm italic">
                    "Wow!" — Jerry Ehman, August 15, 1977
                </p>
                <p class="text-gray-700 text-xs mt-4">
                    © 2025 72seconds. Your Signal in the Noise.
                </p>
            </div>
        </div>
    </div>
    
    <!-- <script>
        // Email notification form handler
        const form = document.getElementById('notify-form');
        const message = document.getElementById('form-message');
        
        form.addEventListener('submit', (e) => {
            e.preventDefault();
            
            const email = document.getElementById('email').value;
            
            // Store email (in production, send to your backend/service)
            console.log('Email submitted:', email);
            
            // Show success message
            message.textContent = '✓ Thank you! We\'ll notify you when we launch.';
            message.className = 'mt-4 text-sm text-green-400';
            
            // Reset form
            form.reset();
            
            // In production, integrate with:
            // - Mailchimp API
            // - ConvertKit
            // - Your own backend
            // - Formspree
            // - EmailJS
        });
    </script> -->
</body>
</html>

