/* =========================================================
   TAB_
   DIGITAL STUDIO
   RESPONSIVE / BROWSER UI
========================================================= */

:root {

    --black: #030303;
    --black-2: #080808;
    --black-3: #101010;

    --white: #f4f4f4;
    --gray: #8c8c8c;
    --gray-2: #555;

    --blue: #238cff;
    --blue-light: #63b3ff;

    --border: rgba(255,255,255,.12);

    --ease: cubic-bezier(.77,0,.18,1);

}


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


html {
    scroll-behavior: smooth;
}


body {

    background: var(--black);
    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;

    cursor: none;

}


body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(35,140,255,.07),
            transparent 30%
        );

}


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


::selection {
    background: white;
    color: black;
}


/* =========================================================
   NOISE
========================================================= */

.noise {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 9998;

    opacity: .035;

    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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

}


/* =========================================================
   CURSOR
========================================================= */

.cursor {

    position: fixed;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: white;

    transform:
        translate(-50%,-50%);

    pointer-events: none;

    z-index: 10000;

}


.cursor-follower {

    position: fixed;

    width: 35px;
    height: 35px;

    border:
        1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    pointer-events: none;

    z-index: 9999;

    transition:
        width .4s var(--ease),
        height .4s var(--ease),
        border-color .4s ease;

}


body.hovering .cursor-follower {

    width: 58px;
    height: 58px;

    border-color:
        rgba(35,140,255,.8);

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 90px;

    padding:
        0 5vw;

    display: flex;

    align-items: center;

    gap: 40px;

    z-index: 100;

    background:
        rgba(3,3,3,.82);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid rgba(255,255,255,.08);

}


.logo {

    flex-shrink: 0;

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -2px;

}


.logo span {
    font-weight: 400;
}


/* =========================================================
   BROWSER TABS
========================================================= */

.browser-tabs {

    height: 48px;

    display: flex;

    align-items: flex-end;

    gap: 3px;

    max-width: 800px;

    overflow-x: auto;

    scrollbar-width: none;

}


.browser-tabs::-webkit-scrollbar {
    display: none;
}


.browser-tab {

    height: 38px;

    min-width: 120px;

    padding:
        0 15px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid transparent;

    border-radius:
        10px 10px 0 0;

    color: #777;

    background:
        rgba(255,255,255,.035);

    font-size: 11px;

    white-space: nowrap;

    transition:
        .45s var(--ease);

}


.browser-tab:hover {

    color: white;

    background:
        rgba(255,255,255,.08);

}


.browser-tab.active {

    color: white;

    background:
        #121212;

    border-color:
        var(--border);

    border-bottom-color:
        #121212;

}


.tab-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--blue);

    box-shadow:
        0 0 12px var(--blue);

}


.tab-close {

    margin-left: auto;

    opacity: .35;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    color: #030303;
    background: #25d366;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    box-shadow:
        0 12px 30px rgba(0,0,0,.45),
        0 0 0 6px rgba(37,211,102,.08);

    z-index: 101;

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease;

}


.whatsapp-float svg {

    width: 27px;
    height: 27px;

    fill: currentColor;

}


.whatsapp-float:hover {

    transform: translateY(-5px) scale(1.06);

    box-shadow:
        0 16px 34px rgba(0,0,0,.55),
        0 0 0 8px rgba(37,211,102,.12);

}


.section,
.cta {

    scroll-margin-top: 90px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding:
        130px 7vw 100px;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(35,140,255,.12),
            transparent 25%
        ),

        radial-gradient(
            circle at 75% 45%,
            #181818 0,
            transparent 28%
        ),

        #030303;

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:

        linear-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 85%
        );

}


.hero::after {

    content: "";

    position: absolute;

    width: 1px;
    height: 150%;

    right: 27%;
    top: -20%;

    background:
        linear-gradient(
            transparent,
            rgba(35,140,255,.5),
            transparent
        );

    transform:
        rotate(25deg);

}


.hero-left {

    position: relative;

    z-index: 3;

    width: min(760px, 58vw);

}


.eyebrow {

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 35px;

    color: #777;

}


.hero h1 {

    font-size:
        clamp(55px, 7.7vw, 118px);

    line-height: .86;

    letter-spacing: -7px;

    font-weight: 800;

    animation:
        heroTitle 1.2s var(--ease) both;

}


.hero h1 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px white;

}


