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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 0;
}

/* Hero - full viewport with gradient background */
.hero-landing {
    position: relative;
    flex: 1;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e1a 0%, #163a6e 40%, color-mix(in srgb, #163a6e 80%, #1a2744) 70%, #011b3c 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

/* Lottie + Logo wrapper */
.hero-lottie-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero-logo {
    position: relative;
    z-index: 1;
    max-width: 280px;
    height: auto;
    animation: heroFadeInUp 0.8s ease-out both;
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-logo {
        animation: none;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        max-width: 350px;
    }

    .hero-lottie {
        width: 650px;
        height: 650px;
    }
}

@media (max-width: 480px) {
    .hero-lottie {
        width: 380px;
        height: 380px;
    }
}

/* MORE button */
@keyframes heroButtonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-more-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 0.4rem 0.6rem 0.4rem 1.2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
    position: relative;
    opacity: 0;
    animation: heroFadeInUp 0.8s ease-out 3.2s both, heroButtonFloat 2.5s ease-in-out 4s infinite;
}

.hero-more-button::after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-more-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-more-button:hover::after {
    transform: translateY(4px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Modern minimal footer font */
footer {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 0;
}

footer h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

footer p {
    font-weight: 400;
    letter-spacing: -0.01em;
}
