:root {
    --forge-blue: #070b56;
    --forge-yellow: #ffd800;
    --forge-white: #ffffff;
}

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

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    min-height: 100%;
    background: var(--forge-blue);
    color: var(--forge-white);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   PAGE
   ========================================================= */

.landing-page {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--forge-blue);
}


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

.landing-header {
    position: relative;
    z-index: 5;

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

    padding: 42px 5.5%;
}

.landing-logo {
    display: flex;
    flex-direction: column;
}

.landing-logo-main {
    color: var(--forge-white);

    font-size: 22px;
    font-weight: 900;

    line-height: 1;
    letter-spacing: 4px;
}

.landing-logo-sub {
    margin-top: 7px;

    color: var(--forge-yellow);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.landing-login {
    position: relative;

    padding-bottom: 7px;

    color: var(--forge-white);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.3px;
}

.landing-login::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: var(--forge-yellow);

    transform: scaleX(0.35);
    transform-origin: left;

    transition: transform 0.25s ease;
}

.landing-login:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   MAIN
   ========================================================= */

.landing-main {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;

    padding: 50px 5.5% 110px;
}


/* =========================================================
   LARGE BACKGROUND MARK
   ========================================================= */

.landing-mark {
    position: absolute;

    right: -2vw;
    bottom: -16vw;

    color: transparent;

    font-size: 52vw;
    font-weight: 900;

    line-height: 0.7;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);

    user-select: none;
    pointer-events: none;
}


/* =========================================================
   CONTENT
   ========================================================= */

.landing-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin-left: 8%;
}

.landing-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 26px;

    color: var(--forge-yellow);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.landing-eyebrow::before {
    content: "";

    width: 30px;
    height: 1px;

    background: var(--forge-yellow);
}


/* =========================================================
   HEADING
   ========================================================= */

.landing-content h1 {
    max-width: 850px;

    color: var(--forge-white);

    font-size: clamp(52px, 7vw, 96px);
    font-weight: 750;

    line-height: 0.98;
    letter-spacing: -5px;
}

.landing-content h1 span {
    color: var(--forge-yellow);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.landing-description {
    max-width: 470px;

    margin-top: 34px;
    margin-left: 4px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   ENTER LINK
   ========================================================= */

.landing-enter {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 38px;
    margin-left: 4px;

    color: var(--forge-white);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.landing-enter-line {
    display: block;

    width: 55px;
    height: 1px;

    background: var(--forge-yellow);

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.landing-enter:hover .landing-enter-line {
    width: 90px;
    background: var(--forge-white);
}


/* =========================================================
   EDGE INFORMATION
   ========================================================= */

.landing-edge {
    position: absolute;
    z-index: 3;

    left: 5.5%;
    right: 5.5%;
    bottom: 32px;

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.28);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


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

@media (max-width: 800px) {

    .landing-header {
        padding: 30px 6%;
    }

    .landing-main {
        padding: 60px 6% 100px;
    }

    .landing-content {
        margin-left: 0;
    }

    .landing-mark {
        right: -12vw;
        bottom: -8vw;

        font-size: 75vw;
    }

    .landing-content h1 {
        font-size: clamp(48px, 11vw, 76px);
        letter-spacing: -3.5px;
    }
}


@media (max-width: 520px) {

    .landing-header {
        padding: 26px 6%;
    }

    .landing-logo-main {
        font-size: 20px;
    }

    .landing-login {
        font-size: 11px;
    }

    .landing-main {
        align-items: flex-start;

        padding: 100px 6% 100px;
    }

    .landing-eyebrow {
        margin-bottom: 22px;

        font-size: 9px;
    }

    .landing-content h1 {
        font-size: clamp(43px, 13vw, 62px);
        letter-spacing: -2.8px;
    }

    .landing-description {
        margin-top: 28px;
        margin-left: 0;

        font-size: 14px;
    }

    .landing-enter {
        margin-left: 0;
        margin-top: 30px;
    }

    .landing-mark {
        right: -18vw;
        bottom: 0;

        font-size: 100vw;
    }

    .landing-edge {
        left: 6%;
        right: 6%;
        bottom: 22px;

        font-size: 7px;
    }
}