.hero-description {

    max-width: 440px;

    margin-top: 40px;

    font-size: 15px;

    line-height: 1.7;

    color: #999;

    animation:
        fadeUp 1s .4s both;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.main-button,
.secondary-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 35px;

    padding:
        15px 22px;

    border-radius: 50px;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: .5px;

    transition:
        .4s var(--ease);

}


.main-button {

    border: 1px solid white;

}


.secondary-button {

    border:
        1px solid #292929;

    color: #aaa;

}


.main-button:hover {

    background: white;

    color: black;

    transform:
        translateY(-4px);

}


.secondary-button:hover {

    border-color:
        var(--blue);

    color: white;

    background:
        rgba(35,140,255,.1);

    transform:
        translateY(-4px);

}


/* =========================================================
   VIDEO / GIF LOGO WINDOW
========================================================= */

.hero-video {

    position: absolute;

    z-index: 2;

    right: 8%;

    top: 50%;

    width:
        clamp(250px, 28vw, 430px);

    transform:
        translateY(-50%);

}


.video-frame {

    position: relative;

    aspect-ratio: 1 / 1;

    border:
        1px solid rgba(255,255,255,.16);

    background:
        #050505;

    overflow: hidden;

    box-shadow:
        0 30px 100px rgba(0,0,0,.6);

}


.video-browser-bar {

    position: absolute;

    z-index: 4;

    top: 0;
    left: 0;

    width: 100%;
    height: 28px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 0 10px;

    background:
        rgba(5,5,5,.9);

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

}


.video-browser-bar span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #666;

}


.video-browser-bar small {

    margin-left: 8px;

    color: #555;

    font-size: 7px;

    letter-spacing: 2px;

}


.video-frame video,
.video-frame img,
.tab-hero-gif {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    position: relative;
    z-index: 1;

}


.video-glow {

    position: absolute;

    inset: 15%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,140,255,.15),
            transparent 65%
        );

    pointer-events: none;

    animation:
        logoPulse 4s ease-in-out infinite;

}


.hero-meta {

    position: absolute;

    right: 7vw;

    bottom: 100px;

    display: flex;

    gap: 20px;

    color: #555;

    font-size: 8px;

    letter-spacing: 2px;

}


.hero-number {

    position: absolute;

    right: 5vw;

    bottom: 40px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #666;

}


.hero-scroll {

    position: absolute;

    left: 7vw;

    bottom: 40px;

    font-size: 9px;

    letter-spacing: 3px;

    color: #555;

}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {

    overflow: hidden;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    padding:
        18px 0;

    white-space: nowrap;

}


.marquee-track {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    animation:
        marquee 25s linear infinite;

}


.marquee span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.marquee i {

    font-style: normal;

    color: var(--blue);

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding:
        130px 7vw;

}


.section-label {

    font-size: 9px;

    letter-spacing: 3px;

    color: #666;

    margin-bottom: 55px;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    min-height: 600px;

}


.about-content {

    display: grid;

    grid-template-columns:
        minmax(0,1.3fr)
        minmax(280px,.7fr);

    gap: 8vw;

}


.about h2 {

    font-size:
        clamp(45px, 6vw, 85px);

    line-height: .95;

    letter-spacing: -5px;

}


.about h2 span {

    color: transparent;

    -webkit-text-stroke:
        1px white;

}


.about-text {

    max-width: 430px;

}


.about-text p {

    font-size: 14px;

    line-height: 1.8;

    color: #999;

    margin-bottom: 22px;

}


.location-box {

    margin-top: 40px;

    padding-top: 18px;

    border-top:
        1px solid var(--border);

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.location-box span {

    color: var(--blue);

    font-size: 8px;

    letter-spacing: 3px;

}


.location-box strong {

    font-size: 11px;

    letter-spacing: 1px;

}


.location-box small {

    color: #666;

    font-size: 8px;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background:
        #070707;

}


.services-tabs {

    display: grid;

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

    gap: 7px;

}


.solution-tab {

    min-width: 0;

    min-height: 265px;

    padding: 20px;

    position: relative;

    overflow: hidden;

    border:
        1px solid #202020;

    background:
        linear-gradient(
            145deg,
            #111,
            #080808
        );

    transition:
        .55s var(--ease);

}


.solution-tab::before {

    content: "";

    position: absolute;

    width: 120%;
    height: 2px;

    left: -120%;
    top: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            transparent
        );

    transition:
        .7s var(--ease);

}


