/* =====================================================
   NEXZOT TECHNOLOGIES
   PREMIUM AGENCY WEBSITE
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --black: #080808;
    --black-soft: #0e0e0e;
    --card: #131313;

    --white: #f4f4ef;
    --muted: #858585;
    --muted-dark: #505050;

    --lime: #caff38;

    --border: rgba(255,255,255,.10);

    --display: "Space Grotesk", sans-serif;
    --body: "DM Sans", sans-serif;

    --container: 1240px;

    --ease: cubic-bezier(.16,1,.3,1);

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    background: var(--black);
}


body {

    background: var(--black);
    color: var(--white);

    font-family: var(--body);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


body.menu-open {
    overflow: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


button {
    font-family: inherit;
}


::selection {
    background: var(--lime);
    color: #000;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(
        var(--container),
        calc(100% - 80px)
    );

    margin-inline: auto;

}


/* =====================================================
   PRELOADER
===================================================== */

.preloader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;

    background: var(--black);

    transition:
        opacity .7s var(--ease),
        visibility .7s;

}


.preloader.hide {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.preloader-brand {

    font-family: var(--display);

    font-size: 30px;

    font-weight: 700;

    letter-spacing: -1px;

}


.preloader-brand span {

    display: block;

    margin-top: -2px;

    text-align: center;

    color: var(--lime);

    font-size: 10px;

    letter-spacing: 4px;

}


.loader-track {

    width: min(220px, 55vw);

    height: 2px;

    overflow: hidden;

    background: #222;

}


.loader-bar {

    width: 0;

    height: 100%;

    background: var(--lime);

}


.loader-percent {

    color: #555;

    font-size: 10px;

    font-variant-numeric: tabular-nums;

}


/* =====================================================
   CUSTOM CURSOR
===================================================== */

.cursor,
.cursor-ring {

    position: fixed;

    top: 0;
    left: 0;

    pointer-events: none;

    z-index: 100000;

    border-radius: 50%;

    transform: translate(-50%, -50%);

}


.cursor {

    width: 6px;
    height: 6px;

    background: var(--lime);

}


.cursor-ring {

    width: 35px;
    height: 35px;

    border: 1px solid rgba(202,255,56,.65);

    transition:
        width .3s ease,
        height .3s ease,
        background .3s ease;

}


.cursor.hover + .cursor-ring {

    width: 65px;
    height: 65px;

    background: rgba(202,255,56,.08);

}


@media (max-width: 900px) {

    .cursor,
    .cursor-ring {
        display: none;
    }

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 90px;

    padding-inline: 40px;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transition:
        background .4s ease,
        border-color .4s ease;

}


.header.scrolled {

    background: rgba(8,8,8,.88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--border);

}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.logo-mark {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    background: var(--lime);

    color: #000;

    font-family: var(--display);

    font-size: 18px;

    font-weight: 700;

}


.logo-text {

    font-family: var(--display);

    font-size: 17px;

    font-weight: 700;

    letter-spacing: -.7px;

    line-height: 1;

}


.logo-text small {

    display: block;

    margin-top: 3px;

    color: var(--lime);

    font-size: 10px;

    letter-spacing: 3px;

}


/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 35px;

}


.nav-link {

    position: relative;

    color: #777;

    font-size: 12px;

    transition: color .3s ease;

}


.nav-link:hover,
.nav-link.active {

    color: #fff;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--lime);

    transition: width .3s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


/* =====================================================
   BUTTONS
===================================================== */

.header-cta,
.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .3s var(--ease),
        background .3s ease;

}


.header-cta {

    padding: 13px 20px;

    background: var(--lime);

    color: #000;

}


.header-cta span,
.primary-button span {

    font-size: 17px;

}


.primary-button {

    padding: 16px 22px;

    background: var(--lime);

    color: #000;

}


.secondary-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #777;

    font-size: 12px;

    transition: color .3s ease;

}


.secondary-button:hover {

    color: #fff;

}


