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

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-blue: #3b82f6;
    --accent-bright: #60a5fa;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.75);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    background: #0a1929;
    line-height: 1.6;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.92) 0%,
        rgba(26, 31, 58, 0.88) 50%,
        rgba(10, 14, 39, 0.94) 100%
    );
    z-index: 1;
}

.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.content {
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out;
}

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

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: var(--text-white);
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.6),
                 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.message {
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.headline {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.2;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(96, 165, 250, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.feature svg {
    color: var(--accent-bright);
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.cta-section {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.status-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent-blue);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.5);
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.email-link {
    font-size: 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.email-link:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .features {
        gap: 2rem;
    }

    .feature {
        min-width: 180px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .logo {
        font-size: 4rem;
        letter-spacing: 0.1rem;
    }

    .headline {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 300px;
    }

    .email-link {
        font-size: 1.25rem;
        padding: 0.65rem 1.5rem;
    }

    .status-badge {
        font-size: 1rem;
        padding: 0.65rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 3rem;
    }

    .headline {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
