/*================================================
    ROOT
================================================*/

:root {
    --black: #050608;
    --black-soft: #090b0f;
    --dark: #0d1016;
    --dark-2: #11151d;

    --white: #f6f7f9;
    --text: #e9ebef;
    --muted: #89909d;

    --line: rgba(255, 255, 255, 0.11);

    --blue: #6d8cff;
    --violet: #9672ff;
    --cyan: #63d7e5;

    --light-bg: #f2f1ed;
    --light-text: #111319;

    --container: 1260px;
}


/*================================================
    RESET
================================================*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;

    background: var(--black);
    color: var(--text);

    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}


/*================================================
    NOISE
================================================*/

.page-noise {
    position: fixed;
    z-index: 9999;

    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}


/*================================================
    HEADER
================================================*/

.site-header {
    position: absolute;
    z-index: 100;

    top: 0;
    left: 0;
    right: 0;

    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;

    min-height: 92px;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.brand {
    display: flex;

    align-items: center;
    gap: 12px;
}

.brand-symbol {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    border: 1px solid var(--line);

    color: #fff;

    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.brand-text {
    color: #fff;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: -0.6px;
}

.desktop-nav {
    display: flex;

    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    color: #9299a7;

    font-size: 11px;
    font-weight: 700;

    transition: 0.25s;
}

.desktop-nav a:hover {
    color: #fff;
}

.header-right {
    display: flex;

    align-items: center;
    gap: 15px;
}

.header-contact {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    color: #daddE5;

    font-size: 10px;
    font-weight: 700;
}

.header-contact i {
    color: var(--blue);

    font-size: 9px;
}

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;

    border: 1px solid var(--line);

    background: transparent;

    cursor: pointer;
}

.menu-button span {
    width: 17px;
    height: 1px;

    background: #fff;
}


/*================================================
    HERO
================================================*/

.hero {
    position: relative;

    min-height: 900px;

    overflow: hidden;

    padding: 180px 0 0;

    background:
        radial-gradient(
            circle at 74% 40%,
            rgba(92, 107, 255, 0.15),
            transparent 31%
        ),
        var(--black);
}

.hero-grid {
    position: absolute;

    inset: 0;

    opacity: 0.16;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,1),
            rgba(0,0,0,.15)
        );
}

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);
}

.hero-orb-one {
    top: 170px;
    right: 13%;

    width: 370px;
    height: 370px;

    background: rgba(83, 111, 255, 0.08);
}

.hero-orb-two {
    bottom: -150px;
    left: 30%;

    width: 400px;
    height: 400px;

    background: rgba(137, 84, 255, 0.08);
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.18fr 0.82fr;

    align-items: start;

    gap: 100px;
}

.hero-kicker {
    display: flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 30px;

    color: #7d8798;

    font-size: 9px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.7px;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #68e0aa;

    box-shadow: 0 0 12px rgba(104,224,170,.65);
}

.hero-year {
    margin-left: auto;

    color: #4f5662;
}

.hero h1 {
    max-width: 790px;

    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 89px;
    font-weight: 600;
    line-height: 0.96;

    letter-spacing: -5px;
}

.hero-outline {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.65);
}

.hero-gradient {
    background:
        linear-gradient(
            90deg,
            #7695ff,
            #a682ff,
            #64d9e5
        );

    background-clip: text;

    -webkit-background-clip: text;

    color: transparent;
}

.hero-lower {
    display: grid;

    grid-template-columns: 1fr auto;

    align-items: end;

    gap: 35px;

    margin-top: 40px;
}

