/* =========================================================
   BOOSTPME — DÉCOUVRIR KELTOUM
========================================================= */

.discover-keltoum-page {
    --blue: #637cff;
    --purple: #9860ff;
    --pink: #ee5d9d;

    overflow: hidden;

    background: #f7f7fa;

    color: #19191f;
}

.discover-keltoum-page * {
    box-sizing: border-box;
}

.discover-keltoum-page em {
    font-style: normal;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;
}


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

.discover-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 145px 0 105px;

    overflow: hidden;
}

.discover-glow {
    position: absolute;

    width: 620px;
    height: 620px;

    right: -170px;
    top: -220px;

    border-radius: 50%;

    background:
        rgba(112, 89, 255, .13);

    filter: blur(120px);

    pointer-events: none;
}

.discover-hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1fr
        .95fr;

    gap: 70px;

    align-items: center;
}

.discover-copy > span {
    display: block;

    color: #9696a0;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.discover-copy h1 {
    margin: 18px 0 24px;

    color: #17171d;

    font-size:
        clamp(
            57px,
            6.5vw,
            98px
        );

    line-height: .91;

    letter-spacing: -5px;

    font-weight: 500;
}

.discover-copy h1 em {
    display: block;
}

.discover-copy p {
    max-width: 570px;

    color: #686871;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CHAT
========================================================= */

.discover-chat {
    padding: 25px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, .88);

    box-shadow:
        0 30px 80px
        rgba(30, 30, 50, .07);
}

.discover-chat.wide {
    max-width: 850px;

    margin: auto;
}


/* =========================================================
   SEQUENCE
========================================================= */

.discover-keltoum-page
.boost-sequence-message {
    opacity: 0;

    transform:
        translateY(17px)
        scale(.97);

    transition:
        opacity .43s ease,
        transform .43s ease;
}

.discover-keltoum-page
.boost-sequence-message.is-sequence-visible {
    opacity: 1;

    transform: none;
}


/* =========================================================
   MESSAGES
========================================================= */

.discover-user,
.discover-ai {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;
}

.discover-user {
    justify-content: flex-end;
}

.discover-user img {
    order: 2;
}

.discover-user img,
.discover-ai img {
    width: 35px;
    height: 35px;

    flex:
        0 0
        35px;

    border-radius: 50%;

    object-fit: cover;
}

.discover-user > div,
.discover-ai > div {
    max-width: 78%;

    padding:
        14px
        16px;
}

.discover-user > div {
    border-radius:
        17px
        6px
        17px
        17px;

    background: #18191f;
}

.discover-ai > div {
    border-radius:
        6px
        17px
        17px
        17px;

    background:
        linear-gradient(
            145deg,
            #f2eff9,
            #fff
        );
}

.discover-user span,
.discover-ai span {
    display: block;

    margin-bottom: 5px;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}

.discover-user span {
    color:
        rgba(255, 255, 255, .48);
}

.discover-ai span {
    color: #8360cb;
}

.discover-user p,
.discover-ai p {
    margin: 0;

    font-size: 11px;

    line-height: 1.68;
}

.discover-user p {
    color: #f2f2f5;
}

.discover-ai p,
.discover-ai .boost-sequence-text {
    color: #302b34;
}


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

.discover-section,
.discover-final {
    padding: 120px 0;
}

.discover-title {
    max-width: 850px;

    margin-bottom: 55px;
}

.discover-title > span {
    display: block;

    color: #9999a3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.discover-title h2 {
    margin: 14px 0 0;

    color: #19191f;

    font-size:
        clamp(
            43px,
            5.2vw,
            74px
        );

    line-height: .97;

    letter-spacing: -4px;

    font-weight: 500;
}

.discover-alt {
    background: #fff;
}


/* =========================================================
   CHOICES
========================================================= */

.discover-choice-grid {
    display: grid;

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

    gap: 14px;
}

.discover-choice {
    min-height: 230px;

    display: flex;

    flex-direction: column;

    padding: 25px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 22px;

    background: #fff;

    color: inherit;

    text-decoration: none;

    box-shadow:
        0 18px 45px
        rgba(30, 30, 50, .045);

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.discover-choice:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px
        rgba(30, 30, 50, .08);
}

.discover-choice > span {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 45px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #657cff,
            #9c61ff
        );

    color: #fff;

    font-size: 13px;

    font-weight: 800;
}

.discover-choice small {
    color: #9999a3;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.discover-choice strong {
    max-width: 240px;

    margin-top: 8px;

    color: #292930;

    font-size: 16px;

    line-height: 1.4;
}


/* =========================================================
   CTA INSIDE CONVERSATION
========================================================= */

.discover-cta {
    display: flex;

    justify-content: center;

    margin-top: 22px;
}

.discover-cta a {
    min-height: 46px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 0 16px;

    border-radius: 12px;

    background: #18191f;

    color: #f5f5f7;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   FINAL
========================================================= */

.discover-final {
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(113, 88, 255, .08),
            transparent 40%
        ),
        #f4f4f7;
}

.discover-final img {
    width: 62px;
    height: 62px;

    border-radius: 50%;

    object-fit: cover;

    box-shadow:
        0 15px 40px
        rgba(60, 40, 120, .12);
}

.discover-final > .container > span {
    display: block;

    margin-top: 15px;

    color: #8b69dc;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.discover-final h2 {
    max-width: 760px;

    margin:
        20px
        auto
        28px;

    color: #1d1d23;

    font-size:
        clamp(
            40px,
            5vw,
            70px
        );

    line-height: .98;

    letter-spacing: -3.5px;

    font-weight: 500;
}

.discover-final > .container > div {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;
}

.discover-final-primary,
.discover-final-secondary {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 0 17px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}

.discover-final-primary {
    background: #18191f;

    color: #f5f5f7;
}

.discover-final-secondary {
    border:
        1px solid
        rgba(30, 30, 40, .09);

    background: #fff;

    color: #292930;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {

    .discover-hero-grid {
        grid-template-columns: 1fr;
    }

    .discover-choice-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .discover-hero {
        padding: 120px 0 80px;
    }

    .discover-section,
    .discover-final {
        padding: 82px 0;
    }

    .discover-copy h1,
    .discover-title h2,
    .discover-final h2 {
        letter-spacing: -2.5px;
    }

    .discover-user > div,
    .discover-ai > div {
        max-width: 84%;
    }

}