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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Subtle grid overlay for tech aesthetic */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(94, 242, 232, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 242, 232, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 2rem;
    max-width: 800px;
}

.logo-wrapper {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(94, 242, 232, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(94, 242, 232, 0.7));
}

.brand {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.brand-beyond {
    color: #FFFFFF;
    font-weight: 200;
}

.brand-track {
    color: #5EF2E8;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(94, 242, 232, 0.5);
}

.tagline {
    font-size: 1.5rem;
    color: #B0B0B0;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(94, 242, 232, 0.3);
    border-radius: 50px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    background: rgba(94, 242, 232, 0.05);
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #5EF2E8;
    box-shadow: 0 0 10px rgba(94, 242, 232, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    color: #5EF2E8;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #888888;
    font-weight: 300;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact {
    animation: fadeInUp 1s ease-out 1s both;
}

.email-link {
    color: #5EF2E8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    border-bottom: 1px solid #5EF2E8;
    text-shadow: 0 0 10px rgba(94, 242, 232, 0.5);
    transform: translateY(-2px);
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
}