.hero-lower p {
    max-width: 535px;

    color: #8c95a4;

    font-size: 14px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.button {
    display: inline-flex;

    min-height: 48px;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 20px;

    border: 1px solid var(--line);

    font-size: 10px;
    font-weight: 800;

    transition: 0.3s;
}

.button-primary {
    min-width: 188px;

    border-color: transparent;

    background: #f1f3f7;

    color: #0c0e12;
}

.button-primary:hover {
    background: var(--blue);
    color: #fff;
}

.button-ghost {
    color: #aab1be;
}

.button-ghost:hover {
    border-color: rgba(255,255,255,.3);

    color: #fff;
}


/*================================================
    STUDIO BOARD
================================================*/

.studio-board {
    margin-top: 30px;

    border: 1px solid var(--line);

    background:
        linear-gradient(
            145deg,
            rgba(15,19,27,.92),
            rgba(7,9,13,.92)
        );

    backdrop-filter: blur(20px);
}

.studio-board-head,
.board-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 22px 24px;

    border-bottom: 1px solid var(--line);
}

.studio-board-head > div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.board-label {
    color: #606978;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.studio-board-head strong {
    color: #eef0f4;

    font-size: 13px;
}

.live-pill {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    color: #818b99;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
}

.live-pill i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #62dda7;
}

.board-project {
    display: grid;

    grid-template-columns: 35px 1fr auto;

    align-items: center;

    gap: 18px;

    min-height: 112px;

    padding: 18px 24px;

    border-bottom: 1px solid var(--line);

    transition: 0.3s;
}

.board-project:hover {
    background: rgba(255,255,255,.035);
}

.board-index {
    color: #4d5562;

    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
}

.board-category {
    margin-bottom: 5px;

    color: #627dd0;

    font-size: 7px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.board-project h3 {
    color: #f4f5f8;

    font-size: 15px;
}

.board-project p {
    margin-top: 4px;

    color: #657080;

    font-size: 9px;
}

.board-project > i {
    color: #5d6778;

    font-size: 9px;
}

.board-footer {
    border-bottom: 0;
}

.board-footer > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.board-footer span {
    color: #536073;

    font-size: 7px;

    letter-spacing: 1px;
}

.board-footer strong {
    color: #8e98a8;

    font-size: 9px;
}

.board-mark {
    color: #373e49;

    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    font-weight: 700;
}


/*================================================
    HERO FOOTER
================================================*/

.hero-footer {
    position: absolute;

    z-index: 2;

    right: 0;
    bottom: 0;
    left: 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.hero-footer span {
    min-height: 70px;

    display: flex;

    align-items: center;

    padding: 0 20px;

    border-right: 1px solid var(--line);

    color: #596271;

    font-size: 9px;
    font-weight: 600;
}


/*================================================
    COMMON
================================================*/

.eyebrow {
    color: #728df0;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/*================================================
    MANIFESTO
================================================*/

.manifesto {
    padding: 125px 0;

    background: var(--light-bg);
    color: var(--light-text);
}

.manifesto-grid {
    display: grid;

    grid-template-columns: 0.35fr 1.3fr 0.35fr;

    gap: 65px;
}

.manifesto-main h2 {
    max-width: 830px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 55px;
    font-weight: 500;
    line-height: 1.06;

    letter-spacing: -2.6px;
}

.manifesto-main p {
    max-width: 700px;

    margin-top: 35px;

    color: #737880;

    font-size: 14px;
    line-height: 1.9;
}

.manifesto-side span {
    display: block;

    margin-bottom: 20px;

    color: #9a9da3;

    font-size: 8px;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.manifesto-side p {
    color: #2b2f36;

    font-family: "Space Grotesk", sans-serif;

    font-size: 13px;
    line-height: 1.9;
}


/*================================================
    WORK
================================================*/

.work-section {
    padding: 130px 0;

    background: #090b0f;
}

.section-top {
    display: grid;

    grid-template-columns: 0.35fr 1fr 0.6fr;

    align-items: end;

    gap: 50px;

    margin-bottom: 70px;
}

.section-top h2 {
    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2px;
}

.section-top p {
    color: #737d8d;

    font-size: 12px;
    line-height: 1.8;
}


/* PROJECT */

.project {
    overflow: hidden;

    border: 1px solid var(--line);

    background: #0d1016;
}

.project-large {
    display: grid;

    grid-template-columns: 1.4fr 0.6fr;

    min-height: 590px;
}

.project-visual {
    position: relative;

    overflow: hidden;
}

.staycore-visual {
    display: grid;

    place-items: center;

    padding: 60px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(111,128,255,.17),
            transparent 38%
        ),
        #11151e;
}

.project-browser {
    width: 95%;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;

    background: #f3efe6;

    box-shadow:
        0 35px 90px rgba(0,0,0,.45);
}

.project-browser-head {
    display: flex;

    min-height: 42px;

    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    background: #f8f8f8;
}

.project-browser-head > div {
    display: flex;

    gap: 5px;
}

.project-browser-head span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ccd0d7;
}

.project-browser-head small {
    color: #92969d;

    font-size: 7px;
}

.staycore-preview {
    min-height: 330px;

    padding: 65px;

    background:
        linear-gradient(
            120deg,
            rgba(5,14,28,.96),
            rgba(20,30,47,.94)
        );
}

.staycore-preview > span {
    color: #c59c4d;

    font-size: 8px;

    letter-spacing: 1.4px;
}

.staycore-preview h3 {
    max-width: 430px;

    margin-top: 14px;

    color: #fff;

    font-size: 38px;
    line-height: 1.12;
}

.staycore-demo-btn {
    width: 110px;
    height: 34px;

    margin-top: 28px;

    border-radius: 5px;

    background: #d4a547;
}

.project-info {
    display: flex;

    flex-direction: column;

    padding: 40px;
}

.project-meta {
    display: flex;

    align-items: center;
    gap: 18px;

    color: #586171;

    font-size: 7px;

    letter-spacing: 1px;
}

.project-info h3 {
    margin-top: auto;

    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 34px;
    font-weight: 500;

    letter-spacing: -1px;
}

.project-info > p {
    margin-top: 16px;

    color: #77808f;

    font-size: 11px;
    line-height: 1.8;
}

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 25px;
}

.project-tags span {
    padding: 6px 9px;

    border: 1px solid var(--line);

    color: #717a89;

    font-size: 7px;

    text-transform: uppercase;
}

.project-link {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 30px;

    color: #92a9ff;

    font-size: 9px;
    font-weight: 800;
}

.project-split {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 18px;
}

.project-small .project-visual {
    min-height: 390px;
}

.project-small .project-info {
    min-height: 280px;
}

.project-small .project-info h3 {
    margin-top: 70px;
}


/* GAME VISUAL */

.game-project-visual {
    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(118,139,255,.18),
            transparent 40%
        ),
        #111621;
}

