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

html {
    scroll-behavior: smooth;
}

body {
    background: #070707;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

img {
    display: block;
    width: 100%;
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    padding: 0 5vw;

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

    z-index: 1000;

    background: rgba(5, 5, 5, 0.75);

    backdrop-filter: blur(15px);

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

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.55;

    transition: 0.2s;
}

.desktop-nav a:hover {
    opacity: 1;
}


/* ================= MOBILE MENU ================= */

.menu-button {
    display: none;

    width: 35px;
    height: 30px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;

    gap: 5px;
}

.menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    background: white;
}

.mobile-menu {
    position: fixed;

    top: 80px;
    left: 0;

    width: 100%;

    padding: 30px;

    background: #080808;

    z-index: 999;

    display: none;

    flex-direction: column;

    gap: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-weight: 900;
}


/* ================= TEXT ================= */

.eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 900;
    opacity: 0.5;

    margin-bottom: 20px;
}

h1 {
    font-size: clamp(65px, 10vw, 150px);

    line-height: 0.8;

    letter-spacing: -7px;

    font-weight: 1000;
}

h1 span,
h2 span {
    opacity: 0.4;
}

h2 {
    font-size: 60px;

    line-height: 0.85;

    letter-spacing: -4px;
}


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

.button {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 28px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition: 0.25s;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    background: white;
    color: black;
}

.button.secondary {
    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.04);
}

.button.secondary:hover {
    background: white;
    color: black;
}


/* ================= HOME ================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.3)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: min(700px, 90%);

    margin-left: 8vw;
}

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

    margin-top: 40px;

    line-height: 1.7;

    color: rgba(255,255,255,0.55);
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.scroll-indicator {
    position: absolute;

    bottom: 30px;
    left: 8vw;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.4;
}


/* ================= HOME FEATURE ================= */

.home-feature {
    padding: 130px 8vw;

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;
}

.home-feature > p {
    max-width: 350px;

    line-height: 1.7;

    color: rgba(255,255,255,0.5);
}


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

.page {
    min-height: calc(100vh - 200px);

    padding: 170px 8vw 100px;
}

.page-heading {
    margin-bottom: 80px;
}

.page-heading > p:last-child {
    max-width: 450px;

    margin-top: 35px;

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

    line-height: 1.7;
}


/* ================= LEAKS ================= */

.leak-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 15px;
}

.leak-card {
    position: relative;

    min-height: 420px;

    overflow: hidden;

    background: #151515;
}

.leak-card.large {
    grid-row: span 2;

    min-height: 855px;
}

.leak-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.leak-card:hover img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.95)
        );
}

.card-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;
}

.card-number {
    font-size: 10px;

    opacity: 0.5;

    letter-spacing: 2px;
}

.card-content h3 {
    margin-top: 10px;

    font-size: 25px;
}

.card-content p {
    margin-top: 8px;

    color: rgba(255,255,255,0.5);
}


/* ================= DOWNLOAD ================= */

.download-box {
    padding: 70px;

    min-height: 350px;

    border: 1px solid rgba(255,255,255,0.1);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.download-icon {
    font-size: 70px;
}

.download-box h2 {
    margin-bottom: 10px;
}

.download-box p {
    color: rgba(255,255,255,0.5);
}


/* ================= DISCORD ================= */

.discord-page {
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 8vw;

    background:
        radial-gradient(
            circle at 80% 50%,
            #252525,
            #070707 60%
        );
}

.discord-content {
    max-width: 700px;
}

.discord-content > p:not(.eyebrow) {
    max-width: 500px;

    margin: 40px 0;

    line-height: 1.7;

    color: rgba(255,255,255,0.55);
}


/* ================= STAFF ================= */

.staff-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.staff-card {
    background: #111;

    border: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition: 0.3s;
}

.staff-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255,255,255,0.2);
}

.staff-image {
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #181818;
}

.staff-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.staff-card:hover .staff-image img {
    transform: scale(1.04);
}

.staff-info {
    padding: 30px;
}

.staff-role {
    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 900;

    opacity: 0.45;
}

.staff-info h2 {
    font-size: 30px;

    margin-top: 10px;
}

.staff-info p {
    margin-top: 15px;

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

    line-height: 1.6;
}


/* ================= PRIVACY ================= */

.privacy-content {
    max-width: 800px;
}

.privacy-content h2 {
    font-size: 18px;

    letter-spacing: 2px;

    margin-top: 50px;

    margin-bottom: 15px;
}

.privacy-content p {
    line-height: 1.8;

    color: rgba(255,255,255,0.55);
}


/* ================= FOOTER ================= */

footer {
    padding: 60px 8vw;

    border-top: 1px solid rgba(255,255,255,0.1);

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 25px;
}

.footer-logo {
    font-size: 20px;

    font-weight: 900;
}

.footer-links {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;
}

.footer-links a {
    font-size: 9px;

    letter-spacing: 1px;

    opacity: 0.45;
}

.footer-links a:hover {
    opacity: 1;
}

footer p {
    width: 100%;

    font-size: 9px;

    opacity: 0.25;
}


/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .hero-content {
        margin-left: 6vw;
    }

    .page {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .leak-grid {
        grid-template-columns: 1fr;
    }

    .leak-card.large {
        grid-row: auto;

        min-height: 500px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .download-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px;
    }

    footer {
        padding-left: 6vw;
        padding-right: 6vw;
    }

}

@media (max-width: 500px) {

    h1 {
        font-size: 65px;

        letter-spacing: -4px;
    }

    h2 {
        font-size: 45px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .page {
        padding-top: 140px;
    }

}