@import url(
    "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap"
);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f2f1ec;
    color: #111;

    font-family:
        Inter,
        Arial,
        sans-serif;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* HEADER */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

    padding: 0 4vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    color: white;

    mix-blend-mode: difference;
}

.brand {
    display: flex;

    align-items: center;

    gap: 10px;
}

.brand-mark {
    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    border: 1px solid currentColor;

    font-size: 12px;
    font-weight: 900;
}

.brand-text {
    display: flex;

    align-items: baseline;

    gap: 6px;
}

.brand-text strong {
    font-size: 15px;

    font-weight: 900;

    letter-spacing: -1px;
}

.brand-text span {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    opacity: .5;
}

.desktop-nav {
    display: flex;

    gap: 30px;
}

.desktop-nav a {
    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: .65;

    transition: opacity .25s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.header-right {
    display: flex;

    align-items: center;

    gap: 22px;
}

.server-link {
    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.1px;
}

.status-dot {
    width: 6px;
    height: 6px;

    background: #79a964;

    border-radius: 50%;
}


/* MOBILE */

.menu-button {
    display: none;

    width: 36px;
    height: 36px;

    border: 0;

    background: transparent;

    color: currentColor;

    position: relative;

    cursor: pointer;
}

.menu-button span {
    position: absolute;

    left: 8px;

    width: 20px;
    height: 1px;

    background: currentColor;

    transition: transform .35s ease;
}

.menu-button span:first-child {
    top: 14px;
}

.menu-button span:last-child {
    top: 21px;
}

.menu-button.active span:first-child {
    transform:
        translateY(3.5px)
        rotate(45deg);
}

.menu-button.active span:last-child {
    transform:
        translateY(-3.5px)
        rotate(-45deg);
}

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 900;

    background: #111;

    color: white;

    padding: 110px 7vw 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transform:
        translateY(-100%);

    transition:
        transform .65s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.open {
    transform:
        translateY(0);
}

.mobile-menu nav {
    display: flex;

    flex-direction: column;
}

.mobile-menu nav a {
    display: grid;

    grid-template-columns: 45px 1fr;

    padding: 15px 0;

    border-bottom:
        1px solid #292929;

    font-size:
        clamp(45px,12vw,90px);

    font-weight: 800;

    letter-spacing: -.07em;

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .5s ease,
        transform .5s ease;
}

.mobile-menu.open nav a {
    opacity: 1;

    transform:
        translateY(0);
}

.mobile-menu.open nav a:nth-child(1) {
    transition-delay: .05s;
}

.mobile-menu.open nav a:nth-child(2) {
    transition-delay: .1s;
}

.mobile-menu.open nav a:nth-child(3) {
    transition-delay: .15s;
}

.mobile-menu.open nav a:nth-child(4) {
    transition-delay: .2s;
}

.mobile-menu nav a span {
    font-size: 8px;

    color: #666;
}

.mobile-footer {
    font-size: 8px;

    letter-spacing: 1.5px;

    color: #666;
}


/* HERO */

.hero {
    min-height: 100vh;

    padding:
        110px 4vw 40px;

    background: #111;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.hero-top {
    display: flex;

    justify-content: space-between;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #666;
}

.hero-label {
    display: block;

    margin-bottom: 25px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.7px;

    color: #666;
}

.hero-main h1 {
    font-size:
        clamp(100px,19vw,300px);

    line-height: .72;

    letter-spacing: -.1em;

    font-weight: 900;
}

.hero-main h1 span {
    color: white;
}

.hero-main h1 em {
    font-style: normal;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.7);
}

.hero-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;
}

.hero-bottom p {
    max-width: 330px;

    font-size: 13px;

    line-height: 1.6;

    color: #777;
}

.hero-button {
    display: flex;

    align-items: center;

    gap: 25px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;

    transition:
        gap .3s ease;
}

.hero-button:hover {
    gap: 38px;
}

.hero-button span {
    font-size: 18px;
}


/* CURRENT */

.current {
    padding:
        100px 4vw;

    background: #dedcd4;
}

.section-label-row {
    display: flex;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid #aaa;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.4px;

    color: #777;
}

.current-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    min-height: 650px;
}

.current-info {
    padding:
        70px 60px 70px 0;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.live {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #777;
}

.live span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d19b35;
}

.current-info h2 {
    margin-top: 25px;

    font-size:
        clamp(60px,7vw,105px);

    line-height: .8;

    letter-spacing: -.08em;
}

.current-info p {
    max-width: 360px;

    margin-top: 35px;

    font-size: 12px;

    line-height: 1.7;

    color: #666;
}

