*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    min-height:100vh;
    overflow-x:hidden;
    position:relative;
    padding:60px 20px;
}

/* Background */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at top left,rgba(201,155,45,.15),transparent 35%),
        radial-gradient(circle at bottom right,rgba(201,155,45,.12),transparent 40%),
        linear-gradient(135deg,#050505,#111,#050505);
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background:
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,.015) 0,
            rgba(255,255,255,.015) 2px,
            transparent 2px,
            transparent 28px
        );
    z-index:-1;
}

.container{
    width:90%;
    max-width:900px;
    margin:50px auto;
    padding:70px 50px;
    text-align:center;
    border-radius:25px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.logo{
    width:100%;
    max-width:380px;
    display:block;
    margin:0 auto 40px;
}

.tag{
    color:#c99b2d;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:14px;
    margin-bottom:15px;
}

h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    margin-bottom:20px;
    font-weight:700;
}

h1 span{
    color:#c99b2d;
}

.description{
    max-width:650px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#d2d2d2;
}

.divider{
    width:160px;
    height:2px;
    background:#c99b2d;
    margin:40px auto;
    position:relative;
}

.divider::after{
    content:"";
    width:14px;
    height:14px;
    border:2px solid #c99b2d;
    background:#0b0b0b;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%) rotate(45deg);
}

.btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    border:1px solid #c99b2d;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

.btn:hover{
    background:#c99b2d;
    color:#000;
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(201,155,45,.35);
}

footer{
    text-align:center;
    color:rgba(255,255,255,.55);
    font-size:14px;
    padding:25px 15px;
}

/* Tablet */

@media(max-width:992px){

    h1{
        font-size:58px;
    }

    .container{
        padding:60px 35px;
    }

}

/* Mobile */

@media(max-width:768px){

    body{
        padding:30px 15px;
    }

    .container{
        width:95%;
        padding:40px 20px;
    }

    .logo{
        max-width:260px;
    }

    .tag{
        font-size:12px;
        letter-spacing:3px;
    }

    h1{
        font-size:42px;
    }

    .description{
        font-size:16px;
    }

    .divider{
        width:120px;
    }

    .btn{
        width:100%;
        max-width:280px;
    }

}

@media(max-width:480px){

    .logo{
        max-width:190px;
    }

    h1{
        font-size:34px;
    }

    .description{
        font-size:15px;
    }

    .container{
        padding:30px 15px;
    }

}