@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
}

.landing-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.landing-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    margin-top: -10vh; /* This moves the hero section up */
}

.typing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.typing-text {
    font-size: 4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0;
    word-spacing: 0;
    font-family: 'Inter', sans-serif;
}

.cursor {
    font-size: 4rem;
    font-weight: 500;
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #fff;
    margin-left: 2px;
}

.cursor.blinking {
    animation: blink 1.2s step-end infinite;
}

.autocomplete-suggestions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 1.5s;
}

.suggestion {
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.suggestion:hover {
    color: #888;
}

.decrypt-text {
    font-size: 4rem;
    font-weight: 500;
    opacity: 0;
    animation: decrypt 2s ease forwards;
    animation-delay: 2.5s;
}

.decrypting {
    display: inline-block;
    position: relative;
}

.decrypting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    animation: decryptMask 2s ease forwards;
    animation-delay: 3s;
}

.typed-text, .scrambling-text {
    display: inline;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    letter-spacing: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
}

.scrambling-text {
    color: #fff;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.scrambling-text.decrypting {
    animation: decrypt 0.3s ease forwards;
}

.scrambling-text.fade-in {
    opacity: 0;
    animation: fadeInScramble 0.4s forwards;
}

@keyframes decrypt {
    0% {
        filter: blur(5px);
        opacity: 0.5;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.hero-description {
    font-size: 3.5rem;
    font-weight: 400;
    color: #888;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 5s;
}

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

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

@keyframes decryptMask {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

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

@keyframes fadeInScramble {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 3rem;
    }
    
    .cursor {
        font-size: 3rem;
    }
    
    .suggestion {
        font-size: 1.25rem;
    }
    
    .decrypt-text {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 2.5rem;
    }
} 