.experience-slider-controls {
    display: none;
}

main {
    flex: 1;
}

.hero-home {

    flex: 1;

    position: relative;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    padding:
        var(--space-30)
        var(--space-5);

    background: var(--component-2);

}

.hero-home::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(147, 51, 234, .05),
            transparent 100%
        );

    filter: blur(120px);

    pointer-events: none;

    z-index: 0;

}

/* ==========================================
   BLOBS
========================================== */

.hero-blobs {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 1;

}

.hero-blob {

    position: absolute;

    background: var(--accent);

    border-radius: 58% 42% 63% 37% / 41% 62% 38% 59%;

    filter: blur(70px);

    opacity: .16;

    will-change: transform;

    transform: translateZ(0);

    backface-visibility: hidden

}

.blob-1 {

    width: 280px;
    height: 280px;

}

.blob-2 {

    width: 260px;
    height: 260px;

    opacity: .12;

}

/* ==========================================
   CONTENT
========================================== */

.hero-home-container {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 700px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

}

.hero-divider {

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 70px;

    display: block;

    z-index: 2;

}

.hero {
    flex: 1;

    background-color: var(--background);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: var(--space-30) var(--space-5);
}

.hero-container {

    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

}


.home-offers,
.home-experience,
.home-discover,
.home-cta {

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px var(--space-5);

}

.hero-subtitle {

    font-family: var(--font-body);

    font-size: 30px;
    font-weight: 700;

    line-height: 1.6;

    color: var(--text);

    max-width: 620px;

    margin-bottom: var(--space-8);

}

.hero-description {

    color: var(--text-70);

    max-width: 560px;

    line-height: 1.7;

    margin-bottom: var(--space-10);

}

.home-offers {

    padding: 40px 0;

}

.section-header {

    width: 100%;

    margin: 0 auto 50px;

    text-align: center;

}

.section-faq {

    width: 100%;

    margin: 0 auto 10px;

    text-align: center;

}

.offers-grid {

    align-items: center;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

}

.offer-card {

    position: relative;

    align-items: center;

    display: flex;
    flex-direction: column;

    width: 100%;

    padding: 30px;

    border-radius: 8px;

    overflow: hidden;

    letter-spacing: -0.03em;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

    user-select: none;

}

.offer-title {

    margin: 0 0 10px;

    font-family: "MabryPro";

    font-weight: 900;

    font-size: 42px;

    line-height: .9;

    letter-spacing: -0.03em;

}

.offer-price {

    margin: 0;

    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;

    opacity: .7;

}

.offer-card .button {

    margin-top: 30px;

}

.offer-premium {

    background: var(--card-background);

    color: var(--button-secondary-fill-text);

}


.offer-free {

    background: var(--component-1);

    color: var(--text);

}

.section-container {

    width: 100%;
    max-width: 770px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

}

.offer-badge {

    margin: 0 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding:
        3px
        12px;

    border-radius: 7px;

    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .04em;

}

.tag-offer-premium {

    background: var(--accent);

    color: white;

}

.tag-offer-free {

    background: var(--text);

    color: var(--button-secondary-fill-text);

}

.offer-features {

    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 15px;

    margin: 0;
    padding: 0;

    margin-top: 30px;

    list-style: none;

}

.offer-features li {

    display: flex;
    align-items: center;

    gap: 10px;

    font-family: "Inter";
    font-size: 17px;
    font-weight: 400;

}

.feature-icon {

    flex-shrink: 0;

    color: var(--button-secondary-fill-text);

}

.feature-icon-fill {

    flex-shrink: 0;

    color: var(--text);

}

.feature-disabled {

    opacity: .5;

}

.feature-disabled .feature-icon {

    color: var(--text);

}

/* ==========================================
   POPUP
========================================== */

.home-signup-popup {

    user-select: none;

    position: fixed;

    top: 15px;
    left: 50%;

    z-index: 100;

    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;

    width: max-content;

    background: #d09aff;

    border-radius: 14px;

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, -20px)
        scale(.97);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

}


.home-signup-popup.show {

    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0)
        scale(1);

}


.home-signup-popup-content {

    display: flex;

    align-items: center;

    gap: 15px;
 

}


.home-signup-popup-text {

    min-width: 0;

    display: flex;

    flex-direction: column;

    margin-right: 100px;

}


.home-signup-popup-text strong {

    font-family: "MabryPro";

    font-size: 19px;
    font-weight: 900;

    color: black;

}


.home-signup-popup-text span {

    font-family: "Inter";

    font-weight: 500;

    font-size: 16px;

    color: black;

}


.home-signup-popup .button2 {

    flex-shrink: 0;

    white-space: nowrap;

}

.home-signup-popup-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;
}

.platform-section-container {

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

}

.platform-section-title {

    width: 100%;
    max-width: 1150px;

}

.experience-cards {

    width: 100%;

    display: flex;

    justify-content: center;

    gap: 20px;

    padding:
        20px 0;

    box-sizing: border-box;

}