.text-link {
    display: flex;

    align-items: center;

    gap: 18px;

    width: fit-content;

    margin-top: 50px;

    padding-bottom: 7px;

    border-bottom:
        1px solid #111;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;

    transition:
        gap .3s ease;
}

.text-link:hover {
    gap: 28px;
}

.text-link span {
    font-size: 16px;
}

.browser-preview {
    position: relative;

    background: #242424;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.browser-bar {
    position: absolute;

    top: 16%;

    width: 72%;

    height: 38px;

    padding: 0 12px;

    background: #ecebe6;

    border-bottom:
        1px solid #ccc;

    display: flex;

    align-items: center;

    gap: 15px;
}

.browser-dots {
    display: flex;

    gap: 5px;
}

.browser-dots i {
    display: block;

    width: 5px;
    height: 5px;

    background: #888;

    border-radius: 50%;
}

.browser-url {
    height: 20px;

    flex: 1;

    padding-left: 8px;

    border:
        1px solid #d0cec7;

    display: flex;

    align-items: center;

    font-size: 7px;

    color: #777;
}

.browser-center {
    width: 72%;
    height: 55%;

    margin-top: 60px;

    background: #f1f0eb;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.yew-logo {
    width: 65px;
    height: 65px;

    border:
        2px solid #111;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 28px;

    font-weight: 900;
}

.browser-center strong {
    margin-top: 15px;

    font-size: 28px;

    letter-spacing: -.08em;
}

.browser-center small {
    margin-top: 5px;

    font-size: 7px;

    letter-spacing: 1.4px;

    color: #888;
}


/* PROJECTS */

.projects {
    padding:
        120px 4vw;

    background: #f2f1ec;
}

.projects-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 65px;
}