.solution-tab:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(35,140,255,.45);

    background:
        linear-gradient(
            145deg,
            #141414,
            #080808
        );

}


.solution-tab:hover::before {
    left: 0;
}


.solution-tab-top {

    display: flex;

    justify-content: space-between;

    color: #555;

    font-size: 9px;

}


.tab-status {

    color: var(--blue);

    font-size: 7px;

}


.solution-main {

    margin-top: 50px;

}


.solution-icon {

    display: inline-flex;

    padding: 6px 9px;

    border:
        1px solid #333;

    font-size: 8px;

    letter-spacing: 2px;

    color: #aaa;

}


.solution-tab h3 {

    margin-top: 17px;

    font-size:
        clamp(18px, 1.6vw, 24px);

}


.solution-tab p {

    max-width: 230px;

    margin-top: 9px;

    color: #777;

    font-size: 10px;

    line-height: 1.6;

}


.solution-footer {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 13px;

    border-top:
        1px solid #202020;

    font-size: 7px;

    letter-spacing: 2px;

    color: #555;

}


.solution-footer strong {

    font-size: 17px;

    color: #aaa;

    transition: .4s;

}


.solution-tab:hover
.solution-footer strong {

    color: var(--blue);

    transform:
        translate(4px,-4px);

}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio {

    background: #030303;

}


.portfolio-header {

    display: grid;

    grid-template-columns:
        .5fr 1.5fr;

    gap: 30px;

    margin-bottom: 45px;

}


.portfolio-header h2 {

    font-size:
        clamp(45px, 6vw, 90px);

    line-height: .85;

    letter-spacing: -6px;

}


.portfolio-header h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px white;

}


.portfolio-header p {

    margin-top: 22px;

    color: #666;

    font-size: 12px;

}


/* =========================================================
   PROJECT BROWSER
========================================================= */

.project-browser {

    border:
        1px solid #202020;

    background:
        #080808;

    box-shadow:
        0 30px 100px rgba(0,0,0,.3);

}


.browser-top {

    height: 38px;

    display: grid;

    grid-template-columns:
        100px 1fr 100px;

    align-items: center;

    padding: 0 12px;

    border-bottom:
        1px solid #202020;

}


.browser-controls {

    display: flex;

    gap: 5px;

}


.browser-controls span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #555;

}


.browser-address {

    justify-self: center;

    width: min(420px,70%);

    padding: 6px 14px;

    border:
        1px solid #202020;

    border-radius: 20px;

    color: #555;

    font-size: 8px;

    text-align: center;

}


.browser-address span {
    color: #777;
}


.browser-menu {

    justify-self: end;

    color: #555;

    font-size: 10px;

}


/* =========================================================
   PROJECT TABS
========================================================= */

.project-tabs {

    display: flex;

    align-items: flex-end;

    gap: 2px;

    padding:
        8px 8px 0;

    border-bottom:
        1px solid #202020;

    overflow-x: auto;

    scrollbar-width: none;

}


.project-tabs::-webkit-scrollbar {
    display: none;
}


.project-tab {

    flex-shrink: 0;

    border: 0;

    background:
        #0d0d0d;

    color: #555;

    padding:
        11px 20px;

    border-radius:
        7px 7px 0 0;

    font-size: 8px;

    letter-spacing: 2px;

    cursor: pointer;

    transition:
        .4s var(--ease);

}


.project-tab:hover {

    color: white;

}


.project-tab.active {

    color: white;

    background:
        #151515;

    box-shadow:
        inset 0 1px var(--blue);

}


/* =========================================================
   PROJECT GRID
========================================================= */

.projects-grid {

    display: grid;

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

    gap: 1px;

    background: #202020;

}


.project {

    min-width: 0;

    background: #080808;

    transition:
        opacity .35s ease,
        transform .45s var(--ease);

}


.project.hidden {

    display: none;

}


.project-preview {

    height:
        clamp(210px, 18vw, 290px);

    position: relative;

    overflow: hidden;

    background: #111;

}


.project-window {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 25px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 4px;

    padding: 0 9px;

    background:
        rgba(5,5,5,.95);

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

}


.project-window span {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #666;

}


.project-visual {

    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;

}


.project-info {

    min-height: 65px;

    padding:
        13px 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid #1b1b1b;

}


.project-info small {

    display: block;

    margin-bottom: 4px;

    color: #555;

    font-size: 7px;

    letter-spacing: 2px;

}


