:root {
    --color-ink: #16161d;
    --color-white: #ffffff;
    --color-indigo: #4642ff;
    --color-gray: #5c5c6b;
}

*, *::before, *::after { 
    box-sizing: border-box;
}
html, body { 
    margin: 0;
    padding: 0;
}
em {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
    color: var(--color-indigo);
}
/* ---------- Conteneur principal ---------- */
.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--color-white);
    color: var(--color-ink);
    font-family: "Space Grotesk", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Fond shader (WebGPU) ---------- */
.hero__shader-wrapper {
    position: absolute;
    inset: 0;
}
.parallax {
  /* The image used */
  background-image: url("https://s2-consulting.fr/images/bg.jpg");

  /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
    .parallax {
        background-image: url("https://s2-consulting.fr/images/bg.jpg");
        background-attachment: scroll;
        background-position: left;
         background-size: cover;
    }
}
.hero__shader-wrapper canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- Navigation ---------- */
.hero__header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 1.5rem;
}
@media (min-width: 640px) {
    .hero__header { padding: 1.75rem 3rem; }
}

.hero__logo {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: inherit;
    text-decoration: none;
}
.hero__logo span { color: var(--color-indigo); }

.hero__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--color-gray);
}
@media (max-width: 639px) {
    .hero__nav { display: none; }
}
.hero__nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.hero__nav a:hover { color: var(--color-ink); }

.hero__cta {
    border-radius: 9999px;
    background: var(--color-ink);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}
.hero__cta:hover { background: var(--color-indigo); }

/* ---------- Bloc titre (bas de page) ---------- */
.hero__headline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 0 1.5rem 2.5rem;
    height: 90vh;
}
.hero-tag{font-size:.72rem;font-weight:400;letter-spacing:.35em;color:var(--primary);text-transform:uppercase;margin-bottom:1.6rem;display:flex;align-items:center;gap:.8rem;}
  .hero-tag::before,.hero-tag::after{content:'';display:block;width:40px;height:1px;background:var(--primary);opacity:.5;}
@media (min-width: 640px) {
    .hero__headline-row { padding: 0 3rem  }
}

.hero__headline-wrap { max-width: 48rem; }

.hero__headline {
    margin: 0;
    font-size: clamp(3rem, 7.5vw, 6rem);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.03em;
    text-wrap: balance;
}
.hero__headline em {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
    color: var(--color-indigo);
}

.hero__clients {
    flex-shrink: 0;
    text-align: right;
    
    align-self: flex-end;
}

@media (max-width: 1023px) {
    .hero__clients { display: none; }
}
.hero__clients p {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(92, 92, 107, 0.7);
}
.hero__clients ul {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--color-gray);
}
.hero__clients li + li { margin-top: 0.25rem; }

/* ---------- Animation d'entrée ---------- */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    animation: reveal-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--reveal-delay, 0s);
}
@keyframes reveal-in {
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { animation: none; opacity: 1; transform: none; }
}


/* ---------------------------------------------------------
    SERVICES
    --------------------------------------------------------- */
/* 
   SERVICES — PALETTE
    */

#services {
    --text: #0e150f;
    --background: #ffffff;
    --primary: #4542ff;
    --secondary: #7f66ff;
    --accent: #584dff;

    position: relative;
    overflow: hidden;

    background: transparent;
    color: var(--text);
    /* padding: 0p 0; */
    font-family: "Space Grotesk", sans-serif;
    margin-top: 70px;
}

/* CONTAINER */

#services .section-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/*  INTRODUCTION */

#services .services-intro {
    max-width: 820px;
    margin: 0 auto 10px;
    text-align: center;
}

#services .section-tag, 
#contact .section-tag,
.precision .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}


/*
Petit point coloré devant "Ce que nous faisons"
*/

#services .section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow:
        0 0 0 5px rgba(69, 66, 255, 0.08);
}

.precision .section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow:
        0 0 0 5px rgba(69, 66, 255, 0.08);
}


#services .section-h2, #realisations .section-h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.055em;
    color: var(--text);
}


#services .section-h2 span {
    color: var(--primary);
}


