/* ======================================================
RESET
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{

    width:100%;
    height:100%;
    overflow:hidden;

    font-family:
    "Segoe UI",
    sans-serif;

    background:#eef4ff;

}

/* ======================================================
BACKGROUND
====================================================== */

body{

    position:relative;
    color:#1e293b;

}

.background{

    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:-2;

    background:
    linear-gradient(
        135deg,
        #f8fbff 0%,
        #edf4ff 45%,
        #dcecff 100%
    );

}

.blur{

    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.55;

}

.blur1{

    width:420px;
    height:420px;

    background:#2563eb;

    top:-120px;
    left:-120px;

}

.blur2{

    width:360px;
    height:360px;

    background:#60a5fa;

    right:-100px;
    top:120px;

}

.blur3{

    width:320px;
    height:320px;

    background:#93c5fd;

    bottom:-100px;
    left:35%;

}

/* ======================================================
LAYOUT
====================================================== */

.landing-page{

    width:100%;
    height:100vh;

    display:flex;
    flex-direction:column;

    padding:30px 70px;

}

.hero{

    flex:1;

    display:grid;
    grid-template-columns:1.1fr .9fr;

    align-items:center;
    gap:60px;

}   
/* ======================================================
HEADER
====================================================== */

.landing-header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:30px;

}

.brand{

    display:flex;
    align-items:center;
    gap:16px;

}

.logo{

    width:62px;
    height:62px;
    object-fit:contain;

}

.brand-text h2{

    font-size:28px;
    font-weight:700;
    color:#1e3a8a;
    line-height:1.2;

}

.brand-text span{

    display:block;

    margin-top:4px;

    font-size:13px;
    letter-spacing:1px;

    color:#64748b;

}

.login-button{

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    padding:14px 28px;

    background:#2563eb;
    color:#fff;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(37,99,235,.25);

}

.login-button:hover{

    transform:translateY(-3px);

    background:#1d4ed8;

    box-shadow:
    0 16px 30px rgba(37,99,235,.35);

}

/* ======================================================
HERO KIRI
====================================================== */

.hero-left{

    animation:fadeLeft .8s ease;

}

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(37,99,235,.10);

    color:#2563eb;

    font-weight:600;

    font-size:14px;

    margin-bottom:24px;

}

.hero-badge i{

    font-size:16px;

}

.hero-left h1{

    font-size:58px;

    line-height:1.15;

    color:#0f172a;

    font-weight:800;

    margin-bottom:24px;

}

.hero-left p{

    font-size:18px;

    line-height:1.9;

    color:#475569;

    max-width:720px;

    margin-bottom:35px;

}

.hero-action{

    display:flex;
    align-items:center;
    gap:20px;

}

.btn-primary{

    display:inline-flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    padding:16px 34px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:#fff;

    border-radius:16px;

    font-weight:700;

    transition:.35s;

    box-shadow:
    0 18px 35px rgba(37,99,235,.25);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 22px 40px rgba(37,99,235,.35);

}

/* ======================================================
ANIMATION
====================================================== */

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(-40px);

    }

    to{

        opacity:1;
        transform:none;

    }

}
/* ======================================================
HERO KANAN
====================================================== */

.hero-right{

    display:flex;
    justify-content:center;
    align-items:center;

    animation:fadeRight .8s ease;

}

/* ======================================================
GLASS CARD
====================================================== */

.glass-card{

    width:100%;
    max-width:480px;

    padding:38px;

    border-radius:28px;

    background:
    rgba(255,255,255,.72);

    backdrop-filter:blur(24px);

    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.55);

    box-shadow:

        0 20px 60px rgba(15,23,42,.12),

        inset 0 1px 0 rgba(255,255,255,.8);

    transition:.35s;

}

.glass-card:hover{

    transform:translateY(-6px);

    box-shadow:

        0 28px 70px rgba(37,99,235,.16),

        inset 0 1px 0 rgba(255,255,255,.9);

}

/* ======================================================
CARD HEADER
====================================================== */

