* {
    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(60vw, 400px);
    height: auto;
}

.intro {
    margin-top: 60px;
    max-width: 640px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro__accent {
    margin-top: 1.5rem;
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    letter-spacing: 0.12em;
}

.intro__secondary {
    margin-top: 1.5rem;
}

.cta {
    display: inline-block;
    margin-top: 3rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.12em;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    background-image: linear-gradient(135deg, #ff3131 0%, #ff914d 100%);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-name: gradientFlow;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    text-shadow:
        0 0 12px rgba(255, 49, 49, 0.45),
        0 0 30px rgba(255, 145, 77, 0.3);
    cursor: pointer;
    transition: text-shadow 0.4s cubic-bezier(.22, .9, .35, 1),
                transform 0.4s cubic-bezier(.22, .9, .35, 1);
}

.cta:hover,
.cta:focus-visible {
    text-shadow:
        0 0 18px rgba(255, 49, 49, 0.3),
        0 0 42px rgba(255, 145, 77, 0.24);
    transform: scale(1.05);
    animation-duration: 3s;
}

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

.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) {
    .intro {
        margin-top: 20px;
        padding: 0 1rem;
    }
    
    .cta {
        margin-top: 2rem;
    }

    .footer {
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .footer__link {
        font-size: 0.8rem;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