.project-info h3 {

    font-size: 14px;

    font-weight: 700;

}


.project-info > span {

    color: #666;

    font-size: 18px;

    transition:
        .4s var(--ease);

}


.project:hover {

    transform:
        translateY(-5px);

}


.project:hover
.project-info > span {

    color: var(--blue);

    transform:
        translate(4px,-4px);

}


/* =========================================================
   PROJECT VISUALS
========================================================= */

.toolkit-preview {

    padding:
        50px 25px;

    background:
        linear-gradient(
            135deg,
            #171717,
            #050505
        );

}


.toolkit-preview small {

    font-size: 8px;

    letter-spacing: 3px;

}


.toolkit-preview strong {

    position: absolute;

    left: 25px;

    top: 95px;

    font-size:
        clamp(28px,3vw,45px);

    line-height: .82;

}


.toolkit-preview em {

    color: transparent;

    font-style: normal;

    -webkit-text-stroke:
        1px white;

}


.visual-grid {

    position: absolute;

    right: 20px;
    bottom: 20px;

    display: flex;

    gap: 3px;

}


.visual-grid i {

    width: 24px;
    height: 24px;

    border:
        1px solid #555;

}


/* BEL */

.bel-preview {

    padding:
        50px 25px;

    background:
        #e5e5e5;

    color: #050505;

}


.bel-preview small {

    font-size: 8px;

    letter-spacing: 3px;

}


.bel-preview strong {

    position: absolute;

    left: 25px;

    top: 90px;

    font-size:
        clamp(30px,3vw,46px);

    line-height: .85;

    font-weight: 300;

}


.bel-preview em {

    font-style: normal;

    font-weight: 800;

}


/* MOODLE */

.moodle-preview {

    padding:
        50px 25px;

    background: #111;

}


.moodle-preview > strong {

    font-size: 28px;

    letter-spacing: 4px;

}


.moodle-layout {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 65%;

    display: grid;

    grid-template-columns: 25% 75%;

    border-top:
        1px solid #333;

}


.moodle-layout > i {

    border-right:
        1px solid #333;

}


.moodle-layout > div {

    padding: 15px;

}


.moodle-layout b {

    display: block;

    height: 25px;

    margin-bottom: 6px;

    border:
        1px solid #333;

}


/* ATENAS */

.atenas-preview {

    padding: 50px 25px;

    background: #ddd;

    color: #111;

}


.atenas-preview small {

    letter-spacing: 4px;

    font-size: 8px;

}


.chair {

    position: absolute;

    width: 110px;
    height: 125px;

    left: 50%;
    top: 52%;

    transform:
        translate(-50%,-50%);

    border:
        2px solid #111;

    border-radius:
        50% 50% 10% 10%;

}


.chair::after {

    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 18px;

    height: 2px;

    background: #111;

}


.atenas-preview strong {

    position: absolute;

    bottom: 18px;
    right: 25px;

    font-size: 8px;

    letter-spacing: 3px;

}


/* LUISINA */

.luisina-preview {

    padding: 50px 25px;

    background: #eee;

    color: #111;

}


.luisina-preview small {

    letter-spacing: 4px;

    font-size: 8px;

}


.luisina-preview > div {

    position: absolute;

    left: 50%;
    top: 52%;

    width: 130px;
    height: 130px;

    transform:
        translate(-50%,-50%);

    display: flex;

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

    border:
        1px solid #111;

    border-radius: 50%;

    font-family:
        Georgia,
        serif;

    font-size: 60px;

}


.luisina-preview strong {

    position: absolute;

    left: 25px;
    bottom: 18px;

    font-size: 7px;

    letter-spacing: 2px;

}


/* DANESE */

.danese-preview {

    padding: 50px 25px;

    text-align: center;

    background:
        #151515;

}


.danese-preview small {

    letter-spacing: 5px;

    font-size: 8px;

}


.perfume {

    position: absolute;

    left: 50%;
    top: 53%;

    transform:
        translate(-50%,-50%);

}


.perfume i {

    display: block;

    width: 30px;
    height: 17px;

    margin: auto;

    border:
        1px solid white;

}


.perfume strong {

    width: 80px;
    height: 105px;

    display: flex;

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

    margin-top: 4px;

    border:
        1px solid white;

    font-size: 30px;

}


.danese-preview > span {

    position: absolute;

    bottom: 18px;

    left: 0;
    right: 0;

    font-size: 7px;

    letter-spacing: 4px;

}


