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

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

body {
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

body.loaded {
    animation: pageFadeIn 0.8s cubic-bezier(.22, .9, .35, 1) forwards;
}

.hero {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.hero__logo {
    max-width: min(50vw, 300px);
    height: auto;
}

.content {
    margin-top: 0;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.06em;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #ddd;
}

.section-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    display: block;
}

.footer {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: auto;
    flex-shrink: 0;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 1;
}

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

    .content {
        padding: 1rem 1.5rem;
    }

    .content p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .section-title {
        margin-top: 1.5rem;
        font-size: 1rem;
    }
    
    .footer {
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .footer__link {
        font-size: 0.75rem;
    }
}