.hotel-building {
    position: relative;

    width: 180px;

    padding-top: 22px;

    border: 1px solid #5870bc;

    background: rgba(54,68,110,.25);
}

.building-top {
    position: absolute;

    top: -24px;
    left: 50%;

    width: 130px;
    height: 25px;

    border: 1px solid #5870bc;
    border-bottom: 0;

    transform: translateX(-50%);
}

.building-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    padding: 24px;
}

.building-grid span {
    height: 40px;

    border: 1px solid rgba(120,150,255,.5);

    background: rgba(101,128,220,.12);
}

.visual-corner-label {
    position: absolute;

    bottom: 18px;
    left: 20px;

    color: #525f75;

    font-size: 7px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* CONTROL VISUAL */

.control-project-visual {
    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(74,188,205,.12),
            transparent 40%
        ),
        #10151b;
}

.control-ui {
    width: 70%;

    border: 1px solid rgba(255,255,255,.11);

    background: #0b1017;

    box-shadow:
        0 30px 70px rgba(0,0,0,.35);
}

.control-top {
    display: flex;

    min-height: 48px;

    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid var(--line);

    color: #98a3b5;

    font-size: 8px;
}

.control-top i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #5ed09c;
}

.control-row {
    display: flex;

    min-height: 60px;

    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.control-row > div {
    display: flex;

    align-items: center;
    gap: 10px;

    color: #7f8998;

    font-size: 8px;
}

.control-row i {
    color: #72cbd7;
}

.control-switch {
    width: 30px;
    height: 16px;

    border-radius: 20px;

    background: #252c37;
}

.control-switch.active {
    background: #4b8190;
}


/*================================================
    CAPABILITIES
================================================*/

.capabilities {
    padding: 135px 0;

    background: var(--light-bg);
    color: var(--light-text);
}

.capabilities-heading {
    display: grid;

    grid-template-columns: .35fr 1fr;

    align-items: start;

    margin-bottom: 70px;
}

.capabilities-heading h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 56px;
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2.4px;
}