/* MIR4 */

.mir4-preview {

    background:
        radial-gradient(
            circle at center,
            #303030,
            #050505 70%
        );

}


.mir4-preview > strong {

    position: absolute;

    top: 55px;
    left: 25px;

    font-size: 35px;

    letter-spacing: -3px;

}


.mir-character {

    position: absolute;

    left: 58%;
    top: 57%;

    width: 100px;
    height: 170px;

    transform:
        translate(-50%,-50%);

    border:
        1px solid #aaa;

    clip-path:
        polygon(
            50% 0,
            72% 20%,
            65% 45%,
            100% 100%,
            50% 80%,
            0 100%,
            35% 45%,
            28% 20%
        );

    animation:
        gameFloat 4s ease-in-out infinite;

}


.mir4-preview small {

    position: absolute;

    right: 25px;
    bottom: 18px;

    letter-spacing: 4px;

    font-size: 7px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background:
        #070707;

}


.contact-layout {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 10vw;

}


.contact h2 {

    max-width: 800px;

    font-size:
        clamp(50px,7vw,100px);

    line-height: .85;

    letter-spacing: -6px;

}


.contact h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px white;

}


.contact-info {

    border-top:
        1px solid #222;

}


.contact-item {

    padding:
        20px 0;

    border-bottom:
        1px solid #222;

}


.contact-item small {

    display: block;

    margin-bottom: 8px;

    color: var(--blue);

    font-size: 7px;

    letter-spacing: 3px;

}


.contact-item a,
.contact-item p {

    font-size: 13px;

    color: #aaa;

}


.contact-item a {

    transition: .3s;

}


.contact-item a:hover {

    color: white;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:
        #eeeeee;

    color: #050505;

}


.cta-grid {

    position: absolute;

    inset: -50%;

    background-image:

        linear-gradient(
            115deg,
            transparent 48%,
            rgba(35,140,255,.12) 49%,
            transparent 50%
        );

    background-size:
        100px 100px;

    animation:
        diagonalMove 15s linear infinite;

}


.cta-content {

    position: relative;

    z-index: 2;

}


.cta-content > span {

    font-size: 9px;

    letter-spacing: 4px;

}


.cta h2 {

    margin:
        30px 0 45px;

    font-size:
        clamp(55px,8vw,120px);

    line-height: .8;

    letter-spacing: -7px;

}


.cta h2 em {

    display: block;

    font-family:
        Georgia,
        serif;

    font-weight: 400;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding:
        17px 27px;

    border:
        1px solid black;

    border-radius: 50px;

    font-size: 9px;

    font-weight: bold;

    transition:
        .4s var(--ease);

}


.cta-button:hover {

    background: black;

    color: white;

    transform:
        translateY(-4px);

}


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

footer {

    min-height: 100px;

    padding:
        0 5vw;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top:
        1px solid var(--border);

}


.footer-logo {

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -2px;

}


.footer-logo span {
    font-weight: 400;
}


.footer-center,
.footer-right {

    color: #555;

    font-size: 8px;

    letter-spacing: 2px;

}


/* =========================================================
   REVEAL
========================================================= */

.section,
.project,
.solution-tab {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .9s var(--ease),
        transform .9s var(--ease);

}


