/* --- Reset & Base --- */
:root {
    --primary-black: #000000;
    --primary-cyan: #33C1E3; /* Cyan du logo */
    --bg-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    height: 100vh;
    overflow: hidden; /* Empêche le scroll */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Hero Container --- */
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Le Cercle d'arrière-plan (Décoration) --- */
.circle-bg {
    position: absolute;
    width: 600px; /* Taille du cercle de fond */
    height: 600px;
    border-radius: 50%;
    z-index: 1;
    animation: rotate360 20s linear infinite; /* Rotation lente */
}

/* Création des arcs du logo en CSS pur pour le fond */
.arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
}

/* Arc supérieur (Cyan dégradé) */
.arc-top {
    border-top-color: var(--primary-cyan);
    border-right-color: rgba(51, 193, 227, 0.3);
    transform: rotate(-45deg);
}

/* Arc inférieur (Noir très léger ou Cyan foncé) */
.arc-bottom {
    border-bottom-color: var(--primary-black);
    border-left-color: rgba(0, 0, 0, 0.1);
    transform: rotate(-45deg);
    opacity: 0.1; /* Très discret */
}

/* --- Logo Typographique --- */
.logo-container {
    position: relative;
    z-index: 10;
    text-align: left; /* Alignement comme sur l'image */
}

.logo-top {
    font-weight: 300; /* Light */
    font-size: 2.5rem;
    color: var(--primary-cyan);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.logo-main {
    font-weight: 700; /* Bold */
    font-size: 4rem;
    color: var(--primary-black);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
}

/* Stylisation du A (Lambda) et du I en bleu */
.cyan-letter {
    color: var(--primary-cyan);
    font-family: sans-serif; /* Pour enlever les sérifs si besoin */
    display: inline-block;
}

/* --- Animations --- */
@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in {
    opacity: 0;
    animation: appear 1.5s ease-out forwards;
}

@keyframes appear {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .circle-bg {
        width: 300px;
        height: 300px;
    }

    .logo-top {
        font-size: 1.5rem;
    }

    .logo-main {
        font-size: 2.2rem;
    }
}