/* ==========================================================
   FUTURE
========================================================== */

.future{

    background:var(--pz-dark);

    position:relative;

    overflow:hidden;

}

/* ==========================================================
   HEADER
========================================================== */

.future-header{

    max-width:760px;

    margin:0 auto 120px;

    text-align:center;

}

.future-title{

    margin-top:32px;

    font-size:clamp(58px,6vw,82px);

    line-height:.92;

    letter-spacing:-3px;

    color:var(--pz-white);

}

.future-description{

    margin:38px auto 0;

    max-width:620px;

    color:#9CA8BC;

    font-size:22px;

    line-height:1.8;

}

/* ==========================================================
   TIMELINE
========================================================== */

.future-timeline{

    position:relative;

    max-width:980px;

    margin:0 auto;

}

.future-line{

    position:absolute;

    left:52px;

    top:20px;

    bottom:20px;

    width:2px;

    background:linear-gradient(

        to bottom,

        rgba(255,122,26,.35),

        rgba(255,122,26,.08)

    );

}

/* ==========================================================
   ITEM
========================================================== */

.future-item{

    position:relative;

    display:grid;

    grid-template-columns:110px 1fr;

    gap:55px;

    align-items:center;

    padding:55px 0;

    transition:.35s;

}

.future-item:hover{

    transform:translateX(12px);

}

/* ==========================================================
   NUMBER
========================================================== */

.future-number{

    width:110px;

    height:110px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--pz-dark);

    border:2px solid rgba(255,122,26,.18);

    color:rgba(255,122,26,.70);

    font-size:34px;

    font-weight:900;

    position:relative;

    z-index:2;

    transition:.35s;

}

.future-item:hover .future-number{

    border-color:var(--pz-primary);

    color:var(--pz-primary);

    transform:scale(1.08);

    box-shadow:

        0 0 35px rgba(255,122,26,.18);

}

/* ==========================================================
   CONTENT
========================================================== */

.future-content h3{

    color:var(--pz-white);

    font-size:34px;

    margin-bottom:14px;

    transition:.35s;

}

.future-item:hover h3{

    color:var(--pz-primary);

}

.future-content p{

    color:#9CA8BC;

    max-width:560px;

    line-height:1.9;

    font-size:19px;

}

/* ==========================================================
   GLOW
========================================================== */

.future::before{

    content:"";

    position:absolute;

    right:-280px;

    top:-150px;

    width:900px;

    height:900px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,122,26,.14),

            rgba(255,122,26,.05),

            transparent 72%

        );

    filter:blur(70px);

}

.future::after{

    content:"";

    position:absolute;

    left:-250px;

    bottom:-250px;

    width:650px;

    height:650px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,122,26,.08),

            transparent 70%

        );

    filter:blur(80px);

}