.section.visible,
.project.visible,
.solution-tab.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroTitle {

    from {
        opacity: 0;
        transform: translateY(70px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@keyframes gameFloat {

    0%,
    100% {
        transform:
            translate(-50%,-50%)
            translateY(0);
    }

    50% {
        transform:
            translate(-50%,-50%)
            translateY(-12px);
    }

}


@keyframes diagonalMove {

    from {
        transform:
            translate(-100px,-100px);
    }

    to {
        transform:
            translate(100px,100px);
    }

}


@keyframes logoPulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

}


/* =========================================================
   TABLET / IPAD
========================================================= */

@media (max-width: 1100px) {

    .header {

        padding:
            0 30px;

        gap: 20px;

    }


    .browser-tab {

        min-width: 105px;

    }


    .hero {

        padding-left:
            5vw;

        padding-right:
            5vw;

    }


    .hero-left {

        width: 60vw;

    }


    .hero-video {

        right: 4%;

        width:
            clamp(220px,28vw,330px);

    }


    .services-tabs {

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

    }


    .projects-grid {

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

    }


    .project-preview {

        height:
            260px;

    }

}


/* =========================================================
   TABLET VERTICAL
========================================================= */

@media (max-width: 820px) {

    body {
        cursor: auto;
    }


    .cursor,
    .cursor-follower {
        display: none;
    }


    .header {

        height: 75px;

        padding:
            0 20px;

        align-items: center;

    }


    .logo {

        font-size: 28px;

    }


    .browser-tabs {

        flex: 1;

        max-width: calc(100vw - 150px);

    }


    .browser-tab {

        min-width: 105px;

    }


    .hero {

        min-height:
            900px;

        padding:
            150px 30px 100px;

        align-items: flex-start;

    }


    .hero-left {

        width: 100%;

    }


    .hero h1 {

        font-size:
            clamp(55px,10vw,85px);

    }


    .hero-video {

        width:
            min(340px,48vw);

        right:
            8%;

        top:
            63%;

    }


    .hero-meta {

        display: none;

    }


    .hero-scroll {

        bottom: 30px;

    }


    .about-content {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .contact-layout {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .portfolio-header {

        grid-template-columns: 1fr;

    }


    .portfolio-header .section-label {

        margin-bottom: 20px;

    }

}


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

@media (max-width: 600px) {

    body {
        cursor: auto;
    }


    .header {

        position:
            fixed;

        top: 0;

        height: 65px;

        padding:
            0 15px;

        background:
            rgba(3,3,3,.85);

        backdrop-filter:
            blur(15px);

        border-bottom:
            1px solid rgba(255,255,255,.08);

    }


    .logo {

        font-size: 25px;

    }


    .browser-tabs {

        max-width:
            calc(100vw - 95px);

        height: 42px;

    }


    .browser-tab {

        height: 32px;

        min-width: 90px;

        padding:
            0 10px;

        font-size: 9px;

    }


    .tab-close {
        display: none;
    }


    .hero {

        min-height:
            820px;

        padding:
            120px 20px 80px;

    }


    .eyebrow {

        font-size: 8px;

        letter-spacing: 2px;

        margin-bottom: 25px;

    }


    .hero h1 {

        font-size:
            clamp(50px,15vw,72px);

        letter-spacing:
            -4px;

    }


    .hero-description {

        margin-top: 30px;

        font-size: 13px;

        max-width: 330px;

    }


    .hero-actions {

        gap: 5px;

    }


    .main-button,
    .secondary-button {

        margin-top: 25px;

        padding:
            13px 16px;

        gap: 12px;

        font-size: 8px;

    }


    .hero-video {

        width:
            230px;

        right:
            50%;

        top:
            72%;

        transform:
            translate(50%,-50%);

    }


    .hero-number {

        display: none;

    }


    .hero-scroll {

        left: 20px;

        bottom: 25px;

    }


    .section {

        padding:
            90px 20px;

    }


    .section-label {

        margin-bottom: 40px;

    }


    .about h2 {

        font-size:
            clamp(43px,13vw,65px);

        letter-spacing:
            -4px;

    }


    .services-tabs {

        grid-template-columns: 1fr;

        gap: 5px;

    }


    .solution-tab {

        min-height:
            225px;

    }


    .solution-main {

        margin-top: 35px;

    }


    .portfolio-header h2 {

        font-size:
            clamp(45px,13vw,70px);

        letter-spacing:
            -4px;

    }


    .project-browser {

        margin-left:
            -5px;

        margin-right:
            -5px;

    }


    .browser-top {

        grid-template-columns:
            70px 1fr 50px;

    }


    .browser-address {

        width: 90%;

    }


    .project-tabs {

        padding:
            6px 6px 0;

    }


    .project-tab {

        padding:
            10px 14px;

        font-size: 7px;

    }


    .projects-grid {

        grid-template-columns:
            1fr;

    }


    .project-preview {

        height:
            250px;

    }


    .contact h2 {

        font-size:
            clamp(48px,13vw,70px);

        letter-spacing:
            -4px;

    }


    .cta {

        min-height:
            500px;

    }


    .cta h2 {

        font-size:
            clamp(50px,14vw,75px);

        letter-spacing:
            -5px;

    }


    footer {

        min-height:
            150px;

        flex-direction:
            column;

        justify-content:
            center;

        gap: 18px;

        padding:
            30px 20px;

        text-align: center;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .browser-tab {

        min-width: 82px;

        font-size: 8px;

    }


    .hero h1 {

        font-size:
            48px;

    }


    .hero-video {

        width:
            200px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;

    }

}
