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

body {
    font-family: "Indie Flower", cursive;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.nothing-you-could-do-regular {
    font-family: "Nothing You Could Do", cursive;
    font-weight: 400;
    font-style: normal;
}

.landing-container {
    min-height: 100vh;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 40%, #e2e8f0 100%);
    
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.landing-content {
    max-width: 580px;
    width: 100%;
    
    text-align: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    
    position: relative;
    z-index: 10;

    animation: fadeInUp 0.8s ease-out;
}

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

.landing-logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.logo-a {
    color: #0f172a;
}

.logo-t {
    color: #3b82f6;
}

.landing-title {
    font-size: 4rem;
    font-weight: 400;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.1;
    
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.landing-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #64748b;
    font-weight: 500;
    max-width: 480px;
    
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.landing-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-landing {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    
    padding: 1rem 2rem;
    
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    
    border-radius: 14px;
    
    transition: all 0.2s ease;
    
    border: none;
    cursor: pointer;
}

.btn-primary-landing {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.3),
        0 2px 8px rgba(59, 130, 246, 0.2);
}

.btn-primary-landing:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.35),
        0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-primary-landing:active {
    transform: translateY(-1px);
}

.btn-secondary-landing {
    background: white;
    color: #475569;
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.03);
}

.btn-secondary-landing:hover {
    background: rgba(248, 250, 252, 1);
    border-color: rgba(148, 163, 184, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-secondary-landing:active {
    transform: translateY(-1px);
}

.landing-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    
    margin-top: 1rem;
    
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    
    padding: 0.65rem 1.25rem;
    
    background: white;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 999px;
    
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(0, 0, 0, 0.02);
    
    transition: all 0.2s ease;
}

.feature-pill i {
    color: #3b82f6;
    font-size: 1rem;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.landing-decoration {
    position: absolute;
    border-radius: 50%;
    
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.08));
    
    filter: blur(60px);
    
    z-index: 1;
    
    animation: float 20s ease-in-out infinite;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    
    animation-delay: 0s;
}

.decoration-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(124, 58, 237, 0.06));
    
    animation-delay: -7s;
}

.decoration-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.04));
    
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@media (max-width: 768px) {   
    .landing-title {
        font-size: 3rem;
    }
    
    .landing-subtitle {
        font-size: 1rem;
    }
    
    .landing-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-landing {
        width: 100%;
        justify-content: center;
    }
    
    .landing-features {
        gap: 0.5rem;
    }
    
    .feature-pill {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 1.5rem;
    }
    
    .landing-logo {
        font-size: 2.5rem;
    }
    
    .landing-title {
        font-size: 2.5rem;
    }
    
    .landing-subtitle {
        font-size: 0.95rem;
    }
}

.btn-landing:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 3px;
}

.feature-pill:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}