.secondary-button span {

    color: var(--lime);

}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-button {

    display: none;

    width: 38px;
    height: 38px;

    padding: 7px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.menu-button span {

    display: block;

    width: 100%;

    height: 1px;

    margin: 7px 0;

    background: #fff;

    transition:
        transform .4s var(--ease),
        opacity .3s ease;

}


.menu-button.active span:first-child {

    transform:
        translateY(4px)
        rotate(45deg);

}


.menu-button.active span:last-child {

    transform:
        translateY(-4px)
        rotate(-45deg);

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 900;

    background: var(--black);

    visibility: hidden;

    opacity: 0;

    transform: translateY(-20px);

    transition:
        opacity .5s ease,
        transform .6s var(--ease),
        visibility .5s;

}


.mobile-menu.active {

    visibility: visible;

    opacity: 1;

    transform: translateY(0);

}


.mobile-menu-inner {

    width: min(
        100% - 50px,
        700px
    );

    height: 100%;

    margin-inline: auto;

    padding-top: 110px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.mobile-menu-label {

    margin-bottom: 25px;

    color: #555;

    font-size: 9px;

    letter-spacing: 3px;

}


.mobile-menu-inner a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);

    font-family: var(--display);

    font-size: clamp(38px, 10vw, 70px);

    line-height: 1;

}


.mobile-menu-inner a span {

    color: var(--lime);

    font-family: var(--body);

    font-size: 10px;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-block: 150px 90px;

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .32;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        radial-gradient(
            circle at center,
            #000,
            transparent 75%
        );

    transition: transform 1s var(--ease);

}


.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .13;

    pointer-events: none;

}


.orb-one {

    width: 500px;
    height: 500px;

    right: -200px;
    top: 100px;

    background: var(--lime);

    transition: transform 1s var(--ease);

}


.orb-two {

    width: 350px;
    height: 350px;

    left: -150px;
    bottom: -100px;

    background: #554cff;

}


.hero-content {

    position: relative;

    z-index: 5;

    width: min(
        var(--container),
        calc(100% - 80px)
    );

    margin-inline: auto;

}


.hero-tag {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 35px;

    color: #777;

    font-size: 11px;

    letter-spacing: 2px;

}


.pulse {

    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--lime);

    box-shadow:
        0 0 15px var(--lime);

}


.hero-title {

    max-width: 1250px;

    font-family: var(--display);

    font-size: clamp(
        64px,
        9.7vw,
        145px
    );

    line-height: .84;

    letter-spacing: -8px;

    font-weight: 600;

}


.hero-line {

    display: block;

}


.hero-title em {

    color: var(--lime);

    font-family: Georgia, serif;

    font-weight: 400;

}


.lime-dot {

    color: var(--lime);

}


.hero-bottom {

    max-width: 950px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-top: 65px;

}


.hero-description {

    max-width: 410px;

    color: #858585;

    font-size: 15px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 30px;

    flex-shrink: 0;

}


/* =====================================================
   FLOATING CODE
===================================================== */

.floating-code {

    position: absolute;

    z-index: 4;

    right: 6%;

    bottom: 12%;

    width: min(330px, 27vw);

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: rgba(17,17,17,.92);

    box-shadow:
        0 40px 100px rgba(0,0,0,.5);

    transform: rotate(4deg);

    animation: floating 5s ease-in-out infinite;

    pointer-events: none;

}


@keyframes floating {

    0%,
    100% {
        transform: rotate(4deg) translateY(0);
    }

    50% {
        transform: rotate(4deg) translateY(-15px);
    }

}


.code-header {

    height: 38px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding-inline: 15px;

    border-bottom: 1px solid var(--border);

}


.code-dots {

    display: flex;

    gap: 5px;

}


.code-dots span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #444;

}


.code-header small {

    color: #555;

    font-size: 9px;

}


.code-body {

    padding: 25px;

}


.code-body pre {

    color: #888;

    font-family: monospace;

    font-size: 11px;

    line-height: 1.8;

    white-space: pre-wrap;

}


.tag {
    color: #ff73a5;
}


.highlight {
    color: var(--lime);
}


.text {
    color: #eee;
}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-down {

    position: absolute;

    left: 40px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #555;

    font-size: 9px;

    letter-spacing: 2px;

}


.scroll-down span {

    width: 40px;

    height: 1px;

    background: #444;

}


