/* =========================================================
   WALL STAMPS
   ========================================================= */

:root {
    --black: #020407;
    --deep-black: #000205;
    --blue-black: #03111b;
    --blue: #073d5c;
    --blue-light: #0c6389;
    --cyan: #37b8e8;

    --white: #ffffff;
    --white-soft: rgba(255,255,255,0.78);
    --white-muted: rgba(255,255,255,0.48);

    --border: rgba(255,255,255,0.15);

    --shadow: 0 30px 80px rgba(0,0,0,.55);

    --radius: 18px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    background: #000204;
}


body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 10%,
            #073c58 0%,
            #031923 28%,
            #010509 70%,
            #000204 100%
        );

    background-color: #000204;

    color: var(--white);

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}


button,
a,
input,
textarea {
    font: inherit;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    border: 0;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.site-background {
    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at 15% 40%,
            rgba(0, 100, 145, .20),
            transparent 35%
        ),
        radial-gradient(
            ellipse at 85% 25%,
            rgba(0, 70, 110, .16),
            transparent 35%
        );

    z-index: -1;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        0
        clamp(18px, 4vw, 60px);

    z-index: 100;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 2, 5, .80),
            rgba(0, 2, 5, 0)
        );

    pointer-events: none;
}


.brand {
    font-family: "Montserrat", sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .20em;

    opacity: .85;

    pointer-events: auto;

    transform: scaleY(1.12);
}


.top-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    pointer-events: auto;
}


/* =========================================================
   SOCIAL BUTTONS
   ========================================================= */

.social-button {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        rgba(3, 13, 20, .68);

    border:
        1px solid rgba(255,255,255,.20);

    backdrop-filter: blur(14px);

    box-shadow:
        0 8px 30px rgba(0,0,0,.35);

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.social-button:hover {
    transform: translateY(-3px) scale(1.04);

    background:
        rgba(8, 83, 118, .85);

    border-color:
        rgba(75,200,240,.55);

    box-shadow:
        0 10px 35px rgba(0, 120, 180, .25);
}


.social-button svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Facebook */
.social-button svg path:first-child {
    fill: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    isolation: isolate;
}


.hero-image-wrapper {
    position: absolute;

    inset: 0;

    z-index: -2;
}


.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    filter:
        brightness(.70)
        contrast(1.08)
        saturate(.85);

    transform: scale(1.015);

    animation:
        heroImageIn 1.6s ease forwards;
}

/* =========================================================
   DESKTOP - MOSTRA MEGLIO I VOLTI
   ========================================================= */

@media (min-width: 701px) {

    .hero-image {
        object-position: center 20%;
    }

}


@keyframes heroImageIn {

    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1.015);
    }

}


/* =========================================================
   HERO OVERLAYS
   ========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 2, 5, .85) 0%,
            rgba(0, 8, 15, .48) 35%,
            rgba(0, 8, 15, .22) 65%,
            rgba(0, 2, 5, .70) 100%
        );
}


.hero-vignette {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at center,
            transparent 25%,
            rgba(0,0,0,.35) 65%,
            rgba(0,0,0,.82) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    width: min(1100px, 90%);

    padding-top: 70px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "kicker promo"
        "title promo"
        "line promo"
        "music promo";

    column-gap: clamp(40px, 7vw, 110px);

    align-items: center;

    animation:
        contentIn 1.1s .25s ease both;
}


.hero-kicker {
    grid-area: kicker;
}


.hero h1 {
    grid-area: title;
}


.hero-line {
    grid-area: line;
}


.music-buttons {
    grid-area: music;
}


.release-promo {
    grid-area: promo;

    justify-self: end;

    margin-bottom: 0;
}


@keyframes contentIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero-kicker {
    margin-bottom: 18px;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .42em;
}


.hero h1 {
    max-width: 750px;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(42px, 7vw, 88px);

    line-height: .98;

    font-weight: 700;

    letter-spacing: -.055em;

    text-wrap: balance;

    text-shadow:
        0 15px 50px rgba(0,0,0,.55);
}


.hero-line {
    width: 75px;
    height: 2px;

    margin:
        30px 0;

    background:
        linear-gradient(
            90deg,
            #54c9ef,
            transparent
        );
}


/* =========================================================
   MUSIC BUTTONS
   ========================================================= */