#services .section-sub {
    max-width: 650px;
    margin: 30px auto 0;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(14, 21, 15, 0.62);
}

/* 
   CARROUSEL
    */

#services .services-carousel {
    position: relative;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: none;
}


#services .services-carousel-track {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 430px;
}


/* CARTES */

#services .service-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 330px;
    min-height: 330px;
    box-sizing: border-box;
    transform:
        translate(-50%, -50%);
    transform-origin: center center;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(14, 21, 15, 0.09);
    border-radius: 26px;
    background: var(--background);
    box-shadow:
        0 12px 30px rgba(14, 21, 15, 0.055),
        0 3px 8px rgba(14, 21, 15, 0.035);
    will-change: transform, opacity;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Ligne violette discrète en haut de la carte */

#services .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent) );
    opacity: 0;
    transform: scaleX(0.5);
    transform-origin: center;
    transition:
        opacity 0.35s ease,
        transform 0.45s ease;
}

/* Halo très léger au survol */

#services .service-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    filter: blur(55px);
    pointer-events: none;
    transition: opacity 0.45s ease;
}

#services .service-card:hover {
    border-color: rgba(69, 66, 255, 0.25);
    box-shadow:
        0 25px 65px rgba(69, 66, 255, 0.12),
        0 8px 20px rgba(14, 21, 15, 0.06);
}

#services .service-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

#services .service-card:hover::after {
    opacity: 0.06;
}

/* CONTENU CARTE */

#services .service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 330px;
    padding: 30px;
}


/* NUMÉRO */

#services .service-number {
    position: absolute;
    top: 27px;
    right: 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(14, 21, 15, 0.35);
    transition: color 0.3s ease;
}

#services .service-card:hover .service-number {
    color: var(--primary);
}

/* ICÔNE */

#services .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    color: var(--primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    will-change: transform;
    transition: color 0.3s ease, filter 0.3s ease;
}


#services .service-card:hover .service-icon {
    color: var(--accent);
    filter:
        drop-shadow(
            0 5px 12px rgba(69, 66, 255, 0.2)
        );
}


/* TITRE */

#services .service-title {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: var(--text);
}


/* DESCRIPTION  */

#services .service-desc {
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(14, 21, 15, 0.60);
}


/* TECHNOLOGIES */

#services .service-technologies {
    margin-top: auto;
    padding-top: 22px;
    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
}


/* FLECHE */

#services .service-arrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    transition:
        color 0.3s ease;
}


#services .service-arrow span {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: var(--primary);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

#services .service-card:hover .service-arrow {
    color: var(--primary);
}

#services .service-card:hover .service-arrow span {
    color: var(--accent);
    transform: translateX(6px);
}


/* CARTE ACTIVE */

#services .service-card.is-active {
    border-color: rgba(69, 66, 255, 0.16);
    box-shadow:
        0 20px 55px rgba(69, 66, 255, 0.09),
        0 8px 18px rgba(14, 21, 15, 0.05);
}

/* Petit accent supplémentaire sur la carte centrale */

#services .service-card.is-active::before {
    opacity: 1;
    transform: scaleX(1);
}

/* CERCLE CENTRAL */

#services .services-carousel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(69, 66, 255, 0.12);
    box-shadow:
        0 15px 50px rgba(14, 21, 15, 0.08),
        0 0 0 10px rgba(69, 66, 255, 0.025);
    backdrop-filter: blur(12px);
}


#services .services-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
}


#services .services-counter-current {
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--primary);
}


#services .services-counter-separator,
#services .services-counter-total {
    font-size: 11px;
    font-weight: 500;
    color: rgba(14, 21, 15, 0.35);
}


#services .services-counter-label {
    margin-top: 8px;
    font-size: 8px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(14, 21, 15, 0.4);
}


/* CONTROLES */

#services .services-controls {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
}


#services .services-control {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(14, 21, 15, 0.12);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


#services .services-control:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow:
        0 8px 25px rgba(69, 66, 255, 0.22);
}


#services .services-control:active {
    transform: scale(0.96);
}


/* DOTS */

#services .services-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}