/* =====================================================
   MARQUEE
===================================================== */

.marquee-section {

    position: relative;

    z-index: 5;

    overflow: hidden;

    padding: 22px 0;

    background: var(--lime);

    color: #000;

    transform:
        rotate(-1deg)
        scale(1.02);

}


.marquee-track {

    display: flex;

    align-items: center;

    gap: 30px;

    width: max-content;

    animation:
        marquee 25s linear infinite;

}


.marquee-track span {

    white-space: nowrap;

    font-family: var(--display);

    font-size: 17px;

    font-weight: 700;

}


.marquee-track b {

    font-size: 12px;

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.section {

    padding: 160px 0;

}


.section-label {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 60px;

    color: #555;

    font-size: 10px;

    letter-spacing: 2px;

}


.section-label span {

    color: var(--lime);

}


.big-title {

    font-family: var(--display);

    font-size: clamp(
        50px,
        6vw,
        85px
    );

    line-height: .95;

    letter-spacing: -4px;

    font-weight: 500;

}


.big-title em {

    color: var(--lime);

    font-family: Georgia, serif;

    font-weight: 400;

}


/* =====================================================
   INTRO
===================================================== */

.intro {

    background: var(--black-soft);

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1.3fr .7fr;

    gap: 100px;

}


.intro-copy {

    padding-top: 15px;

}


.intro-copy p {

    margin-bottom: 25px;

    color: #777;

    font-size: 15px;

    line-height: 1.8;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 15px;

    padding-bottom: 8px;

    border-bottom: 1px solid #444;

    font-size: 12px;

}


.text-link span {

    color: var(--lime);

}


.numbers {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 100px;

    border-top: 1px solid var(--border);

}


.number-card {

    min-width: 0;

    padding: 30px 20px;

    border-right: 1px solid var(--border);

}


.number-card:first-child {

    padding-left: 0;

}


.number-card:last-child {

    border-right: 0;

}


.number-card strong {

    display: block;

    margin-bottom: 8px;

    font-family: var(--display);

    font-size: 45px;

    font-weight: 500;

    line-height: 1;

}


.number-card span {

    color: #555;

    font-size: 11px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-heading,
.work-heading,
.process-heading {

    display: grid;

    grid-template-columns:
        1fr .5fr;

    gap: 100px;

    align-items: start;

}


.section-description {

    max-width: 350px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


.services-list {

    margin-top: 100px;

    border-top: 1px solid var(--border);

}


.service {

    display: grid;

    grid-template-columns:
        100px 1fr 60px;

    gap: 30px;

    align-items: start;

    padding: 45px 0;

    border-bottom: 1px solid var(--border);

    transition:
        padding .5s var(--ease),
        background .5s ease;

}


.service:hover {

    padding-inline: 25px;

    background: #101010;

}


.service-number {

    color: var(--lime);

    font-family: monospace;

    font-size: 12px;

}


.service-content h3 {

    margin-bottom: 12px;

    font-family: var(--display);

    font-size: 30px;

    transition: color .3s ease;

}


.service:hover h3 {

    color: var(--lime);

}


.service-content p {

    max-width: 600px;

    color: #666;

    font-size: 13px;

    line-height: 1.7;

}


.service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;

}


.service-tags span {

    padding: 6px 10px;

    border: 1px solid #292929;

    border-radius: 30px;

    color: #666;

    font-size: 9px;

}


.service-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border: 1px solid #333;

    border-radius: 50%;

    transition:
        background .3s ease,
        color .3s ease,
        transform .4s var(--ease);

}


.service:hover .service-icon {

    background: var(--lime);

    color: #000;

    transform: rotate(45deg);

}


/* =====================================================
   WORK
===================================================== */

.work {

    background: var(--black-soft);

}


.portfolio {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    margin-top: 100px;

}


.project-large {

    grid-column: 1 / -1;

}


.project {

    min-width: 0;

}


.project-visual {

    position: relative;

    height: 450px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform .5s var(--ease);

}


.project-large .project-visual {

    height: 520px;

}


.project-business {

    background: var(--lime);

}


.project-portfolio {

    background: #272733;

}


.project-product {

    background: #bcae96;

}


/* =====================================================
   BROWSER MOCKUP
===================================================== */

.browser-window {

    width: 75%;

    overflow: hidden;

    border-radius: 10px;

    background: #0b0b0b;

    box-shadow:
        0 40px 90px rgba(0,0,0,.4);

    transform: translateY(40px);

    transition:
        transform .8s var(--ease);

}


.project:hover .browser-window {

    transform: translateY(0) scale(1.02);

}


.browser-top {

    height: 30px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding-inline: 12px;

    background: #181818;

}


.browser-buttons {

    display: flex;

    gap: 5px;

}


.browser-buttons i {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #555;

}


.browser-top > span {

    color: #555;

    font-size: 8px;

}


.business-demo {

    height: 330px;

    padding: 35px;

}


.business-demo small {

    color: #777;

    font-size: 8px;

    letter-spacing: 3px;

}


.business-demo h3 {

    margin-top: 60px;

    font-family: var(--display);

    font-size: 55px;

    line-height: .85;

}


.business-demo h3 em {

    color: var(--lime);

    font-family: Georgia, serif;

    font-weight: 400;

}


.demo-button {

    display: inline-block;

    margin-top: 35px;

    padding: 9px 15px;

    background: var(--lime);

    color: #000;

    font-size: 9px;

}


/* =====================================================
   PORTFOLIO MOCKUP
===================================================== */

.portfolio-demo {

    position: relative;

    width: 75%;
    height: 75%;

    overflow: hidden;

    padding: 35px;

    background: #111;

    transform: rotate(-5deg);

    transition:
        transform .7s var(--ease);

}


.project:hover .portfolio-demo {

    transform:
        rotate(0)
        scale(1.03);

}


.portfolio-demo > span {

    color: var(--lime);

    font-size: 8px;

    letter-spacing: 3px;

}


.portfolio-demo h3 {

    margin-top: 50px;

    font-family: var(--display);

    font-size: 55px;

    line-height: .8;

}


.portfolio-demo h3 em {

    color: var(--lime);

    font-family: Georgia, serif;

    font-weight: 400;

}


.portfolio-circle {

    position: absolute;

    right: -50px;
    bottom: -50px;

    width: 180px;
    height: 180px;

    border: 2px solid var(--lime);

    border-radius: 50%;

}


/* =====================================================
   PRODUCT MOCKUP
===================================================== */

.product-demo {

    width: 75%;
    height: 75%;

    padding: 40px;

    border: 1px solid rgba(0,0,0,.2);

    color: #111;

    transform: rotate(4deg);

    transition:
        transform .7s var(--ease);

}


.project:hover .product-demo {

    transform:
        rotate(0)
        scale(1.03);

}


.product-demo > span {

    font-size: 8px;

    letter-spacing: 3px;

}


.product-demo h3 {

    margin-top: 45px;

    font-family: var(--display);

    font-size: 48px;

    line-height: .8;

}


.product-demo h3 em {

    font-family: Georgia, serif;

    font-weight: 400;

}


.product-demo button {

    margin-top: 30px;

    padding: 10px 18px;

    border: 0;

    background: #111;

    color: #fff;

    font-size: 9px;

    cursor: pointer;

}


/* =====================================================
   PROJECT INFO
===================================================== */

.project-info {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

}


.project-info h3 {

    margin-bottom: 5px;

    font-family: var(--display);

    font-size: 17px;

}


.project-info span {

    color: #555;

    font-size: 10px;

}


.project-arrow {

    width: 40px;
    height: 40px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    border: 1px solid #333;

    border-radius: 50%;

    transition:
        background .3s ease,
        color .3s ease;

}


.project:hover .project-arrow {

    background: var(--lime);

    color: #000;

}


/* =====================================================
   WHY
===================================================== */

.why-grid {

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 120px;

}


.why-list {

    border-top: 1px solid var(--border);

}


.why-item {

    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 20px;

    padding: 30px 0;

    border-bottom: 1px solid var(--border);

}


.why-item > span {

    color: var(--lime);

    font-family: monospace;

    font-size: 10px;

}


.why-item h3 {

    margin-bottom: 8px;

    font-family: var(--display);

    font-size: 20px;

}


.why-item p {

    color: #666;

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   PROCESS
===================================================== */

.process {

    background: var(--black-soft);

}


.process-list {

    margin-top: 100px;

    border-top: 1px solid var(--border);

}


.process-item {

    display: grid;

    grid-template-columns:
        80px 1fr 100px;

    gap: 30px;

    padding: 45px 0;

    border-bottom: 1px solid var(--border);

    transition:
        padding .4s var(--ease);

}


.process-item:hover {

    padding-left: 20px;

}


.process-count {

    color: var(--lime);

    font-family: monospace;

}


.process-item h3 {

    margin-bottom: 10px;

    font-family: var(--display);

    font-size: 28px;

}


.process-item p {

    max-width: 550px;

    color: #666;

    font-size: 13px;

    line-height: 1.7;

}


.process-item > span {

    color: #444;

    font-size: 9px;

    letter-spacing: 1px;

    text-align: right;

}


/* =====================================================
   CTA
===================================================== */

.cta {

    position: relative;

    overflow: hidden;

    padding: 170px 0;

    background: var(--lime);

    color: #000;

}


.cta-pattern {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:
        radial-gradient(
            #000 1px,
            transparent 1px
        );

    background-size: 20px 20px;

}


.cta-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


.cta .section-label {

    margin-bottom: 45px;

    color: #555;

}


.cta .section-label span {

    color: #000;

}


.cta h2 {

    max-width: 1000px;

    font-family: var(--display);

    font-size: clamp(
        60px,
        9vw,
        125px
    );

    line-height: .8;

    letter-spacing: -6px;

}


.cta h2 em {

    font-family: Georgia, serif;

    font-weight: 400;

}


.cta-content > p {

    max-width: 450px;

    margin: 40px auto;

    color: #333;

    font-size: 14px;

    line-height: 1.7;

}


.cta-button {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 8px 10px 8px 22px;

    border-radius: 999px;

    background: #000;

    color: #fff;

    font-size: 12px;

}


.cta-button b {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--lime);

    color: #000;

    font-size: 18px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 75px 0 25px;

    background: #060606;

}


.footer-main {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;

    padding-bottom: 70px;

    border-bottom: 1px solid var(--border);

}


.footer-brand p {

    max-width: 250px;

    margin-top: 25px;

    color: #555;

    font-size: 12px;

    line-height: 1.7;

}


.footer-links {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

}


.footer-links div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}