/* Wrapper card + bouton */

.experience-card-wrapper {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}


/* Card */

.experience-card {
    width: 245px;
    height: 445px;

    box-sizing: border-box;

    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    border-radius: 12px;

    color: inherit;
    text-decoration: none;

    transition:
        filter .25s ease,
        transform .25s ease;
}

.experience-card-content {
    width: 100%;
}


/* Bouton */

.experience-card-button {
    opacity: 0;

    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

/* Effet enfoncé */

.experience-card-button:active {
    transform: translateY(0) scale(.960) !important;
}


.experience-card-image {
    
    width: calc(100% + 60px);

    height: auto;

    flex: 1;

    min-height: 0;

    border-radius: 10px 10px 0px 0px;

    object-fit: cover;

    margin-bottom: -30px;

    background: white;

}


.experience-card-lyrics {
    background: #fdbbff;
}

.experience-card-blind-tests {
    background: #ebd1ff;
}

.experience-card-shop {
    background: #c7fcf7;
}

.home-discover {

    background: var(--component-2);

}

.section-divider {

    display: block;

    width: 100%;
    height: 120px;

}

.section2-divider {
    display: block;

    width: 100%;
    height: 120px;

    transform: scaleY(-1);
}

.section-marquee {
    margin-top: 150px;
    width: 100vw;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;

    white-space: nowrap;
}


.section-marquee-track {

    width: max-content;

    display: flex;

    align-items: center;

    animation:
        marquee 20s linear infinite;

}


.section-marquee-item {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 40px;

    padding-right: 40px;

    font-family: "MabryPro";

    font-size: 130px;

    font-weight: 900;

    letter-spacing: -0.04em;

}


.section-marquee-logo {

    width: 115px;

    height: auto;

    display: block;

    flex-shrink: 0;

}

.button-size {

    width: 100%;
    max-width: 230px;
    margin-top: 25px;

}

.section-illustration {
    margin-top: 25px;
    width: 100vw;

    position: relative;
    left: 125%;

    transform: translateX(-50%);

    overflow: hidden;

    display: flex;
    justify-content: center;
}


.section-figurines {

    display: flex;

    align-items: flex-end;
    justify-content: center;

    gap: 30px;

    width: max-content;

}


.section-figurine {

    width: 100px;
    height: 100px;

    object-fit: contain;

    flex-shrink: 0;

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* ==========================================
   FAQ
========================================== */

.home-faq {
    width: 100%;
    padding: 120px 0;
}


.home-faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}


/* ==========================================
   FAQ LIST
========================================== */

.faq-list {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* ==========================================
   FAQ ITEM
========================================== */

.faq-item {
    width: 100%;

    background: var(--component-1);

    border-radius: var(--radius-md);

    overflow: hidden;
}


/* ==========================================
   QUESTION
========================================== */

.faq-question {
    user-select: none;
    width: 100%;

    padding: 15px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    list-style: none;

    font-family: "Inter";
    font-size: 17px;
    font-weight: 700;
    text-align: left;

    color: var(--text);
}


/* Supprime le petit triangle natif */

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}


/* ==========================================
   ICON
========================================== */

.faq-icon {
    position: relative;

    width: 24px;
    height: 24px;

    flex-shrink: 0;
}


/* Les deux branches du + */

.faq-icon::before,
.faq-icon::after {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 16px;
    height: 2px;

    background: var(--text);

    border-radius: 999px;

    transform:
        translate(-50%, -50%);

    transition:
        transform .3s ease;
}


/* Branche verticale */

.faq-icon::after {

    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

/* ==========================================
   ICON OUVERTE
========================================== */

.faq-item[open] .faq-icon::before {

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.faq-item[open] .faq-icon::after {

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* ==========================================
   ANSWER
========================================== */

.faq-answer {
    height: 0;

    overflow: hidden;

    padding: 0 30px;

    opacity: 0;

    transition:
        height .35s ease,
        opacity .25s ease;

    user-select: none;
}


.faq-answer p {

    padding: 15px 0px;

    font-family: "Inter";

    font-size: 16px;
    font-weight: 500;

    line-height: 1.6;

    text-align: left;

    color: var(--text-50);

    opacity: 0;

    transform: translateY(-30px);

    transition:
        opacity .25s ease,
        transform .35s ease;
}

.faq-answer strong {
    color: var(--text-70);
}


.faq-item.is-open .faq-answer {
    opacity: 1;
}


.faq-item.is-open .faq-answer p {
    opacity: 1;

    transform: translateY(0);
}

.faq-question {

    transition:
        background-color .2s ease;
}

.faq-description {

    margin-top: 50px;

    font-family: "Inter";
    font-weight: 500;
    font-size: 14px;
    color: var(--text-70);
}

.faq-answer a {
    position: relative;

    color: var(--text);
    text-decoration: none;
    user-select: none;
}

.faq-answer a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 100%;
    height: 1px;

    background: var(--text);

    border-radius: 999px;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .2s ease;
}