#services .services-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 21, 15, 0.14);
    cursor: pointer;
    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


#services .services-dot:hover {
    background: var(--secondary);
    transform: scale(1.2);
}


#services .services-dot.is-active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary);
}


/* FOCUS ACCESSIBLE */

#services .services-control:focus-visible,
#services .services-dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}


#services .services-carousel:focus-visible {
    outline: none;
}


/* RESPONSIVE — TABLETTE */

@media (max-width: 900px) {
    #services {
        padding: 100px 0;
    }

    #services .services-intro {
        margin-bottom: 60px;
    }

    #services .services-carousel {
        min-height: 570px;
    }


    #services .services-carousel-track {
        height: 370px;
    }

    #services .service-card {
        width: 260px;
        height: 300px;
        min-height: 300px;
    }


    #services .service-card-content {
        min-height: 300px;
        padding: 25px;
    }

    #services .services-carousel-center {
        width: 110px;
        height: 110px;
    }


    #services .services-counter-current {
        font-size: 29px;
    }
}


/* RESPONSIVE — MOBILE */

@media (max-width: 600px) {
    #services {
        padding: 85px 0;
    }

    #services .section-inner {
        width: min(100% - 30px, 500px);
    }

    #services .services-intro {
        margin-bottom: 40px;
    }

    #services .section-tag {
        font-size: 10px;
    }

    #services .section-h2 {
        font-size: clamp(38px, 11vw, 54px);
        letter-spacing: -0.06em;
    }

    #services .section-sub {
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.65;
    }


    #services .services-carousel {
        min-height: 520px;
    }

    #services .services-carousel-track {
        height: 350px;
    }

    #services .service-card {
        width: 235px;
        height: 290px;
        min-height: 290px;
        border-radius: 22px;
    }

    #services .service-card-content {
        min-height: 290px;
        padding: 23px;
    }

    #services .service-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 22px;
    }

    #services .service-title {
        font-size: 19px;
    }

    #services .service-desc {
        font-size: 12.5px;
    }

    #services .service-technologies {
        font-size: 8px;
    }

    #services .services-carousel-center {
        width: 95px;
        height: 95px;
    }

    #services .services-counter-current {
        font-size: 26px;
    }

    #services .services-controls {
        gap: 18px;
    }

    #services .services-control {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }
}

/* REDUCTION DES ANIMATIONS*/

@media (prefers-reduced-motion: reduce) {
    #services *,
    #services *::before,
    #services *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Elegance carousel */

.elegant-carousel {
    --carousel-bg: #fffff;
    --carousel-text: #171717;
    --carousel-muted: #7f66ff;
    --carousel-border: rgba(23, 23, 23, 0.14);
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background: var(--carousel-bg);
    color: var(--carousel-text);
    font-family: 'Mazzard H', sans-serif;
}

.elegant-carousel *,
.elegant-carousel *::before,
.elegant-carousel *::after {
    box-sizing: border-box;
}

.elegant-carousel__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 1;
    transition:
        background 800ms ease,
        opacity 800ms ease;
}

.elegant-carousel__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    width: min(1400px, calc(100% - 100px));
    min-height: 640px;
    margin: 0 auto;
    padding: 0 0 40px;
    align-items: center;
}

/* CONTENT */

.elegant-carousel__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 560px;
}

.elegant-carousel__content-inner {
    width: min(620px, 100%);
    padding-right: 60px;
}

.elegant-carousel__collection-number {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 1;
    transition:
        opacity 400ms ease,
        transform 600ms ease;
        color: var(--primary);
}

.elegant-carousel__collection-number.is-transitioning {
    opacity: 0;
    transform: translateY(-12px);
}

.elegant-carousel__number-line {
    display: block;
    width: 42px;
    height: 1px;
    background: currentColor;
}

.elegant-carousel__number-text {
    white-space: nowrap;
}

