:root {
    --black: #08080A;
    --white: #F8F8F8;
    --silver: #C8C8D0;
    --hot-pink: #E83E8C;
    --violet: #7B2CBF;
    --gold: #D6A84F;
    --line: rgba(248, 248, 248, .16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--white);
    font-family: Inter, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(90deg, rgba(5, 5, 8, .88), rgba(5, 5, 8, .55), rgba(5, 5, 8, .88)), url('https://images.pexels.com/photos/289290/pexels-photo-289290.jpeg') center top / cover no-repeat fixed, linear-gradient(180deg, #050506, var(--black));
}


.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    letter-spacing: .15em;
    text-shadow: 3px 3px 0 rgba(232, 62, 140, .6);
}

main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 4rem;
}

.content {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    align-items: center;
}

.kicker {
    border-left: 5px solid var(--hot-pink);
    padding-left: 1rem;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .25em;
    text-transform: uppercase;
}

h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(6rem, 14vw, 13rem);
    line-height: .8;
    margin: .5rem 0;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    max-width: 700px;
}

.panel {
    background: rgba(20, 20, 25, .78);
    border: 1px solid var(--line);
    padding: 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .5);
}

.panel-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--hot-pink), var(--violet));
    color: white;
    text-decoration: none;
    font-weight: 800;
    margin-right: 1rem;
    margin-top: 1rem;
}

ul {
    line-height: 2;
}

footer {
    padding: 1.5rem 4rem;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .4);
}

@media (max-width: 900px) {
    .content {
        grid-template-columns: 1fr;
    }

    header {
        padding: 1.5rem;
    }

    main {
        padding: 2rem;
    }

    footer {
        padding: 1.5rem;
    }
}
