* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    overflow-x: hidden;
}
body {
    background: #090909;
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}


/* NAV */


/* =========================================
   HEADER
========================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 1000;

    transition:
        background .4s ease,
        box-shadow .4s ease;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: inline-flex;

    align-items: center;

    width: 130px;

    line-height: 0;

}


.logo img {

    display: block;

    width: 130px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    transition:
        opacity .3s ease,
        transform .3s ease;

}


.logo:hover img {

    opacity: .7;

    transform: translateY(-1px);

}


/* =========================================
   NAV
========================================= */

.navbar nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.navbar nav a {

    position: relative;

    padding: 8px 0;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #aaa;

    transition: color .3s ease;

}


.navbar nav a:hover {

    color: #fff;

}


/* =========================================
   ACTIVE PAGE
========================================= */

.navbar nav a.active {

    color: #fff;

}


.navbar nav a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 1px;

    background: #fff;

}


/* =========================================
   LIGHT HEADER
========================================= */

.navbar.light-header {

    background: rgba(242, 242, 240, .95);

    box-shadow:
        0 1px 0 rgba(0,0,0,.08);

    backdrop-filter: blur(12px);

}


.navbar.light-header nav a {

    color: #777;

}


.navbar.light-header nav a:hover {

    color: #111;

}


.navbar.light-header nav a.active {

    color: #111;

}


.navbar.light-header nav a.active::after {

    background: #111;

}
/* =========================================
   VIDEO HERO
========================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;

    display: flex;
    align-items: flex-end;

    padding: 150px 5vw 100px;

    overflow: hidden;
    background: #090909;

    border-bottom: 1px solid #222;
}


/* COLOR VIDEO */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    /* KEEP ORIGINAL COLORS */
    filter: none;

    transform: scale(1.02);

    animation: heroVideo 18s ease-in-out infinite alternate;
}


/* SUBTLE OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.15) 65%,
            rgba(0, 0, 0, 0.25)
        );
}


/* TEXT */

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content small {
    color: #ddd;

    font-size: 10px;
    letter-spacing: 4px;
}

.hero-content h1 {
    margin-top: 30px;

    font-size: clamp(70px, 11vw, 160px);

    line-height: .82;
    letter-spacing: -8px;

    font-weight: 500;

    color: #fff;
}

.hero-content h1 span {
    color: #ddd;
}


/* SLOW CAMERA MOVEMENT */

@keyframes heroVideo {

    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }

}
/* INTRO */

.intro {
    max-width: 1400px;

    margin: auto;

    padding: 140px 5vw;
}

.intro h2 {
    max-width: 900px;

    margin-top: 30px;

    font-size: clamp(50px, 7vw, 100px);

    line-height: .88;

    letter-spacing: -6px;

    font-weight: 500;
}

.intro h2 span {
    color: #777;
}

.intro > p {
    max-width: 600px;

    margin-top: 40px;

    color: #999;

    line-height: 1.8;

    font-size: 15px;
}


/* MACHINES */

.machines {
    max-width: 1400px;

    margin: auto;

    padding: 0 5vw 150px;
}

.machine {
    display: grid;

    grid-template-columns: 1.2fr 1fr;

    margin-bottom: 80px;

    background: #111;
}

.machine:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.machine:nth-child(even) .machine-image {
    order: 2;
}

.machine-image {
    height: 550px;

    position: relative;

    overflow: hidden;
}

.machine-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    transition: .6s;
}

.machine:hover img {
    filter: grayscale(0%);

    transform: scale(1.04);
}

.machine-image span {
    position: absolute;

    top: 25px;
    left: 25px;

    font-size: 10px;

    letter-spacing: 2px;
}

.machine-info {
    padding: 60px;

    display: flex;

    justify-content: center;

    flex-direction: column;
}

.machine-info h2 {
    font-size: clamp(40px, 5vw, 70px);

    letter-spacing: -4px;

    font-weight: 400;

    margin: 25px 0;
}