.elegant-carousel__title {
    margin: 0 0 18px;
    font-size: clamp(54px, 5.5vw, 96px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.045em;
    opacity: 1;
    transform: translateY(0);
    font-family: "Space Grotesk", sans-serif;
    transition:
        opacity 400ms ease,
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elegant-carousel__title.is-transitioning {
    opacity: 0;
    transform: translateY(25px);
}

.elegant-carousel__subtitle {
    margin: 0 0 26px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 1;
    transform: translateY(0);
    color: var(--secondary);
    transition:
        color 500ms ease,
        opacity 400ms ease,
        transform 700ms 80ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elegant-carousel__subtitle.is-transitioning {
    opacity: 0;
    transform: translateY(20px);
}

.elegant-carousel__description {
    max-width: 510px;
    margin: 0;
    color: #666;
    font-size: 17px;
    line-height: 1.75;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 400ms ease,
        transform 700ms 140ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elegant-carousel__description.is-transitioning {
    opacity: 0;
    transform: translateY(20px);
}

/* ARROWS */

.elegant-carousel__arrows {
    display: flex;
    gap: 10px;
    margin-top: 48px;
}

.elegant-carousel__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid var(--carousel-border);
    border-radius: 50%;
    background: transparent;
    color: var(--carousel-text);
    cursor: pointer;
    transition:
        background 250ms ease,
        color 250ms ease,
        border-color 250ms ease,
        transform 250ms ease;
}

.elegant-carousel__arrow:hover {
    background: #171717;
    color: #fff;
    border-color: #171717;
    transform: translateY(-2px);
}

.elegant-carousel__arrow:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

/* IMAGE */

.elegant-carousel__image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 560px;
}

.elegant-carousel__image-frame {
    position: relative;
    width: min(440px, 100%);
    height: 580px;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0) scale(1);
    transition:
        opacity 400ms ease,
        transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.elegant-carousel__image-frame.is-transitioning {
    opacity: 0;
    transform:
        translateX(40px)
        scale(1.025);
}

.elegant-carousel__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition:
        transform 6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.elegant-carousel:hover .elegant-carousel__image {
    transform: scale(1.035);
}

.elegant-carousel__image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition:
        background 700ms ease;
}

/* DECORATIVE CORNERS */

.elegant-carousel__frame-corner {
    position: absolute;
    width: 70px;
    height: 70px;
    pointer-events: none;
    transition:
        border-color 700ms ease;
}

.elegant-carousel__frame-corner--tl {
    top: 42px;
    right: calc(min(440px, 100%) - 20px);
    border-top: 1px solid;
    border-left: 1px solid;
}

.elegant-carousel__frame-corner--br {
    right: -18px;
    bottom: 42px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

/* PROGRESS */

.elegant-carousel__progress {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1400px, calc(100% - 100px));
    margin: 0 auto;
    padding-bottom: 45px;
    gap: 28px;
}

.elegant-carousel__progress-item {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #999;
    text-align: left;
    cursor: pointer;
}

.elegant-carousel__progress-track {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(23, 23, 23, 0.14);
}

.elegant-carousel__progress-fill {
    display: block;
    width: 0;
    height: 100%;
    background: #171717;
    transition:
        width 50ms linear,
        background-color 500ms ease;
}

.elegant-carousel__progress-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition:
        color 250ms ease;
}

.elegant-carousel__progress-item:hover,
.elegant-carousel__progress-item.is-active {
    color: #171717;
}

.elegant-carousel__progress-item:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 5px;
}

/* TABLET */

@media (max-width: 1000px) {
    .elegant-carousel {
        min-height: auto;
    }

    .elegant-carousel__inner {
        grid-template-columns: 1fr;
        width: min(760px, calc(100% - 48px));
        padding: 70px 0 50px;
    }

    .elegant-carousel__content {
        order: 1;
        min-height: auto;
        padding: 0 0 60px;
    }

    .elegant-carousel__content-inner {
        padding-right: 0;
    }

    .elegant-carousel__image-container {
        order: 0;
        min-height: auto;
        justify-content: center;
    }

    .elegant-carousel__image-frame {
        width: min(500px, 100%);
        height: 600px;
    }

    .elegant-carousel__frame-corner--tl {
        top: -18px;
        right: calc(50% - 270px);
    }

    .elegant-carousel__frame-corner--br {
        right: calc(50% - 270px);
        bottom: -18px;
    }

    .elegant-carousel__progress {
        width: min(760px, calc(100% - 48px));
    }
}

