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

html {
    background: #020204;
}

body {
    min-height: 100vh;
    background: #020204;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    /* background:
        linear-gradient(180deg,
            rgba(2, 2, 6, .35) 0%,
            rgba(2, 2, 6, .50) 45%,
            rgba(2, 2, 6, .88) 78%,
            #020204 100%),
        url("assets/images/background.webp");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
} */

    .landing::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;

        background:
            radial-gradient(circle at center,
                transparent 25%,
                rgba(0, 0, 0, .35) 70%,
                rgba(0, 0, 0, .8) 100%);
    }

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

        width: min(680px, calc(100% - 40px));
        margin: auto;

        padding: 60px 0 35px;
    }


    /* LOGO */

    .hero {
        text-align: center;
    }

    .logo {
        display: block;

        width: min(420px, 75vw);
        max-height: 270px;

        object-fit: contain;

        margin: 0 auto 34px;

        filter:
            drop-shadow(0 0 15px rgba(255, 0, 145, .2)) drop-shadow(0 0 20px rgba(0, 220, 255, .12));
    }


    /* BRAND */

    .brand-line {
        display: flex;
        align-items: center;
        gap: 18px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dot {
        width: 7px;
        height: 7px;

        flex: 0 0 7px;

        border-radius: 50%;

        background: #ff008c;

        box-shadow: 0 0 12px #ff008c;
    }


    /* LOCATION */

    .location {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 18px;

        margin: 28px auto;
    }

    .location span {
        width: 105px;
        height: 1px;

        background: linear-gradient(90deg,
                transparent,
                #ffffff);
    }

    .location span:last-child {
        background: linear-gradient(90deg,
                #ffffff,
                transparent);
    }

    .location p {
        font-size: 12px;
        letter-spacing: 6px;

        color: rgba(255, 255, 255, .7);
    }


    /* TAGLINE */

    .tagline {
        color: rgba(255, 255, 255, .75);

        font-size: 16px;
        line-height: 1.7;

        margin-bottom: 38px;
    }


    /* SOCIAL LINKS */

    .socials {
        display: flex;
        flex-direction: column;

        gap: 17px;
    }

    .social {
        --social-color: #fff;

        position: relative;

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

        min-height: 105px;

        padding: 0 45px;

        color: #fff;
        text-decoration: none;

        border: 1px solid var(--social-color);
        border-radius: 18px;

        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, .70),
                rgba(4, 4, 8, .88));

        box-shadow:
            0 0 15px color-mix(in srgb, var(--social-color) 25%, transparent),
            inset 0 0 20px rgba(255, 255, 255, .015);

        transition:
            transform .25s ease,
            box-shadow .25s ease,
            background .25s ease;
    }

    .social:hover {
        transform: translateY(-3px) scale(1.01);

        background: rgba(8, 8, 12, .94);

        box-shadow:
            0 0 30px color-mix(in srgb, var(--social-color) 40%, transparent);
    }

    .social-left {
        display: flex;
        align-items: center;

        gap: 35px;
    }

    .social-left>span {
        font-size: 18px;
        font-weight: 600;

        letter-spacing: 7px;
    }


    /* ICONS */

    .icon {
        width: 55px;

        text-align: center;

        font-size: 43px;
        font-weight: 600;

        color: var(--social-color);

        text-shadow:
            0 0 16px color-mix(in srgb, var(--social-color) 55%, transparent);
    }

    .facebook-icon {
        font-family: Arial, sans-serif;
        font-weight: bold;
    }

    .arrow {
        color: var(--social-color);

        font-size: 38px;

        transition: transform .25s ease;
    }

    .social:hover .arrow {
        transform: translateX(8px);
    }


    /* NETWORK COLORS */

    .instagram {
        --social-color: #b00f62;
    }

    .facebook {
        --social-color: #1664ff;
    }

    .tiktok {
        --social-color: #05cbc4;
    }

    .youtube {
        --social-color: #ff1830;
    }


    /* FOOTER */

    footer {
        margin-top: 60px;

        text-align: center;
    }

    .footer-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-bottom: 22px;
    }

    .footer-divider span {
        width: 190px;
        height: 1px;
        background: linear-gradient(90deg,
                transparent,
                #ffffff);
    }

    .footer-divider span:last-child {
        background: linear-gradient(90deg,
                #ffffff,
                transparent);
    }

    .globe {
        color: #ffffff;

        font-size: 28px;

        text-shadow: 0 0 14px #b900ff;
    }

    footer p {
        color: rgba(255, 255, 255, .6);

        font-size: 11px;

        letter-spacing: 6px;
    }


    /* AMBIENT LIGHT */

    .ambient {
        position: absolute;

        width: 500px;
        height: 500px;

        border-radius: 50%;

        filter: blur(150px);

        opacity: .08;

        pointer-events: none;
    }

    .ambient-pink {
        background: #ff008c;

        left: -250px;
        top: 35%;
    }

    .ambient-blue {
        background: #00d9ff;

        right: -250px;
        top: 25%;
    }


    /* ACCESSIBILITY */

    .sr-only {
        position: absolute;

        width: 1px;
        height: 1px;

        padding: 0;
        margin: -1px;

        overflow: hidden;
        clip: rect(0, 0, 0, 0);

        white-space: nowrap;
        border: 0;
    }


    /* MOBILE */

    @media (max-width: 600px) {

        .landing {
            background-attachment: scroll;
        }

        .content {
            width: calc(100% - 28px);

            padding-top: 35px;
        }

        .logo {
            width: 72vw;

            margin-bottom: 28px;
        }

        .brand-line {
            gap: 9px;

            font-size: 10px;

            letter-spacing: 2px;
        }

        .dot {
            width: 5px;
            height: 5px;

            flex-basis: 5px;
        }

        .location {
            margin: 20px auto;
        }

        .location span {
            width: 55px;
        }

        .location p {
            font-size: 9px;

            letter-spacing: 4px;
        }

        .tagline {
            padding: 0 12px;

            font-size: 13px;

            margin-bottom: 30px;
        }

        .social {
            min-height: 84px;

            padding: 0 24px;

            border-radius: 14px;
        }

        .social-left {
            gap: 20px;
        }

        .social-left>span {
            font-size: 14px;

            letter-spacing: 4px;
        }

        .icon {
            width: 42px;

            font-size: 32px;
        }

        .arrow {
            font-size: 29px;
        }

        footer {
            margin-top: 45px;
        }

        .footer-divider span {
            width: 90px;
        }

        footer p {
            font-size: 8px;

            letter-spacing: 4px;
        }

    }


    /* SMALL PHONES */

    @media (max-width: 370px) {

        .social {
            padding: 0 17px;
        }

        .social-left {
            gap: 13px;
        }

        .social-left>span {
            font-size: 12px;

            letter-spacing: 3px;
        }

    }

    /* CONTACT */

    .contact-block {
        position: relative;
        margin-top: 48px;
        padding: 30px 10px;

        text-align: center;

        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-block::before {
        content: "";
        position: absolute;

        top: -1px;
        left: 50%;

        width: 140px;
        height: 1px;

        transform: translateX(-50%);

        background: linear-gradient(90deg,
                #ff008c,
                #8d4dff,
                #00e5ff);

        box-shadow:
            0 0 14px rgba(255, 0, 140, 0.45),
            0 0 18px rgba(0, 229, 255, 0.25);
    }

    .contact-label {
        display: block;

        margin-bottom: 12px;

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

        font-size: 9px;
        font-weight: 600;

        letter-spacing: 6px;
    }

    .contact-email {
        display: inline-flex;
        align-items: center;

        gap: 13px;

        color: #fff;
        text-decoration: none;

        font-size: 17px;
        font-weight: 500;

        letter-spacing: 2px;

        transition:
            color 0.25s ease,
            text-shadow 0.25s ease;
    }

    .contact-arrow {
        color: #00e5ff;

        font-size: 20px;

        transition: transform 0.25s ease;
    }

    .contact-email:hover {
        color: #fff;

        text-shadow:
            -2px 0 12px rgba(255, 0, 140, 0.5),
            2px 0 12px rgba(0, 229, 255, 0.5);
    }

    .contact-email:hover .contact-arrow {
        transform: translate(4px, -4px);
    }


    /* CONTACT MOBILE */

    @media (max-width: 600px) {

        .contact-block {
            margin-top: 35px;
            padding: 25px 5px;
        }

        .contact-email {
            font-size: 13px;
            letter-spacing: 1px;
        }

        .contact-label {
            font-size: 8px;
            letter-spacing: 5px;
        }

    }