.machine-info p {
    max-width: 450px;

    color: #777;

    line-height: 1.8;

    font-size: 14px;
}


/* =========================================
   TECHNOLOGY CTA ANIMATION
========================================= */

/* =========================================
   CTA
========================================= */

.cta {
    padding: 140px 5vw;
    background: #f2f2f0;
    color: #090909;
    text-align: center;
    overflow: hidden;
}

.technology-title {
    font-size: clamp(50px, 7vw, 100px);
    line-height: .88;
    letter-spacing: -6px;
    font-weight: 500;

    opacity: 1;
    transform: translateY(0);
    filter: blur(0);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.16, 1, .3, 1),
        filter 1s ease;
}

.technology-title span {
    display: block;
    color: #888;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 1s ease .15s,
        transform 1s cubic-bezier(.16, 1, .3, 1) .15s;
}


/* ANIMATION START STATE */

.technology-title.animate {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
}

.technology-title.animate span {
    opacity: 0;
    transform: translateY(35px);
}


/* ANIMATION ACTIVE STATE */

.technology-title.animate.show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.technology-title.animate.show span {
    opacity: 1;
    transform: translateY(0);
}


/* CTA BUTTON */

.cta a {
    display: inline-block;

    margin-top: 45px;

    border-bottom: 1px solid #111;

    padding-bottom: 10px;

    font-size: 10px;

    letter-spacing: 2px;

    transition:
        transform .3s ease,
        letter-spacing .3s ease;
}

.cta a:hover {
    transform: translateY(-3px);
    letter-spacing: 3px;
}
/* =========================================
   INKSPIRE FOOTER
========================================= */

.site-footer {

    width: 100%;

    background: #080808;

    color: #fff;

    padding: 40px 5vw 18px;

    border-top: 1px solid #1c1c1c;

}


.footer-inner {

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 60px;

}


/* =========================================
   LOGO
========================================= */

.footer-logo {

    display: inline-block;

    width: 120px;

    line-height: 0;

}


.footer-logo img {

    display: block;

    width: 120px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    transition: opacity .3s ease;

}


.footer-logo:hover img {

    opacity: .7;

}


/* =========================================
   CENTER
========================================= */

.footer-center {

    text-align: center;

}


.footer-center p {

    max-width: 270px;

    margin: 0 auto;

    font-size: 12px;

    line-height: 1.6;

    color: #777;

}


/* =========================================
   CONTACT
========================================= */

.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

}


.footer-contact > span {

    margin-bottom: 10px;

    font-size: 8px;

    letter-spacing: 3px;

    color: #555;

}


.footer-contact a {

    display: block;

    margin-bottom: 4px;

    font-size: 12px;

    line-height: 1.5;

    color: #aaa;

    text-decoration: none;

    transition: color .3s ease;

}


.footer-contact a:hover {

    color: #fff;

}


.footer-contact p {

    margin: 6px 0 0;

    font-size: 11px;

    line-height: 1.6;

    text-align: right;

    color: #777;

}


/* =========================================
   DIVIDER
========================================= */

.footer-line {

    max-width: 1400px;

    height: 1px;

    margin: 32px auto 15px;

    background: #1c1c1c;

}


/* =========================================
   BOTTOM
========================================= */

.footer-meta {

    max-width: 1400px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-meta span {

    font-size: 7px;

    letter-spacing: 1.5px;

    color: #444;

}


.footer-meta a {

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

    text-decoration: none;

    transition: color .3s ease;

}


.footer-meta a:hover {

    color: #fff;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navbar {

        padding: 0 25px;

    }


    .navbar nav {

        display: none;

    }


    .site-footer {

        padding: 35px 20px 18px;

    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 30px;

        align-items: start;

    }


    .footer-center {

        text-align: left;

    }


    .footer-center p {

        margin: 0;

    }


    .footer-contact {

        align-items: flex-start;

    }


    .footer-contact p {

        text-align: left;

    }


    .footer-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

}