.capability-list {
    border-top: 1px solid #cfcdc7;
}

.capability-item {
    display: grid;

    grid-template-columns: 80px 1.1fr 1fr 50px;

    align-items: center;

    gap: 30px;

    min-height: 170px;

    border-bottom: 1px solid #cfcdc7;

    transition: 0.3s;
}

.capability-item:hover {
    padding-left: 18px;

    background: rgba(255,255,255,.4);
}

.cap-number {
    color: #9da0a5;

    font-size: 9px;
}

.cap-main h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 30px;
    font-weight: 500;

    letter-spacing: -1px;
}

.cap-main p {
    max-width: 400px;

    margin-top: 10px;

    color: #74777c;

    font-size: 11px;
    line-height: 1.7;
}

.cap-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.cap-tags span {
    padding: 7px 10px;

    border: 1px solid #d7d4cd;

    color: #676a70;

    font-size: 7px;

    text-transform: uppercase;
}

.cap-arrow {
    color: #6f7380;

    font-size: 12px;
}


/*================================================
    PRODUCTS
================================================*/

.products-section {
    padding: 130px 0;

    background: #0a0c10;
}

.products-layout {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    align-items: center;

    gap: 100px;
}

.products-heading h2 {
    margin: 18px 0;

    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 51px;
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2px;
}

.products-heading p {
    max-width: 500px;

    color: #757f8e;

    font-size: 12px;
    line-height: 1.8;
}

.product-showcase {
    padding: 42px;

    border: 1px solid var(--line);

    background:
        linear-gradient(
            145deg,
            #101620,
            #0a0d12
        );
}

.product-showcase-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #576271;

    font-size: 7px;

    letter-spacing: 1.3px;
}

.product-logo {
    margin-top: 65px;

    color: #fff;

    font-size: 48px;
    font-weight: 800;

    letter-spacing: -2px;
}

.product-logo span {
    color: #d5a44c;
}

.product-showcase h3 {
    margin-top: 14px;

    color: #dfe2e8;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;
    font-weight: 500;
}

.product-showcase > p {
    max-width: 500px;

    margin-top: 14px;

    color: #707a8a;

    font-size: 11px;
    line-height: 1.8;
}

