*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --blue:#2563eb;
    --bg:#f6f6f4;
    --text:#111111;
    --secondary:#777;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    height:100vh;
    overflow:hidden;
    position:relative;
}

/* =====================
   LOADER
===================== */

.loader{
    position:fixed;
    inset:0;

    background:#111;
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:3rem;
    font-weight:900;
    letter-spacing:3px;

    z-index:9999;

    transition:1s ease;
}

.loader.hide{
    opacity:0;
    visibility:hidden;
}

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

.glow{
    position:fixed;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(37,99,235,.12),
        transparent 70%
    );

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

    pointer-events:none;
    z-index:-1;
}

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

header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px 60px;
}

.timeline{
    display:flex;
    gap:40px;
}

.timeline span{
    color:#888;
    font-size:14px;
    cursor:pointer;
    transition:.3s;
}

.timeline span:hover{
    color:var(--blue);
    transform:translateY(-2px);
}

.clock{
    font-size:14px;
    font-weight:600;
}

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

.hero{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    padding:50px 80px;
}

.left h1{
    font-size:10rem;
    line-height:.85;
    font-weight:900;
}

.left h1 span{
    color:var(--blue);
}

.left p{
    margin-top:25px;
    font-size:1.8rem;
    line-height:1.3;
}

#quote{
    margin-top:35px;
    max-width:550px;

    color:#666;
    font-style:italic;
    line-height:1.6;
}

/* =====================
   NAVIGATION
===================== */

.right{
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:flex-end;
}

.right a{
    text-decoration:none;
    color:#111;

    font-size:1.15rem;
    transition:.3s;
}

.right a:hover{
    color:var(--blue);
    transform:translateX(-8px);
}

/* =====================
   GRAPH
===================== */

.graph{
    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    display:flex;
    align-items:flex-end;
    gap:55px;

    height:450px;
}

.bar{
    width:3px;
    height:100px;

    background:var(--blue);

    transition:1.2s ease;
}

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

.fab{
    position:fixed;

    right:40px;
    bottom:40px;

    width:75px;
    height:75px;

    border:none;
    border-radius:50%;

    background:var(--blue);
    color:white;

    font-size:2rem;
    cursor:pointer;

    transition:.3s;
}

.fab:hover{
    transform:scale(1.1);
}

.menu{
    position:fixed;

    right:40px;
    bottom:130px;

    display:none;
    flex-direction:column;
    gap:10px;
}

.menu a{
    text-decoration:none;
    color:#111;

    background:white;

    padding:12px 18px;

    border-radius:12px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.menu a:hover{
    color:var(--blue);
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:1000px){

    body{
        overflow:auto;
    }

    .hero{
        flex-direction:column;
        gap:50px;
    }

    .left h1{
        font-size:5rem;
    }

    .left p{
        font-size:1.2rem;
    }

    .graph{
        display:none;
    }

    .right{
        align-items:flex-start;
    }

}