.music-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.music-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    padding:
        0
        20px;

    border:
        1px solid rgba(255,255,255,.19);

    border-radius: 100px;

    background:
        rgba(1, 8, 13, .58);

    backdrop-filter: blur(15px);

    color: white;

    font-size: 13px;

    font-weight: 600;

    transition:
        all .25s ease;
}


.music-button:hover {
    transform: translateY(-3px);

    background:
        rgba(12, 94, 130, .72);

    border-color:
        rgba(85,210,247,.55);

    box-shadow:
        0 12px 35px rgba(0, 80, 130, .30);
}


.music-icon {
    width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    font-weight: 800;

    color:
        #ffffff;
}


.spotify-icon {
    color: #1ed760;
}


.youtube-icon {
    font-size: 11px;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    background:
        linear-gradient(
            135deg,
            #03141e,
            #010508
        );

    transition:
        max-height .75s cubic-bezier(.77,0,.18,1),
        opacity .45s ease;
}


.contact-section.open {
    max-height: 1500px;

    opacity: 1;
}


.contact-inner {
    position: relative;

    width: min(850px, 90%);

    margin: auto;

    padding:
        100px 0 110px;
}


.contact-header {
    position: relative;

    margin-bottom: 40px;
}


.contact-label {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    letter-spacing: .35em;

    color:
        var(--cyan);
}


.contact-header h2 {
    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(38px, 6vw, 68px);

    line-height: 1;

    letter-spacing: -.04em;
}


.close-button {
    position: absolute;

    right: 0;
    top: 0;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.15);

    color: white;

    font-size: 17px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        .25s ease;
}


.close-button:hover {
    background:
        rgba(30,150,200,.30);

    transform: rotate(90deg);
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}


.form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


