/*==================================================
Zhitu Network
Hero.css
Version 2.0
==================================================*/

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

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    padding-top:110px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 20% 20%,rgba(22,119,255,.15),transparent 40%),
        radial-gradient(circle at 80% 15%,rgba(107,92,255,.12),transparent 35%),
        linear-gradient(180deg,#07142B 0%,#08192F 45%,#07142B 100%);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:60px 60px;
    opacity:.25;
    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    right:-220px;
    top:-220px;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(22,119,255,.18),
        transparent 72%);
    filter:blur(25px);
    pointer-events:none;
}

/*==================================================
INNER
==================================================*/

.hero-inner{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;

    min-height:760px;

    position:relative;

    z-index:2;

}

/*==================================================
LEFT
==================================================*/

.hero-content{

    position:relative;

    z-index:5;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:9px 18px;

    border-radius:40px;

    background:
    rgba(22,119,255,.12);

    border:
    1px solid rgba(22,119,255,.25);

    color:#8FC8FF;

    font-size:13px;

    font-weight:600;

    letter-spacing:.8px;

    margin-bottom:28px;

}

.hero-content h1{

    font-size:60px;

    font-weight:800;

    line-height:1.2;

    color:#fff;

    margin-bottom:28px;

}

.hero-content p{

    max-width:560px;

    color:#AFC2E3;

    font-size:17px;

    line-height:2;

    margin-bottom:40px;

}

/*==================================================
BUTTON
==================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn-primary,

.hero-buttons .btn-outline{

    min-width:180px;

    height:54px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}
/*==================================================
RIGHT
==================================================*/

.hero-image{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    height:560px;

}

/*==================================================
TECH CARD
==================================================*/

.tech-card{

    position:relative;

    width:320px;

    height:320px;

    border-radius:36px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.03)
    );

    border:
    1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(20px);

    box-shadow:
        0 35px 90px rgba(0,0,0,.42);

    transition:.45s;

}

.tech-card:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 45px 120px rgba(22,119,255,.25);

}

/*==================================================
LIGHT CIRCLE
==================================================*/

.circle{

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(22,119,255,.35),
        transparent 72%
    );

    animation:
        heroGlow 5s ease-in-out infinite;

    pointer-events:none;

}

@keyframes heroGlow{

    0%,100%{

        transform:
            scale(1);

        opacity:.9;

    }

    50%{

        transform:
            scale(1.15);

        opacity:.45;

    }

}

/*==================================================
ICON
==================================================*/

.tech-card i{

    position:relative;

    z-index:2;

    font-size:78px;

    color:#8FC8FF;

    text-shadow:
        0 0 35px rgba(22,119,255,.65);

    margin-bottom:24px;

}

.tech-card h3{

    position:relative;

    z-index:2;

    color:#fff;

    font-size:30px;

    margin-bottom:10px;

}

.tech-card p{

    position:relative;

    z-index:2;

    color:#AFC2E3;

    font-size:15px;

    letter-spacing:1px;

}

/*==================================================
FLOAT CARD
==================================================*/

.float-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:18px;

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

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    color:#fff;

    font-size:15px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.28);

    animation:
        floatMove 4s ease-in-out infinite;

}

.float-card i{

    color:#8FC8FF;

    font-size:18px;

}

.float-card.one{

    top:70px;

    right:10px;

}

.float-card.two{

    bottom:80px;

    left:10px;

    animation-delay:2s;

}

@keyframes floatMove{

    0%,100%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-14px);

    }

}
/*==================================================
BACKGROUND EFFECT
==================================================*/

.hero-light{

    position:absolute;

    right:-180px;

    top:80px;

    width:560px;

    height:560px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(22,119,255,.18),
        transparent 72%
    );

    filter:blur(18px);

    animation:
        lightMove 10s ease-in-out infinite;

    pointer-events:none;

}

@keyframes lightMove{

    0%,100%{

        transform:
            translate(0,0);

    }

    50%{

        transform:
            translate(-40px,35px);

    }

}

/*==================================================
DATA
==================================================*/

.hero-data{

    display:flex;

    gap:55px;

    margin-top:55px;

    flex-wrap:wrap;

}

.hero-data .item{

    display:flex;

    flex-direction:column;

}

.hero-data h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:8px;

}