.footer-links small {

    margin-bottom: 8px;

    color: #444;

    font-size: 8px;

    letter-spacing: 2px;

}


.footer-links a {

    color: #777;

    font-size: 11px;

    transition: color .3s ease;

}


.footer-links a:hover {

    color: var(--lime);

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: #333;

    font-size: 9px;

}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease);

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .floating-code {

        right: 2%;

        width: 280px;

        opacity: .55;

    }


    .hero-title {

        font-size: 10vw;

    }


    .why-grid {

        gap: 60px;

    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 900px) {

    .header {

        height: 75px;

        padding-inline: 25px;

    }


    .desktop-nav,
    .header-cta {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .container,
    .hero-content {

        width:
            min(
                calc(100% - 40px),
                var(--container)
            );

    }


    .hero {

        min-height: 850px;

        padding-block:
            120px
            80px;

    }


    .floating-code {

        display: none;

    }


    .hero-title {

        max-width: 850px;

        font-size: clamp(
            58px,
            11vw,
            100px
        );

        letter-spacing: -5px;

    }


    .hero-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

    }


    .intro-grid,
    .services-heading,
    .work-heading,
    .process-heading,
    .why-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .numbers {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .number-card:nth-child(2) {

        border-right: 0;

    }


    .number-card:nth-child(3),
    .number-card:nth-child(4) {

        border-top: 1px solid var(--border);

    }


    .portfolio {

        grid-template-columns: 1fr;

    }


    .project-large {

        grid-column: auto;

    }


    .footer-main {

        grid-template-columns: 1fr;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .container,
    .hero-content {

        width:
            calc(100% - 32px);

    }


    .section {

        padding: 100px 0;

    }


    .hero {

        min-height: 760px;

        padding-top: 120px;

    }


    .hero-tag {

        margin-bottom: 25px;

        font-size: 9px;

    }


    .hero-title {

        font-size: clamp(
            48px,
            15.5vw,
            78px
        );

        line-height: .88;

        letter-spacing: -3.5px;

    }


    .hero-bottom {

        margin-top: 45px;

    }


    .hero-description {

        max-width: 330px;

        font-size: 13px;

    }


    .hero-actions {

        width: 100%;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .primary-button {

        padding: 14px 19px;

    }


    .scroll-down {

        left: 16px;

        bottom: 22px;

    }


    .section-label {

        margin-bottom: 40px;

    }


    .big-title {

        font-size: 46px;

        letter-spacing: -2.5px;

    }


    .numbers {

        margin-top: 60px;

    }


    .number-card {

        padding: 25px 10px;

    }


    .number-card:first-child {

        padding-left: 0;

    }


    .number-card strong {

        font-size: 34px;

    }


    .number-card span {

        font-size: 9px;

    }


    .services-list,
    .portfolio,
    .process-list {

        margin-top: 65px;

    }


    .service {

        grid-template-columns:
            35px 1fr 36px;

        gap: 10px;

        padding: 30px 0;

    }


    .service:hover {

        padding-inline: 10px;

    }


    .service-content h3 {

        font-size: 21px;

    }


    .service-content p {

        font-size: 12px;

    }


    .service-icon {

        width: 34px;
        height: 34px;

    }


    .service-tags {

        gap: 5px;

    }


    .service-tags span {

        padding: 5px 8px;

        font-size: 8px;

    }


    .project-visual,
    .project-large .project-visual {

        height: 340px;

    }


    .browser-window {

        width: 90%;

    }


    .business-demo {

        height: 280px;

        padding: 25px;

    }


    .business-demo h3 {

        margin-top: 45px;

        font-size: 37px;

    }


    .portfolio-demo,
    .product-demo {

        width: 86%;

        height: 75%;

        padding: 25px;

    }


    .portfolio-demo h3,
    .product-demo h3 {

        font-size: 38px;

    }


    .portfolio-demo h3 {

        margin-top: 40px;

    }


    .product-demo h3 {

        margin-top: 35px;

    }


    .project-info {

        padding: 16px 0;

    }


    .project-info h3 {

        font-size: 15px;

    }


    .project-info span {

        font-size: 9px;

    }


    .project-arrow {

        width: 36px;
        height: 36px;

    }


    .why-item {

        grid-template-columns:
            35px 1fr;

        gap: 12px;

    }


    .process-item {

        grid-template-columns:
            40px 1fr;

        gap: 15px;

        padding: 35px 0;

    }


    .process-item:hover {

        padding-left: 8px;

    }


    .process-item > span {

        display: none;

    }


    .process-item h3 {

        font-size: 22px;

    }


    .process-item p {

        font-size: 12px;

    }


    .cta {

        padding: 110px 0;

    }


    .cta h2 {

        font-size: 17vw;

        letter-spacing: -3px;

    }


    .cta-content > p {

        margin-block: 30px;

        font-size: 13px;

    }


    .cta-button {

        max-width: 100%;

        padding-left: 16px;

        font-size: 9px;

    }


    .cta-button span {

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;

    }


    .footer {

        padding-top: 60px;

    }


    .footer-links {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =====================================================
   VERY SMALL DEVICES
===================================================== */

@media (max-width: 360px) {

    .logo-text {

        font-size: 15px;

    }


    .logo-mark {

        width: 30px;
        height: 30px;

        font-size: 16px;

    }


    .hero-title {

        font-size: 14.5vw;

        letter-spacing: -3px;

    }


    .big-title {

        font-size: 40px;

    }


    .service {

        grid-template-columns:
            28px 1fr 32px;

    }


    .service-content h3 {

        font-size: 19px;

    }


    .number-card strong {

        font-size: 29px;

    }


    .footer-links {

        grid-template-columns: 1fr;

    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }


    .reveal {

        opacity: 1;

        transform: none;

    }

}