.form-field {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.form-field label,
.captcha-row > label {
    color:
        rgba(255,255,255,.62);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.form-field input,
.form-field textarea,
.captcha-box input {
    width: 100%;

    color: white;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 12px;

    outline: none;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.form-field input {
    height: 56px;

    padding:
        0 17px;
}


.form-field textarea {
    min-height: 170px;

    padding: 17px;

    resize: vertical;
}


.form-field input:focus,
.form-field textarea:focus,
.captcha-box input:focus {
    border-color:
        rgba(62,193,236,.70);

    background:
        rgba(4,37,52,.65);

    box-shadow:
        0 0 0 3px rgba(20,160,210,.09);
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color:
        rgba(255,255,255,.30);
}


/* =========================================================
   CAPTCHA
   ========================================================= */

.captcha-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.captcha-box {
    display: flex;

    align-items: center;

    gap: 15px;
}


.captcha-box span {
    color:
        rgba(255,255,255,.72);

    font-size: 14px;
}


.captcha-box input {
    width: 90px;
    height: 48px;

    padding: 0 12px;

    text-align: center;
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.honeypot {
    position: absolute !important;

    left: -10000px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.submit-button {
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 5px;

    border-radius: 100px;

    color: white;

    background:
        linear-gradient(
            100deg,
            #075c82,
            #0c87b7
        );

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 15px 40px rgba(0,100,150,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


.submit-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(0,130,190,.35);

    filter:
        brightness(1.08);
}


.submit-button span {
    font-size: 20px;
}

.send-arrow {
    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: transform .25s ease;
}

.send-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

.submit-button:hover .send-arrow {
    transform: translateX(4px);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background:
        #000204;

    border-top:
        1px solid rgba(255,255,255,.07);
}


.footer-inner {
    width: min(1100px, 90%);

    min-height: 90px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.42);

    font-size: 11px;

    letter-spacing: .08em;
}


.language-switcher {
    display: flex;

    gap: 6px;
}


.language-switcher a {
    padding:
        6px 8px;

    border-radius: 5px;

    transition:
        .2s ease;
}


.language-switcher a:hover,
.language-switcher a.active {
    color: white;

    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   BIOGRAPHY
   ========================================================= */

.biography-section {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    background:
        linear-gradient(
            135deg,
            #03141e,
            #010508
        );

    transition:
        max-height .75s cubic-bezier(.77,0,.18,1),
        opacity .45s ease;
}


.biography-section.open {
    max-height: 3000px;

    opacity: 1;
}


.biography-inner {
    position: relative;

    width: min(850px, 90%);

    margin: auto;

    padding:
        100px 0 110px;
}


.biography-header {
    position: relative;

    margin-bottom: 40px;
}


.biography-label {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    letter-spacing: .35em;

    color:
        var(--cyan);
}


.biography-header h2 {
    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(38px, 6vw, 68px);

    line-height: 1;

    letter-spacing: -.04em;
}


.biography-text {
    max-width: 700px;

    color:
        rgba(255,255,255,.72);

    font-size:
        clamp(17px, 2vw, 21px);

    line-height: 1.8;
}


.biography-text p {
    margin: 0;
}


/* =========================================================
   BIOGRAPHY BUTTON
   ========================================================= */

.biography-button {
    padding:
        5px 8px;

    color:
        rgba(255,255,255,.28);

    background:
        transparent;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 6px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .08em;

    cursor: pointer;

    opacity: .65;

    transition:
        color .25s ease,
        border-color .25s ease,
        background .25s ease,
        opacity .25s ease;
}


.biography-button:hover {
    color:
        rgba(255,255,255,.75);

    border-color:
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.05);

    opacity: 1;
}



/*
|--------------------------------------------------------------------------
| ICONA
|--------------------------------------------------------------------------
*/

.release-link svg {
    width: 23px;
    height: 23px;

    display: block;

    color: inherit;
    fill: currentColor;
    stroke: currentColor;
}

.release-link svg path,
.release-link svg circle,
.release-link svg rect,
.release-link svg polygon,
.release-link svg line {
    fill: currentColor;
    stroke: currentColor;
}




/* =========================================================
   NEW SINGLE - LETTY
   ========================================================= */

.release-promo {
    width: fit-content;
    max-width: 100%;

    margin-bottom: 28px;

    padding:
        18px 22px 20px;

    border-left:
        2px solid var(--cyan);

    background:
        rgba(0, 8, 14, .42);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 45px rgba(0,0,0,.20);

    animation:
        releasePromoIn .9s .35s ease both;
}


.release-promo-label {
    margin-bottom: 5px;

    color:
        var(--cyan);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .25em;

    text-transform: uppercase;
}


.release-promo-title {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -.045em;
}


.release-promo-date {
    margin-top: 6px;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;

    font-weight: 500;
}


.release-countdown {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 14px;
}


.countdown-item {
    display: flex;

    align-items: baseline;

    gap: 4px;
}


.countdown-item span {
    min-width: 22px;

    color: white;

    font-size: 17px;

    font-weight: 700;

    font-variant-numeric: tabular-nums;
}


.countdown-item small {
    color:
        rgba(255,255,255,.42);

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .04em;
}


.presave-button {
    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 16px;

    padding:
        0 18px;

    border-radius: 100px;

    color: white;

    background:
        linear-gradient(
            100deg,
            #075c82,
            #0c87b7
        );

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .03em;

    box-shadow:
        0 10px 30px rgba(0,100,150,.22);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


.presave-button span {
    font-size: 17px;

    line-height: 1;

    transition:
        transform .25s ease;
}


.presave-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 35px rgba(0,130,190,.32);

    filter:
        brightness(1.08);
}


.presave-button:hover span {
    transform: translateX(3px);
}


@keyframes releasePromoIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .topbar {
        height: 75px;
        padding: 0 15px;
    }

    .brand {
        font-size: 10px;
        letter-spacing: .23em;
    }

    .top-actions {
        gap: 6px;
    }

    .social-button {
        width: 40px;
        height: 40px;
    }

    .social-button svg {
        width: 17px;
        height: 17px;
    }


    /* =====================================================
       HERO MOBILE
       ===================================================== */

    .hero {
        min-height: 100svh;

        display: flex;
        align-items: flex-end;

        overflow: hidden;
    }


    .hero-image {
        object-position: center center;
    }


    /* =====================================================
       CONTENUTO MOBILE
       ===================================================== */

    .hero-content {
        width: 100%;
    
        display: flex;
        flex-direction: column;
    
        align-items: center;
    
        text-align: center;
    
        padding:
            0 24px
            max(28px, env(safe-area-inset-bottom));
    
        /*
         * Spinge il contenuto verso il fondo dello schermo,
         * lasciando libera la zona centrale della fotografia.
         */
        margin-top: auto;
    
        transform: translateY(10%);
    }
    
    
    .hero-kicker {
        order: 1;
    
        margin-bottom: 8px;
    
        font-size: 9px;
    
        letter-spacing: .3em;
    }


    /* =====================================================
       TESTO PRINCIPALE
       ===================================================== */

    .hero-kicker {
        order: 1;

        margin-bottom: 12px;

        font-size: 9px;

        letter-spacing: .3em;
    }


    .hero h1 {
        order: 2;
    
        width: 100%;
    
        font-size:
            clamp(34px, 10vw, 54px);
    
        line-height: .98;
    
        margin: 0;
     }


    .hero-line {
        order: 3;

        margin:
            17px auto;
    }


    /* =====================================================
       PROMO / COUNTDOWN
       ===================================================== */

    .release-promo {
        order: 4;

        position: relative;

        top: auto;
        left: auto;

        transform: none;

        width: min(100%, 340px);

        margin:
            0 auto 18px;

        padding:
            14px 16px 16px;

        text-align: center;

        align-self: center;

        background:
            rgba(0, 8, 14, .72);

        backdrop-filter:
            blur(10px);

        -webkit-backdrop-filter:
            blur(10px);

        border-left:
            2px solid rgba(55,184,232,.85);

        box-shadow:
            0 12px 35px rgba(0,0,0,.30);

        z-index: 2;
    }


    .release-promo-label {
        margin-bottom: 4px;

        font-size: 9px;
    }


    .release-promo-title {
        font-size: 30px;
    }


    .release-promo-date {
        margin-top: 5px;

        font-size: 11px;
    }


    .release-countdown {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 10px;

        margin-top: 10px;
    }


    .countdown-item {
        justify-content: center;
    }


    .countdown-item span {
        font-size: 14px;
    }


    .countdown-item small {
        font-size: 7px;
    }


    .presave-button {
        min-height: 38px;

        margin:
            12px auto 0;

        padding:
            0 16px;

        font-size: 10px;
    }


    /* =====================================================
       PIATTAFORME MUSICALI
       ===================================================== */

    .music-buttons {
        order: 5;

        width: 100%;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 8px;

        text-align: left;
    }


    .music-button {
        min-height: 46px;

        justify-content: center;

        padding:
            0 8px;

        font-size: 10px;
    }


    /* =====================================================
       FORM
       ===================================================== */

    .form-grid {
        grid-template-columns: 1fr;
    }


    .contact-inner {
        padding:
            75px 0 80px;
    }


    .captcha-row {
        align-items: flex-start;

        flex-direction: column;
    }


    .captcha-box {
        width: 100%;
    }


    .captcha-box input {
        width: 100%;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer-inner {
        min-height: 100px;

        align-items: flex-start;
        justify-content: center;

        flex-direction: column;

        padding:
            25px 0;
    }

}


@media (min-width: 1600px) {

    .hero-content {
        width: min(1250px, 88%);
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}