.hero-data span{

    color:#9FB4D6;

    font-size:15px;

}

/*==================================================
SCROLL TIP
==================================================*/

.scroll-tip{

    position:absolute;

    left:50%;

    bottom:40px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    color:#9FB4D6;

    font-size:12px;

    letter-spacing:2px;

}

.scroll-tip span{

    position:relative;

    display:block;

    width:24px;

    height:42px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:30px;

}

.scroll-tip span::before{

    content:"";

    position:absolute;

    left:50%;

    top:8px;

    width:4px;

    height:8px;

    border-radius:20px;

    background:#fff;

    transform:translateX(-50%);

    animation:
        scrollMove 2s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:0;

        transform:
            translate(-50%,0);

    }

    40%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:
            translate(-50%,18px);

    }

}

/*==================================================
HOVER
==================================================*/

.tech-card:hover{

    border-color:
        rgba(22,119,255,.35);

}

.float-card:hover{

    border-color:
        rgba(22,119,255,.30);

    transform:
        translateY(-8px)
        scale(1.03);

}
/*==================================================
RESPONSIVE · TABLET
==================================================*/

@media(max-width:1200px){

    .hero-inner{
        gap:45px;
    }

    .hero-content h1{
        font-size:50px;
    }

    .hero-image{
        height:500px;
    }

    .tech-card{
        width:290px;
        height:290px;
    }

}

/*==================================================
RESPONSIVE · PAD
==================================================*/

@media(max-width:992px){

    .hero{
        min-height:auto;
        padding-top:110px;
        padding-bottom:80px;
    }

    .hero-inner{
        grid-template-columns:1fr;
        min-height:auto;
        text-align:center;
        gap:45px;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-data{
        justify-content:center;
    }

    .hero-image{
        height:420px;
    }

}

/*==================================================
RESPONSIVE · MOBILE
==================================================*/

@media(max-width:768px){

    .hero{
        padding-top:95px;
        padding-bottom:58px;
        min-height:auto;
        align-items:flex-start;
    }

    .hero-inner{
        display:flex!important;
        flex-direction:column!important;
        min-height:auto!important;
        gap:32px;
        text-align:center;
    }

    .hero-tag{
        font-size:12px;
        padding:7px 14px;
        margin-bottom:18px;
    }

    .hero-content h1{
        font-size:31px!important;
        line-height:1.35!important;
        margin-bottom:18px;
    }

    .hero-content p{
        font-size:14px!important;
        line-height:1.9;
        max-width:100%;
        margin:0 auto 24px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:14px;
        width:100%;
    }

    .hero-buttons a{
        width:100%;
        max-width:320px;
        height:50px;
        position:relative;
        z-index:30;
    }

    .hero-data{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:12px;
        margin-top:30px;
    }

    .hero-data h2{
        font-size:28px;
    }

    .hero-data span{
        font-size:12px;
    }

    .hero-image{
        width:100%;
        height:300px!important;
        overflow:hidden;
    }

    .tech-card{
        width:220px!important;
        height:220px!important;
        border-radius:28px;
    }

    .tech-card i{
        font-size:48px!important;
        margin-bottom:16px;
    }

    .tech-card h3{
        font-size:22px!important;
    }

    .tech-card p{
        font-size:13px;
    }

    .circle{
        width:170px;
        height:170px;
    }

    .float-card{
        display:none!important;
    }

    .scroll-tip{
        display:none;
    }

}
/*==================================================
RESPONSIVE · SMALL MOBILE
==================================================*/

@media(max-width:480px){

    .hero{
        padding-top:88px;
        padding-bottom:50px;
    }

    .hero-content h1{
        font-size:28px!important;
    }

    .hero-content p{
        font-size:13.5px!important;
    }

    .hero-buttons a{
        max-width:100%;
    }

    .hero-image{
        height:260px!important;
    }

    .tech-card{
        width:200px!important;
        height:200px!important;
    }

    .tech-card i{
        font-size:42px!important;
    }

}

/*==================================================
CLICK FIX
==================================================*/

.hero::before,
.hero::after,
.hero-light,
.circle{
    pointer-events:none!important;
}

.hero-content,
.hero-buttons,
.hero-buttons a{
    position:relative;
    z-index:50;
    pointer-events:auto;
}

/*==================================================
HERO CSS END
==================================================*/