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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A;
    color: #ffffff;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    cursor: default;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Company Name */
.company-name {
    position: absolute;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: fadeIn 2s ease-out 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.company-name h1 {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Animation Container */
.animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

#genesis-canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    background: transparent;
}


/* Tagline */
.tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: fadeIn 2s ease-out 2s forwards;
    pointer-events: none;
}

.tagline h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

/* Call to Action */
.cta {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: fadeIn 2s ease-out 2.5s forwards;
}

.cta a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: rgba(20, 20, 20, 0.95);
    border-radius: 0;
    padding: 3rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.modal-content p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #cccccc;
}

.modal-content input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-content input:focus {
    border-bottom-color: #ffffff;
}

.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-content button {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-content button:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.thank-you {
    display: none;
}

.thank-you.active {
    display: block;
}

.thank-you p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}





/* Responsive Design */
@media (max-width: 768px) {
    .company-name h1 {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }
    
    .tagline h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .cta a {
        font-size: 1rem;
    }
    
    .modal {
        padding: 2rem;
        margin: 1rem;
    }
}