/* =========================
   HERO
========================= */

.hero{
    width:1200px;
    max-width:92%;
    margin:70px auto 0;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;

    min-height:calc(100vh - 120px);
}

.hero-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.welcome-box{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(24,183,255,.10);

    border:1px solid rgba(24,183,255,.25);

    color:#18B7FF;

    font-weight:700;

    margin-bottom:25px;

}

.hero-left h1{

    font-family:'Orbitron',sans-serif;

    font-size:78px;

    line-height:1;

    margin-bottom:30px;

}

.hero-left h1 span{

    display:block;

    color:#7CFF4D;

}

.hero-left p{

    font-size:22px;

    line-height:1.8;

    color:#c8d3df;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-green{

    background:#7CFF4D;

    color:#081018;

    padding:18px 35px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-green:hover{

    transform:translateY(-5px);

}

.btn-dark{

    background:#151d2d;

    color:#fff;

    padding:18px 35px;

    border-radius:14px;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.08);

}

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-circle{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(24,183,255,.30),
    transparent 70%);

    filter:blur(30px);

}

.yamio{

    width:500px;

    position:relative;

    z-index:2;

}

.speech{

    position:absolute;

    top:30px;

    right:0;

    width:260px;

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    z-index:3;

}

@media(max-width:1000px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.speech{

position:relative;

margin:30px auto 0;

right:auto;

top:auto;

}

.yamio{

width:320px;

}

}