/* MOBILE */

@media (max-width: 600px) {
    .elegant-carousel__inner {
        width: calc(100% - 36px);
        padding-top: 45px;
        padding-bottom: 35px;
    }

    .elegant-carousel__image-frame {
        width: 100%;
        height: 460px;
    }

    .elegant-carousel__frame-corner {
        width: 48px;
        height: 48px;
    }

    .elegant-carousel__frame-corner--tl {
        right: 8px;
    }

    .elegant-carousel__frame-corner--br {
        right: 8px;
    }

    .elegant-carousel__content {
        padding-bottom: 30px;
    }

    .elegant-carousel__collection-number {
        margin-bottom: 25px;
    }

    .elegant-carousel__title {
        font-size: clamp(48px, 15vw, 72px);
    }

    .elegant-carousel__subtitle {
        margin-bottom: 20px;
        font-size: 10px;
    }

    .elegant-carousel__description {
        font-size: 15px;
        line-height: 1.7;
    }

    .elegant-carousel__arrows {
        margin-top: 32px;
    }

    .elegant-carousel__arrow {
        width: 46px;
        height: 46px;
    }

    .elegant-carousel__progress {
        display: flex;
        width: calc(100% - 36px);
        gap: 10px;
        padding-bottom: 30px;
    }

    .elegant-carousel__progress-item {
        flex: 1;
    }

    .elegant-carousel__progress-label {
        display: none;
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    .elegant-carousel *,
    .elegant-carousel *::before,
    .elegant-carousel *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
} 

.right {
  width: 34%;
  height: 100%;
}

.img {
  width: 100%;
  height: 100%;
}

/*  BACKGROUND CLAVIER — à ajouter dans le CSS de la hero */

.hero__keyboard {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  border-radius: inherit;
}

.hero__keyboard video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: keyboardZoom 12s ease-in-out infinite alternate;
  filter: saturate(0.85) contrast(0.95);
  will-change: transform;
}

/* Zoom extrêmement subtil */
@keyframes keyboardZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.09);
  }
}

/* MASQUE — fond plus doux sur les bords */
.hero__keyboard {
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 8%,
      #000 88%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 8%,
      #000 88%,
      transparent 100%
    );
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero__keyboard video {
    transform: scale(1.12);
    animation: keyboardZoomMobile 12s ease-in-out infinite alternate;
  }
}

@keyframes keyboardZoomMobile {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1.17);
  }
}

/* ACCESSIBILITÉ / PERFORMANCE */

@media (prefers-reduced-motion: reduce) {
  .hero__keyboard video {
    animation: none;
    transform: scale(1.05);
  }
}

.hero__keyboard {
  z-index: 0;
  
}

.hero__shader-wrapper {
  z-index: 1;
  opacity: 0.1;
}

.hero__header,
.hero__headline-row {
  position: relative;
  z-index: 2;
}




/* CONTACT — VARIABLES  */

#contact {
    --text: #0e150f;
    --background: #ffffff;
    --primary: #4542ff;
    --secondary: #7f66ff;
    --accent: #584dff;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text);
    background: var(--background);
}


/* CONTENEUR CONTACT  */

#contact {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

#contact .left {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

/* INTRODUCTION */

#contact .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

#contact .section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary);
    box-shadow:
        0 0 0 5px rgba(69, 66, 255, 0.08);
}


#contact .section-h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.055em;
    color: var(--text);
    font-family: 'Mazzard H', sans-serif;
}

#contact .section-h2 span {
    color: var(--primary);
}

#contact .section-sub {
    max-width: 620px;
    margin-top: 28px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(14, 21, 15, 0.60);
}

/*FORMULAIRE */

#contact .contact-form {
    width: 100%;
    margin-top: 42px;
}

/* LIGNE DE CHAMPS */

#contact .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/*  GROUPE  */

#contact .form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/*  LABEL */

#contact .form-label {
    display: block;
    margin-bottom: 9px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: var(--primary);
}

