:root {
    --bg: #050505;
    --text: #ffffff;
    --muted: #ffffffc7;
    --line: rgba(255, 255, 255, .08);
}

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

body {
    font-family: 'Lexend', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow: hidden;
}

/* FD */

.grid {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 90%);

    z-index: 0;
    pointer-events: none;
}

.glow {
    position: fixed;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .12) 0%,
            rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 10s ease-in-out infinite;

    z-index: 0;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Titres */

.logo-title .question {
    color: #33F0FF;
}

.logo-title .exclamation {
    color: #ff33e9a6;
}

.logo-title {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

/* MEP */

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content {
    max-width: 900px;
    text-align: center;
    font-weight: 100;
}

/* Badge */

.label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff33e9a6;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

/* contenu */

.text-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.text-block p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 65ch;
    line-height: 1.75;
    text-wrap: pretty;
    /*    text-wrap:balance; */
}

/* Liens */

a {
    color: #33F0FF;
    text-decoration: none;
    border-bottom: 1px solid #33F0FF;
    transition: color 0.6s ease, border-color 0.6s ease;
}

a:hover {
    color: #ff33e9a6;
    border-color: #ff33e9a6;
}

/* Footer */

.footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: .85rem;
    letter-spacing: .1em;
    z-index: 3;
    pointer-events: auto;
}

/* Mobiles */

@media (max-width:768px) {

    .logo-title {
        font-size: clamp(3rem, 18vw, 6rem);
    }

    .text-block p {
        font-size: 1rem;
        max-width: 100%;
    }

    .footer {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

}