/* =========================================================
   POLICE
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --bg: #05070b;
    --panel: #0b1018;
    --text: #f3f6fa;
    --muted: #9aa7b7;
    --blue: #1677ff;
    --line: #1b2635;
}


/* =========================================================
   RESET & BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
    height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6vw;

    border-bottom: 1px solid #111923;

    position: sticky;
    top: 0;

    background: rgba(5, 7, 11, 0.86);
    backdrop-filter: blur(16px);

    z-index: 10;
}


/* Logo */

.brand img {
    width: 130px;
    height: 58px;

    object-fit: contain;
}


/* Liens de navigation */

.nav nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #c5ced9;
    text-decoration: none;
    font-size: 14px;
}


/* Bouton Contact */

.nav .cta {
    padding: 11px 17px;

    border: 1px solid #2b3b4f;
    border-radius: 999px;

    color: #fff;
}


/* Bouton menu mobile */

.menu {
    display: none;

    background: none;
    border: 0;

    color: #fff;
    font-size: 24px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 720px;

    padding: 100px 10vw;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;
}


/* Effet lumineux en arrière-plan */

.hero-bg {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -120px;
    top: -100px;

    background: radial-gradient(
        circle,
        rgba(22, 119, 255, 0.2),
        transparent 62%
    );

    filter: blur(20px);
}


/* Contenu du Hero */

.hero-copy {
    max-width: 760px;

    position: relative;
    z-index: 2;
}


/* Petit texte au-dessus du titre */

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;

    color: #6687ae;

    font-weight: 700;

    margin: 0 0 20px;
}


/* Titre principal */

.hero h1 {
    font-size: clamp(48px, 7vw, 86px);

    line-height: 1.02;
    letter-spacing: -0.055em;

    margin: 0;
}


/* Mise en évidence du texte */

.hero h1 span {
    color: #4b9cff;
}


/* Texte d'introduction */

.lead {
    max-width: 650px;

    color: var(--muted);

    font-size: 19px;

    margin: 28px 0 36px;
}


/* Boutons */

.actions {
    display: flex;
    gap: 16px;

    flex-wrap: wrap;
}

.primary,
.secondary {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    text-decoration: none;

    border-radius: 8px;

    padding: 14px 20px;

    font-weight: 600;
}


/* Bouton principal */

.primary {
    background: #fff;
    color: #05070b;
}

.primary b {
    font-size: 18px;
}


/* Bouton secondaire */

.secondary {
    color: #dce5ef;

    border: 1px solid #273444;
}


/* Logo en arrière-plan du Hero */

.hero-mark {
    position: absolute;

    right: 6vw;
    bottom: 65px;

    opacity: 0.12;
}

.hero-mark img {
    width: 420px;

    filter: grayscale(1);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 120px 10vw;
}


/* En-tête des sections */

.section-head {
    display: flex;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}


/* Titres */

.section h2,
.band h2,
.contact h2 {
    font-size: clamp(36px, 5vw, 62px);

    line-height: 1.08;
    letter-spacing: -0.04em;

    margin: 0;
}


/* =========================================================
   CARTES EXPERTISE
   ========================================================= */

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* Carte */

.cards article {
    background: var(--panel);

    border: 1px solid var(--line);

    padding: 30px;

    min-height: 250px;
}


/* Numéro / catégorie */

.cards span {
    color: #4b9cff;

    font-size: 12px;
}


/* Titre de la carte */

.cards h3 {
    font-size: 23px;

    margin: 42px 0 10px;
}


/* Texte des cartes */

.cards p,
.split p,
.band p {
    color: var(--muted);
}


/* =========================================================
   BANDEAU SOLUTIONS
   ========================================================= */

.band {
    padding: 100px 10vw;

    background: #0a111b;

    border-block: 1px solid #182535;

    display: flex;
    justify-content: space-between;

    gap: 70px;
}


/* Texte */

.band > div:first-child {
    max-width: 620px;
}


/* =========================================================
   STATISTIQUES
   ========================================================= */

.stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    align-self: end;
}

.stats strong {
    display: block;

    font-size: 38px;
}

.stats span {
    color: #7e8c9c;

    font-size: 12px;
}


/* =========================================================
   À PROPOS
   ========================================================= */

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.split > div:last-child {
    padding-top: 30px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    margin: 0 6vw 80px;

    padding: 90px 8vw;

    background: linear-gradient(
        120deg,
        #0c1725,
        #07101b
    );

    border: 1px solid #1d2e43;

    border-radius: 18px;
}


/* Titre contact */

.contact h2 {
    max-width: 800px;

    margin-bottom: 36px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 30px 6vw;

    border-top: 1px solid #141d28;

    display: flex;
    justify-content: space-between;

    color: #637082;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 800px) {

    /* Navigation */

    .nav nav {
        display: none;
    }

    .menu {
        display: block;
    }


    /* Hero */

    .hero {
        min-height: 650px;

        padding: 80px 7vw;
    }

    .hero-mark {
        display: none;
    }


    /* Sections */

    .section,
    .band {
        padding: 80px 7vw;
    }


    /* En-tête des sections */

    .section-head {
        display: block;
    }

    .section-head > h2 {
        margin-top: 25px;
    }


    /* Cartes */

    .cards {
        grid-template-columns: 1fr;
    }


    /* Statistiques */

    .stats {
        margin-top: 50px;
    }


    /* Contact */

    .contact {
        margin: 0 4vw 50px;

        padding: 60px 7vw;
    }


    /* Footer */

    footer {
        display: block;
    }

    footer span {
        display: block;

        margin: 5px 0;
    }
}