/*   INPUT / SELECT / TEXTAREA */

#contact .form-input,
#contact .form-select,
#contact .form-textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    background: #ffffff;
    border: 1px solid rgba(14, 21, 15, 0.14);
    border-radius: 12px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}
/*  INPUT */
#contact .form-input {
    height: 56px;
    padding: 0 17px;
}
/*  PLACEHOLDER */
#contact .form-input::placeholder,
#contact .form-textarea::placeholder {
    color: rgba(14, 21, 15, 0.34);
    opacity: 1;
}
/*  FOCUS */
#contact .form-input:focus,
#contact .form-select:focus,
#contact .form-textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(69, 66, 255, 0.08);
}
/*  HOVER */
#contact .form-input:hover,
#contact .form-select:hover,
#contact .form-textarea:hover {
    border-color: rgba(69, 66, 255, 0.30);
}

/*  SELECT */
#contact .form-select {
    height: 56px;
    padding: 0 45px 0 17px;
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient( 45deg, transparent 50%, var(--primary) 50% ),
        linear-gradient( 135deg, var(--primary) 50%, transparent 50% );
    background-position: calc(100% - 20px) 24px, calc(100% - 15px) 24px; 
    background-size: 5px 5px,5px 5px;
    background-repeat: no-repeat;
}
/*  TEXTAREA  */

#contact .form-textarea {
    min-height: 170px;
    padding: 16px 17px;
    resize: vertical;
    line-height: 1.6;
}
/*  BOUTON PRINCIPAL  */
#contact .btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    margin-top: 8px;
    padding: 0 28px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100% );
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(69, 66, 255, 0.20);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}
/* Reflet animé du bouton */
#contact .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 90deg, transparent,  rgba(255, 255, 255, 0.20), transparent );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

#contact .btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow:
        0 18px 40px rgba(69, 66, 255, 0.27);
}

#contact .btn-primary:hover::before {
    left: 140%;
}

#contact .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(69, 66, 255, 0.18);
}
/* FOCUS BOUTON  */
#contact .btn-primary:focus-visible {
    outline: 2px solid var(--primary);

    outline-offset: 4px;
}
/* ETATS DE VALIDATION  */
#contact .form-input:required:invalid:not(:placeholder-shown),
#contact .form-textarea:required:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 60, 80, 0.55);
    box-shadow:
        0 0 0 3px rgba(220, 60, 80, 0.06);
}

#contact .form-input:required:valid:not(:placeholder-shown) {
    border-color: rgba(69, 66, 255, 0.35);
}


/* MESSAGE DE SUCCÈS */

#contact #form-success {
    display: none;
    box-sizing: border-box;
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(69, 66, 255, 0.18);
    border-radius: 12px;
    background: linear-gradient(135deg,  rgba(69, 66, 255, 0.055),rgba(127, 102, 255, 0.035));
    text-align: center;
    animation:
        contactSuccessIn 0.5s ease forwards;
}


#contact #form-success p {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary) !important;
}


@keyframes contactSuccessIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 700px) {
    #contact {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    #contact .left {
        width: 100%;
    }

    #contact .section-h2 {
        font-size: clamp(38px, 11vw, 55px);
    }

    #contact .section-sub {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    #contact .contact-form {
        margin-top: 32px;
    }

    #contact .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    #contact .form-input,
    #contact .form-select {
        height: 54px;
    }


    #contact .form-textarea {
        min-height: 150px;
    }


    #contact .btn-primary {
        min-height: 56px;
    }
}


/* PETITS ÉCRANS */

@media (max-width: 420px) {
    #contact {
        padding-left: 15px;
        padding-right: 15px;
    }

    #contact .section-tag {
        font-size: 9px;
    }

    #contact .form-label {
        font-size: 10px;
    }

    #contact .form-input,
    #contact .form-select,
    #contact .form-textarea {
        font-size: 13px;
    }
}

/*  REDUCTION DES ANIMATIONS */

@media (prefers-reduced-motion: reduce) {

    #contact *,
    #contact *::before,
    #contact *::after {
        transition: none !important;
        animation: none !important;
    }

}