.section-label {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.projects-header h2 {
    margin-top: 20px;

    font-size:
        clamp(70px,11vw,170px);

    line-height: .75;

    letter-spacing: -.09em;
}

.projects-header p {
    max-width: 230px;

    font-size: 11px;

    line-height: 1.6;

    text-align: right;

    color: #777;
}

.filters {
    display: flex;

    gap: 8px;

    margin-bottom: 30px;
}

.filter {
    padding:
        9px 14px;

    border:
        1px solid #aaa;

    border-radius: 100px;

    background: transparent;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease;
}

.filter:hover,
.filter.active {
    background: #111;

    color: white;

    border-color: #111;
}

.project-list {
    border-top:
        1px solid #aaa;
}

.project-row {
    display: grid;

    grid-template-columns:
        40px
        190px
        1fr
        150px
        35px;

    gap: 25px;

    align-items: center;

    min-height: 200px;

    border-bottom:
        1px solid #aaa;

    transition:
        padding .35s ease,
        background .35s ease;
}

.project-row:hover {
    padding-left: 15px;
    padding-right: 15px;

    background: #e7e5de;
}

.project-row.hidden {
    display: none;
}

.project-number {
    font-size: 8px;

    font-weight: 700;

    color: #888;
}

.project-image {
    width: 190px;
    height: 135px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.game-preview {
    background: #bbb8ae;

    font-size: 38px;

    font-weight: 900;

    letter-spacing: -.08em;

    transition:
        transform .5s ease;
}

.project-row:hover .game-preview {
    transform:
        rotate(-4deg)
        scale(1.03);
}

.web-preview {
    background: #282828;

    padding: 15px;

    flex-direction: column;

    gap: 10px;
}

.web-preview div {
    width: 100%;
    height: 14px;

    background: #deddd7;
}

.web-preview div:nth-child(2) {
    width: 65%;
}

.web-preview div:nth-child(3) {
    width: 40%;
}

.app-preview {
    background: #d0cec5;

    font-size: 45px;

    font-weight: 900;

    letter-spacing: -.1em;

    transition:
        transform .5s ease;
}

.project-row:hover .app-preview {
    transform:
        rotate(4deg)
        scale(1.04);
}

.media-preview {
    background: #aaa79e;

    border-radius: 50%;

    font-size: 28px;

    transition:
        transform .5s ease;
}

.project-row:hover .media-preview {
    transform:
        scale(1.08)
        rotate(8deg);
}

.project-info span {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #888;
}

.project-info h3 {
    margin-top: 10px;

    font-size:
        clamp(23px,3vw,38px);

    letter-spacing: -.055em;
}

.project-info p {
    margin-top: 8px;

    max-width: 350px;

    font-size: 10px;

    line-height: 1.5;

    color: #777;
}

.project-status {
    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #777;
}

.project-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
}

.project-status .green {
    background: #7aaa64;
}

.project-status .yellow {
    background: #d29a30;
}

.project-arrow {
    font-size: 20px;

    text-align: right;

    color: #888;

    transition:
        transform .3s ease;
}

.project-row:hover .project-arrow {
    transform:
        translate(4px,-4px);

    color: #111;
}


/* BRAND */

.brand-section {
    min-height: 90vh;

    padding:
        70px 4vw 45px;

    background: #111;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.huge-brand {
    font-size:
        clamp(120px,25vw,380px);

    line-height: .68;

    font-weight: 900;

    letter-spacing: -.12em;
}

.brand-bottom {
    display: flex;

    justify-content: space-between;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.3px;

    color: #666;
}


/* UPDATES */

.updates {
    padding:
        120px 8vw;

    background: #dedcd4;
}

.updates-header h2 {
    margin-top: 20px;

    font-size:
        clamp(65px,10vw,150px);

    line-height: .75;

    letter-spacing: -.09em;
}

.updates-list {
    margin-top: 80px;

    border-top:
        1px solid #aaa;
}

.update {
    display: grid;

    grid-template-columns:
        120px
        1fr
        30px;

    gap: 30px;

    align-items: center;

    min-height: 105px;

    border-bottom:
        1px solid #aaa;

    transition:
        padding .3s ease;
}

.update:hover {
    padding-left: 20px;
}

.update > span {
    font-size: 8px;

    font-weight: 700;

    color: #888;
}

.update small {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #888;
}

.update h3 {
    margin-top: 6px;

    font-size:
        clamp(20px,2.5vw,32px);

    letter-spacing: -.045em;
}


/* ABOUT */

.about {
    min-height: 90vh;

    padding:
        120px 8vw;

    display: grid;

    grid-template-columns: 25% 75%;

    background: #f2f1ec;
}

.about-label {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.about-content h2 {
    font-size:
        clamp(70px,11vw,170px);

    line-height: .75;

    letter-spacing: -.1em;
}

.about-content h2 span {
    color: #888;
}

.about-text {
    max-width: 550px;

    margin-top: 90px;
}

.about-text p {
    font-size:
        clamp(25px,3vw,42px);

    line-height: 1.05;

    letter-spacing: -.05em;

    margin-bottom: 30px;
}

.about-text p:last-child {
    color: #888;
}


/* CONTACT */

.contact {
    min-height: 80vh;

    padding:
        70px 8vw;

    background: #d0cdc4;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.contact h2 {
    font-size:
        clamp(80px,14vw,210px);

    line-height: .72;

    letter-spacing: -.1em;
}

.contact-button {
    display: flex;

    align-items: center;

    gap: 25px;

    width: fit-content;

    padding-bottom: 8px;

    border-bottom:
        1px solid #111;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        gap .3s ease;
}

.contact-button:hover {
    gap: 38px;
}

.contact-button span {
    font-size: 19px;
}


/* FOOTER */

footer {
    padding:
        70px 4vw 25px;

    background: #111;

    color: white;
}

.footer-logo {
    font-size:
        clamp(100px,19vw,280px);

    font-weight: 900;

    line-height: .65;

    letter-spacing: -.11em;
}

.footer-logo small {
    margin-left: 8px;

    font-size: 9px;

    letter-spacing: 2px;

    color: #666;

    vertical-align: top;
}

.footer-links {
    margin-top: 110px;

    display: flex;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-links a {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #777;

    transition:
        color .25s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 40px;

    padding-top: 20px;

    border-top:
        1px solid #333;

    display: flex;

    justify-content: space-between;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #666;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .desktop-nav,
    .server-link {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .current-grid {
        grid-template-columns: 1fr;
    }

    .current-info {
        padding:
            70px 0;
    }

    .browser-preview {
        min-height: 500px;
    }

    .project-row {
        grid-template-columns:
            30px
            150px
            1fr
            30px;
    }

    .project-image {
        width: 150px;
        height: 110px;
    }

    .project-status {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 650px) {

    .hero {
        padding:
            100px 6vw 35px;
    }

    .hero-main h1 {
        font-size: 25vw;
    }

    .hero-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }

    .current,
    .projects,
    .updates,
    .about,
    .contact {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .projects-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .projects-header p {
        text-align: left;
    }

    .project-row {
        grid-template-columns:
            25px
            100px
            1fr
            25px;

        gap: 10px;

        min-height: 150px;
    }

    .project-image {
        width: 100px;
        height: 80px;
    }

    .project-info h3 {
        font-size: 18px;
    }

    .project-info p {
        display: none;
    }

    .game-preview {
        font-size: 20px;
    }

    .app-preview {
        font-size: 25px;
    }

    .media-preview {
        font-size: 16px;
    }

    .web-preview {
        padding: 8px;
    }

    .update {
        grid-template-columns:
            70px
            1fr
            20px;

        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}