.product-data {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 45px;

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.product-data div {
    padding: 18px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-data small {
    display: block;

    margin-bottom: 7px;

    color: #505968;

    font-size: 7px;
}

.product-data strong {
    color: #adb4c0;

    font-size: 10px;
}

.product-showcase > a {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 30px;

    color: #8da4f7;

    font-size: 9px;
    font-weight: 800;
}


/*================================================
    LABS
================================================*/

.labs {
    position: relative;

    overflow: hidden;

    padding: 135px 0;

    background: #050608;
}

.labs-grid-background {
    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(100,120,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(100,120,255,.05) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.labs-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    align-items: center;

    gap: 100px;
}

.labs-heading h2 {
    margin: 18px 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 52px;
    font-weight: 500;
    line-height: 1.05;

    letter-spacing: -2px;
}

.labs-heading p {
    max-width: 480px;

    color: #727c8b;

    font-size: 12px;
    line-height: 1.85;
}

.lab-console {
    border: 1px solid var(--line);

    background: rgba(8,11,17,.85);

    backdrop-filter: blur(10px);
}

.console-top {
    display: flex;

    min-height: 52px;

    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    border-bottom: 1px solid var(--line);

    color: #5e697a;

    font-family: monospace;
    font-size: 8px;
}

.console-status {
    color: #63d59e;
}

.console-line {
    display: grid;

    grid-template-columns: 45px 1fr auto;

    align-items: center;

    gap: 15px;

    min-height: 95px;

    padding: 0 20px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.console-id {
    color: #454e5e;

    font-family: monospace;
    font-size: 9px;
}

.console-line small {
    display: block;

    margin-bottom: 5px;

    color: #5e75c2;

    font-size: 7px;

    letter-spacing: 1px;
}

.console-line strong {
    color: #b8bec9;

    font-size: 11px;
}

.console-progress {
    padding: 6px 8px;

    border: 1px solid rgba(105,130,255,.25);

    color: #748de9;

    font-size: 7px;
}

.console-command {
    min-height: 62px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 0 20px;

    color: #566174;

    font-family: monospace;
    font-size: 8px;
}

.console-command > span {
    color: #7890e8;
}

.console-cursor {
    width: 6px;
    height: 11px;

    background: #647ee4;

    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {

    50% {
        opacity: 0;
    }

}


/*================================================
    CONTACT
================================================*/

.contact-section {
    padding: 130px 0;

    background: var(--light-bg);
}

.contact-box {
    display: grid;

    grid-template-columns: .3fr 1fr 210px;

    align-items: center;

    gap: 50px;

    padding: 65px 0;

    border-top: 1px solid #cecbc4;
    border-bottom: 1px solid #cecbc4;
}

.contact-index {
    color: #8e9299;

    font-size: 9px;
}

.contact-content h2 {
    color: #111319;

    font-family: "Space Grotesk", sans-serif;

    font-size: 58px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: -2.5px;
}

.contact-content h2 span {
    color: #7789d5;
}

.contact-content p {
    max-width: 550px;

    margin-top: 18px;

    color: #777a80;

    font-size: 12px;
    line-height: 1.8;
}

.contact-circle {
    display: flex;

    width: 180px;
    height: 180px;

    align-items: center;
    justify-content: space-between;

    flex-direction: column;

    padding: 35px;

    border-radius: 50%;

    background: #111319;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    text-align: center;

    transition: .35s;
}

.contact-circle:hover {
    transform: rotate(-5deg) scale(1.04);

    background: #667fdb;
}

.contact-circle i {
    font-size: 11px;
}


/*================================================
    FOOTER
================================================*/

.footer {
    padding: 75px 0 30px;

    background: #050608;
}

.footer-top {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    padding-bottom: 70px;
}

.footer-brand {
    color: #fff;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -1px;
}

.footer-top > div:first-child p {
    max-width: 360px;

    margin-top: 18px;

    color: #5f6876;

    font-size: 10px;
    line-height: 1.8;
}

.footer-nav {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.footer-nav > div {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-nav small {
    margin-bottom: 8px;

    color: #444c59;

    font-size: 7px;

    letter-spacing: 1.3px;
}

.footer-nav a {
    color: #727b89;

    font-size: 9px;

    transition: .2s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    padding-top: 25px;

    border-top: 1px solid var(--line);

    color: #444d5a;

    font-size: 7px;
}

.footer-bottom span:nth-child(2) {
    text-align: center;
}

.footer-bottom span:nth-child(3) {
    text-align: right;
}


/*================================================
    MOBILE MENU
================================================*/

.mobile-menu {
    position: fixed;

    z-index: 1000;

    inset: 0;

    display: flex;

    flex-direction: column;

    padding: 28px;

    background: #080a0e;

    transform: translateX(100%);

    transition: transform .4s cubic-bezier(.7,0,.2,1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.menu-close {
    display: grid;

    width: 44px;
    height: 44px;

    place-items: center;

    border: 1px solid var(--line);

    background: transparent;
    color: #fff;

    cursor: pointer;
}

.mobile-nav {
    display: flex;

    flex: 1;

    justify-content: center;
    flex-direction: column;
}

.mobile-nav a {
    display: flex;

    align-items: center;
    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);

    color: #fff;

    font-family: "Space Grotesk", sans-serif;
    font-size: 29px;
}

.mobile-nav span {
    color: #4c5564;

    font-size: 8px;
}


/*================================================
    RESPONSIVE
================================================*/

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
    }

    .hero-container {
        gap: 50px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .manifesto-grid {
        grid-template-columns: .2fr 1fr .3fr;
    }

}


@media (max-width: 900px) {

    .desktop-nav,
    .header-contact {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .hero {
        min-height: auto;

        padding-bottom: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-main {
        max-width: 760px;
    }

    .studio-board {
        max-width: 650px;
    }

    .hero-footer {
        position: relative;

        margin-top: 80px;
    }

    .manifesto-grid,
    .section-top,
    .capabilities-heading {
        grid-template-columns: 1fr;
    }

    .manifesto-side {
        display: none;
    }

    .project-large {
        grid-template-columns: 1fr;
    }

    .project-large .project-visual {
        min-height: 500px;
    }

    .project-info h3 {
        margin-top: 80px;
    }

    .capability-item {
        grid-template-columns: 50px 1fr 1fr;
    }

    .cap-arrow {
        display: none;
    }

    .products-layout,
    .labs-layout {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .header-inner {
        min-height: 78px;
    }

    .brand-text {
        font-size: 14px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-kicker {
        flex-wrap: wrap;
    }

    .hero-year {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 1;

        letter-spacing: -2.8px;
    }

    .hero-lower {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .studio-board {
        width: 100%;
    }

    .board-project {
        grid-template-columns: 25px 1fr;
    }

    .board-project > i {
        display: none;
    }

    .hero-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .manifesto {
        padding: 85px 0;
    }

    .manifesto-main h2,
    .section-top h2,
    .capabilities-heading h2,
    .products-heading h2,
    .labs-heading h2 {
        font-size: 39px;
    }

    .manifesto-main p {
        font-size: 13px;
    }

    .work-section {
        padding: 90px 0;
    }

    .section-top {
        gap: 18px;

        margin-bottom: 45px;
    }

    .project-large .project-visual {
        min-height: 380px;
    }

    .staycore-visual {
        padding: 25px;
    }

    .staycore-preview {
        min-height: 260px;

        padding: 35px 25px;
    }

    .staycore-preview h3 {
        font-size: 27px;
    }

    .project-info {
        padding: 28px 22px;
    }

    .project-info h3,
    .project-small .project-info h3 {
        margin-top: 55px;

        font-size: 29px;
    }

    .project-split {
        grid-template-columns: 1fr;
    }

    .project-small .project-visual {
        min-height: 320px;
    }

    .control-ui {
        width: 82%;
    }

    .capabilities {
        padding: 90px 0;
    }

    .capabilities-heading {
        gap: 15px;

        margin-bottom: 45px;
    }

    .capability-item {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 28px 0;
    }

    .cap-tags {
        grid-column: 2;
    }

    .products-section,
    .labs {
        padding: 90px 0;
    }

    .products-layout,
    .labs-layout {
        gap: 55px;
    }

    .product-showcase {
        padding: 28px 22px;
    }

    .product-logo {
        margin-top: 45px;

        font-size: 39px;
    }

    .product-data {
        grid-template-columns: 1fr;
    }

    .console-line {
        grid-template-columns: 30px 1fr;

        padding: 20px 15px;
    }

    .console-progress {
        grid-column: 2;

        justify-self: start;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-content h2 {
        font-size: 43px;
    }

    .contact-circle {
        width: 150px;
        height: 150px;

        justify-self: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .footer-bottom span:nth-child(2),
    .footer-bottom span:nth-child(3) {
        text-align: left;
    }

}