.left {
  width: 66%;
  height: 100%;
}
.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  left: 0;
  backdrop-filter: blur(20px);
  position: relative;
}

.form::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 40%;
  right: 1%;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgb(194, 13, 170) 20%,
    rgb(26, 186, 235) 60%,

    rgb(26, 186, 235) 100%
  );
  filter: blur(70px);
  border-radius: 50%;
}

.right {
  width: 34%;
  height: 100%;
}

.img {
  width: 100%;
  height: 100%;
}

.container::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  right: -40%;
  background: rgb(157, 173, 203);
  background: radial-gradient(
    circle,
    rgba(157, 173, 203, 1) 61%,
    rgba(99, 122, 159, 1) 100%
  );
  border-radius: 50%;
  z-index: -1;
}

#contact {
  display: flex;
  max-width: 99%;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #ffffff25;
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.03);
  /* border: 0.1px solid rgba(128, 128, 128, 0.178); */
  padding: 100px 0 30px 30px
}


/* =========================================================
   ANIMATED BEAM - SYMFONY / TWIG
   ========================================================= */

.animated-beam {
    --beam-bg: #050509;
    --beam-border: rgba(255, 255, 255, 0.08);
    --beam-node-bg: rgba(15, 15, 23, 0.92);

    position: relative;
    width: 100%;
    max-width: 900px;
    /* height: 300px; */
    margin: 0 auto;

    overflow: hidden;

    border: 1px solid var(--beam-border);
    border-radius: 28px;

    /* background:
        radial-gradient(
            circle at 50% 50%,
            rgba(168, 85, 247, 0.08),
            transparent 35%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(34, 211, 238, 0.04),
            transparent 60%
        ),
        var(--beam-bg); */

    /* box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03); */
}

/* Grille très légère en arrière-plan */

.animated-beam::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
    mask-image: radial-gradient(
        ellipse at center,
        black 20%,
        transparent 80%
    );
}

/* =========================================================
   SVG
   ========================================================= */

.animated-beam__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

/* Ligne de fond */

.beam-path {
    fill: none;
    stroke: rgba(148, 163, 184, 0.14);
    stroke-width: 2;
    stroke-linecap: round;
}

/* Ligne lumineuse */

.beam-path--animated {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 120 400;
    animation:
        beam-flow 4s linear infinite;
}

/* =========================================================
   CONTENU
   ========================================================= */

.animated-beam__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.animated-beam__row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.animated-beam__row--center {
    justify-content: space-between;
}

/* =========================================================
   NODES
   ========================================================= */

.beam-node {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    user-select: none;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Technologies */

.beam-node--technology {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.beam-node--technology img{
    width: 100%;
    max-width: 74px;
    border-radius: 50%;
}

/* Symfony */

.beam-node--symfony {
    width: 150px;
    height: 150px;
    flex-direction: column;
    gap: 5px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(169, 85, 247, 0.022),
            rgba(15, 15, 23, 0.241) 65%
        );
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.08),
        0 0 0px rgba(168, 85, 247, 0.18),
        0 15px 50px rgba(0, 0, 0, 0.4);
    animation: symfony-pulse 3s ease-in-out infinite;
}

.beam-node--symfony img {
    width: 100%;
    max-width: 140px;
    border-radius: 50%;
}
/* =========================================================
   ICONS / TEXTES
   ========================================================= */

.beam-node__icon {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    font-weight: 800;

    letter-spacing: -0.04em;

    color: #f8fafc;
}

.beam-node__icon--twig {
    color: #65e6a5;

    font-size: 28px;
}

.beam-node__icon--js {
    color: #facc15;

    font-size: 19px;
}

.beam-node__icon--html {
    color: #fb7185;

    font-size: 30px;
}

.beam-node__icon--css {
    color: #60a5fa;

    font-size: 30px;
}

.beam-node__icon--sql {
    color: #c084fc;

    font-size: 14px;
}

/* Symfony */

.beam-node__symfony-mark {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #d4d4d8
        );

    color: #111827;

    font-family:
        Georgia,
        serif;

    font-size: 32px;

    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3);
}