.card-header{

    display:flex;
    align-items:center;
    gap:18px;

}

.card-icon{

    width:72px;
    height:72px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:

    linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    color:#fff;

    font-size:28px;

    box-shadow:

        0 12px 30px rgba(37,99,235,.30);

}

.card-header h3{

    font-size:22px;

    color:#0f172a;

    font-weight:700;

    margin-bottom:4px;

}

.card-header span{

    color:#64748b;

    font-size:14px;

}

/* ======================================================
DIVIDER
====================================================== */

.card-divider{

    width:100%;
    height:1px;

    margin:28px 0;

    background:

    linear-gradient(

        to right,

        transparent,

        #dbeafe,

        transparent

    );

}

/* ======================================================
FITUR
====================================================== */

.feature-list{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.feature{

    display:flex;
    align-items:flex-start;
    gap:16px;

    padding:16px;

    border-radius:18px;

    transition:.30s;

}

.feature:hover{

    background:#f8fbff;

    transform:translateX(6px);

}

.feature i{

    width:48px;
    height:48px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eff6ff;

    color:#2563eb;

    font-size:20px;

    flex-shrink:0;

}

.feature h4{

    font-size:17px;

    color:#0f172a;

    margin-bottom:6px;

}

.feature p{

    font-size:14px;

    color:#64748b;

    line-height:1.6;

}

/* ======================================================
ANIMATION
====================================================== */

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(45px);

    }

    to{

        opacity:1;
        transform:none;

    }

}
/* ======================================================
FOOTER
====================================================== */

.landing-footer{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    margin-top:25px;

    color:#64748b;

    font-size:14px;

    text-align:center;

}

.landing-footer span{

    color:#cbd5e1;

}

/* ======================================================
RESPONSIVE
====================================================== */

@media (max-width:1200px){

    .landing-page{

        padding:30px 40px;

    }

    .hero{

        gap:40px;

    }

    .hero-left h1{

        font-size:48px;

    }

}

/* ======================================================
TABLET
====================================================== */

@media (max-width:992px){

    html,
    body{

        overflow:auto;

    }

    .landing-page{

        min-height:100vh;
        height:auto;

        padding:35px 30px;

    }

    .hero{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;

    }

    .hero-left{

        display:flex;
        flex-direction:column;
        align-items:center;

    }

    .hero-left p{

        max-width:650px;

    }

    .hero-action{

        justify-content:center;

    }

    .glass-card{

        max-width:700px;

        margin:auto;

    }

}

/* ======================================================
MOBILE
====================================================== */

@media (max-width:768px){

    .landing-header{

        flex-direction:column;

        gap:20px;

    }

    .brand{

        justify-content:center;

    }

    .hero-left h1{

        font-size:34px;

        line-height:1.3;

    }

    .hero-left p{

        font-size:15px;

        line-height:1.8;

    }

    .hero-badge{

        font-size:13px;

        padding:8px 16px;

    }

    .btn-primary{

        width:100%;

        justify-content:center;

    }

    .login-button{

        width:100%;

        justify-content:center;

    }

    .glass-card{

        padding:28px;

    }

    .card-header{

        flex-direction:column;

        text-align:center;

    }

    .feature{

        align-items:center;

    }

    .feature h4{

        font-size:16px;

    }

    .feature p{

        font-size:13px;

    }

    .landing-footer{

        flex-direction:column;

        gap:5px;

        font-size:12px;

    }

}

/* ======================================================
SMALL MOBILE
====================================================== */

@media (max-width:480px){

    .landing-page{

        padding:20px;

    }

    .logo{

        width:52px;
        height:52px;

    }

    .brand-text h2{

        font-size:22px;

    }

    .hero-left h1{

        font-size:28px;

    }

    .hero-left p{

        font-size:14px;

    }

    .card-icon{

        width:60px;
        height:60px;

        font-size:24px;

    }

    .glass-card{

        border-radius:22px;

        padding:22px;

    }

}