/* Futuristic 2025 Coming Soon Page */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff006e;
    --accent-color: #8b5cf6;
    --neon-blue: #00d4ff;
    --neon-pink: #ff006e;
    --neon-purple: #8b5cf6;
    --cyber-green: #00ff88;
    --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ff006e 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --background: radial-gradient(ellipse at top, #0f0f23 0%, #020014 50%, #000000 100%);
    --surface: rgba(15, 15, 35, 0.8);
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(0, 212, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.2);
    --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --blur: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--primary-gradient);
    border-radius: 50px;
    opacity: 0.1;
    backdrop-filter: var(--blur);
}

.logo i {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    animation: glow 2s ease-in-out infinite alternate;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.hero-section {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Construction Icon */
.construction-icon {
    margin-bottom: 2rem;
    position: relative;
}

.construction-icon i {
    font-size: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s infinite, glow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

/* Typography */
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* Progress Bar */
.progress-container {
    background: var(--glass);
    backdrop-filter: var(--blur);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    margin-bottom: 3rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-gradient);
    pointer-events: none;
}

.progress-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    width: 5%; /* Adjust this value to change the fill percentage */
    background: var(--primary-gradient);
    border-radius: 6px;
    animation: progressFill 2s ease-out, progressGlow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.progress-text {
    font-weight: 500;
    color: var(--neon-blue);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: var(--blur);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-gradient);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Notification Section */
.notification-section {
    background: var(--glass);
    backdrop-filter: var(--blur);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    margin-bottom: 3rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.notification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-gradient);
    pointer-events: none;
}

.notification-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.notification-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.notification-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.email-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.notify-btn {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--text-primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.notify-btn:hover::before {
    left: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass);
    backdrop-filter: var(--blur);
    color: var(--text-secondary);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    border-color: var(--neon-blue);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: var(--text-primary);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    background: var(--glass);
    backdrop-filter: var(--blur);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-gradient);
    pointer-events: none;
}

.footer p {
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.footer i {
    color: var(--neon-pink);
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(255, 0, 110, 0.5));
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 20%;
    animation-delay: 7s;
}

/* Waitlist Stats */
.waitlist-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Roadmap Section */
.roadmap-section {
    background: var(--glass);
    backdrop-filter: var(--blur);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    margin: 3rem 0;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-gradient);
    pointer-events: none;
}

.roadmap-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding: 0 0 2rem 4rem;
    opacity: 0.6;
    transition: var(--transition);
}

.timeline-item.completed {
    opacity: 1;
}

.timeline-item.completed .timeline-marker {
    background: var(--cyber-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item.active .timeline-marker {
    background: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: pulse 2s infinite;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-light);
    border: 2px solid var(--surface);
    z-index: 2;
    transition: var(--transition);
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 5%;
    }
}

@keyframes heartbeat {
    0%, 50%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
}

@keyframes progressGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notification-form {
        flex-direction: column;
    }
    
    .notification-section {
        padding: 2rem 1.5rem;
    }
    
    .progress-container {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .construction-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0;
    }
    
    .main-content {
        padding: 1rem 0.5rem;
    }
    
    .notification-section {
        padding: 1.5rem 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --border: rgba(255, 255, 255, 0.8);
        --text-light: #ffffff;
    }
    
    .email-input {
        background: #2d3748;
        border-color: #4a5568;
        color: #f7fafc;
    }
    
    .email-input:focus {
        border-color: var(--primary-color);
    }
}