.beam-node__label {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   HOVER
   ========================================================= */

.beam-node--technology:hover {
    transform: translateY(-5px) scale(1.05);

    border-color: rgba(168, 85, 247, 0.4);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(168, 85, 247, 0.12);
}

.beam-node--symfony:hover {
    transform: scale(1.07);

    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.15),
        0 0 55px rgba(168, 85, 247, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes beam-flow {
    from {
        stroke-dashoffset: 520;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes symfony-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(168, 85, 247, 0.08),
            0 0 35px rgba(168, 85, 247, 0.16),
            0 15px 50px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(168, 85, 247, 0.18),
            0 0 55px rgba(168, 85, 247, 0.28),
            0 20px 60px rgba(0, 0, 0, 0.45);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .animated-beam {
        height: 500px;

        border-radius: 22px;
    }

    .animated-beam__content {
        padding: 45px 30px;
    }

    .beam-node--technology {
        width: 62px;
        height: 62px;
    }

    .beam-node--symfony {
        width: 92px;
        height: 92px;
    }

    .beam-node__symfony-mark {
        width: 43px;
        height: 43px;

        font-size: 26px;
    }

    .beam-node__icon {
        font-size: 13px;
    }

    .beam-node__icon--twig,
    .beam-node__icon--html,
    .beam-node__icon--css {
        font-size: 24px;
    }

    .beam-node__icon--js {
        font-size: 16px;
    }

    .beam-node__icon--sql {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    .animated-beam {
        height: 450px;
    }

    .animated-beam__content {
        padding: 35px 18px;
    }

    .beam-node--technology {
        width: 54px;
        height: 54px;
    }

    .beam-node--symfony {
        width: 82px;
        height: 82px;
    }

    .beam-node__symfony-mark {
        width: 38px;
        height: 38px;

        font-size: 22px;
    }

    .beam-node__label {
        font-size: 8px;
    }
}

/* =========================================================
   REDUCTION DES ANIMATIONS
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .beam-node--symfony {
        animation: none;
    }

    .beam-path--animated {
        animation: none;
    }

    .beam-node {
        transition: none;
    }
}
  /* HERO test*/

  footer{
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            ellipse 75% 55% at 50% 105%,
            rgba(120, 72, 255, 0.95) 0%,
            rgba(157, 121, 255, 0.75) 35%,
            rgba(210, 195, 255, 0.35) 65%,
            transparent 100%
        ),
        radial-gradient(
            ellipse 50% 45% at 0% 75%,
            rgba(150, 115, 255, 0.55) 0%,
            rgba(200, 185, 255, 0.25) 45%,
            transparent 100%
        ),
        radial-gradient(
            ellipse 50% 45% at 100% 75%,
            rgba(150, 115, 255, 0.55) 0%,
            rgba(200, 185, 255, 0.25) 45%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #ffffff 25%,
            #faf8ff 40%,
            #eee9ff 55%,
            #d2c4ff 72%,
            #9b78ff 100%
        );
        border-top:1px solid var(--glass-border);
        padding:3rem 5% 2rem;
        font-family: "Space Grotesk", sans-serif;
    }
  .footer-inner{max-width:1100px;margin:0 auto;}
  .footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem;}
  .footer-brand{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem;}
  .footer-brand img{height:30px;width:30px;object-fit:contain;}
  .footer-brand span{font-size:.9rem;font-weight:200;letter-spacing:.2em;}
  .footer-desc{font-size:.82rem;font-weight:300;color:var(--muted);line-height:1.8;margin-bottom:1rem;}
  .footer-col-title{font-size:.68rem;font-weight:800;letter-spacing:.3em;color:var(--primary);text-transform:uppercase;margin-bottom:1.2rem;}
  .footer-links{list-style:none;display:flex;flex-direction:column;gap:.7rem;}
  .footer-links a{font-size:.82rem;font-weight:300;color:var(--muted);text-decoration:none;transition:color .3s;}
  .footer-links a:hover{color:var(--blue);}
  .footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid var(--glass-border);}
  .footer-copy{font-size:.75rem;font-weight:300;color:var(--muted);}
