:root {
    --dark: #1d1d1f;
    --paragraph: #1d1d1fb3;
    --font_inter_tight: "Inter Tight", sans-serif;
    --font_instrument: "Instrument Sans", sans-serif;
    --font-wasted-year: "Wasted Year", sans-serif;
    --bg-dark: #000;
    --bg-secondary: #0a0a0a;
    --border-dark: #1f1f1f;
    --theme-color: #00ff005e;
}

@font-face {
    font-family: "Wasted Year";
    src: url("../fonts/WastedYearRegular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  

/* ======================================
*       TABLE OF CONTENT
*----------------------------------------
*   # Scrollbar Hidden
*   # Global
*   # Preloader
*   # Magic Cursor
*   # Scroll Indicator
*   # Hero
*   # Header
*   # Popup Menu
*   # Hamburger Menu
*   # Featured Work
*   # Work Detail
*   # About
*   # Partner
*   # Experience
*   # Experience Popup
*   # Motivation
*   # Full Image Section
*   # Experience2 Section
*   # CTA
*   # Contact
*   # Footer
*   # Animations
*   # Responsive Media Queries
========================================*/

/* ===== # Scrollbar Hidden ===== */
*::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* ===== # Global ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

a:hover {
    color: var(--dark);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: var(--font_inter_tight);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--paragraph);
    background: var(--bg-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main.luis-main {
    inset: 0px;
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: hidden;
}

.sticky-statement3,
.sticky-statement {
    position: relative;
}

a {
    text-decoration: none;
    color: #ffffff99;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    color: #ffffff;
}

.mt-30 {
    margin-top: 30px;
}

.custom-row {
    display: flex;
}

.theme-btn {
    font-size: 18px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    line-height: 20px;
    padding: 12px 19px;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #ffffff;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.theme-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #ffffff;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.theme-btn:hover {
    color: #000;
}

.theme-btn:hover::before {
    transform: translateY(0);
}

.theme-btn2 {
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px !important;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    line-height: 20px;
    padding: 14px 24px;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #ffffff;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.theme-btn2::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #000;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.theme-btn2:hover {
    color: #ffffff;
}

.theme-btn2:hover::before {
    transform: translateY(0);
}


.theme-btn3 {
    font-size: 18px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    line-height: 20px;
    padding: 12px 19px;
    overflow: hidden; 
    z-index: 1;
    border: 2px solid #ffffff;
    transition: color .3s ease;
}

.theme-btn3::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #ffffff;
    transform: translateY(100%);
    transition: transform .3s ease;
    border-radius: 40px;
}

.theme-btn3:hover {
    color: #000;
}

.theme-btn3:hover::before {
    transform: translateY(0);
}

.btn-plus-wrapper {
    position: relative;
    display: inline-block;
}

.btn-plus-wrapper .plus {
    position: absolute;
    top: -15px;
    right: -15px;
    font-family: "Wasted Year", sans-serif;
    font-size: 65px;
    color: #00ff00;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity .3s ease, transform .3s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 3;
}

.btn-plus-wrapper .theme-btn3:hover + .plus {
    opacity: 1;
    transform: scale(1);
}



.section-header {
    display: flex;
    padding: 140px 40px 0;
    align-items: flex-end;
}

.section-header .left,
.section-header .right {
    flex: 1;
}

.section-header h3 {
    font-size: 90px;
    letter-spacing: -2.3px;
    line-height: 80px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-header h3 span {
    line-height: 80px;
    display: block;
    overflow: hidden;
}

.section-header p {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    line-height: 34px;
}

.section-header2 .title span {
    display: block;
    line-height: 100px;
}

.section-header2 .title {
    font-size: 110px;
    margin: 0;
    letter-spacing: -3px;
    font-family: var(--font_instrument);
    line-height: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}

.responsive-mode {
    display: none;
}

/* ===== # Preloader ===== */
.preloader-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
}

.preloader-wrap .loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
}

/* ===== # Magic Cursor ===== */
#magic-cursor {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 10000;
    -webkit-transition: opacity 0.2s ease-in-out 0.5s;
    transition: opacity 0.2s ease-in-out 0.5s;
}

#ball {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #999999;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -20px;
    margin-top: -20px;
}

#ball.hovered {
    transition: opacity .3s;
    opacity: 0 !important;
}

#cursor-dot {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    mix-blend-mode: difference;
    z-index: 2;
}

#cursor-dot.pressed {
    transform: translate(-50%, -50%) scale(0.7);
}

/* ===== # Scroll Indicator ===== */
.scroll-indicator {
    position: fixed;
    right: 0;
    top: 0;
    width: 6px;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    mix-blend-mode: difference;
}

.scroll-indicator.visible {
    opacity: 1;
}

.scroll-indicator-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 0 4px #00000080, 0 0 8px #0000004d;
}

/* ===== # Hero ===== */
.hero-sec {
    height: 90vh;
    align-items: center;
    display: flex;
    flex: none;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-sec:has(.hero-footer-wrap.animated) {
    overflow: visible;
}

.hero-sec .hero-sec-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-sec .hero-sec-content h1 > span {
    overflow: hidden;
}

.available-status {
    display: inline-flex;
    text-transform: uppercase;
    position: relative;
    font-family: var(--font_instrument);
    margin: 0;
    color: #ffffffb3;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 20px;
    font-weight: 600;
    align-items: center;
    gap: 10px;
}

.available-status::after,
.available-status::before {
    content: '';
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    background: #00b803;
}

.available-status::after {
    position: absolute;
    left: 0;
    animation: onlineAnim 1s infinite linear;
}

.hero-sec .hero-sec-content h1 {
    font-size: 140px;
    font-family: var(--font_instrument);
    letter-spacing: -5px;
    line-height: 1.4em;
    font-weight: 700;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
}

.hero-sec .hero-sec-content h1 span {
    display: block;
    padding: 0 2px;
    line-height: 110px;
}

.hero-sec .hero-sec-content h1 .registered {
    position: absolute;
    top: -13%;
    right: 13%;
    font-family: 'Wasted Year', sans-serif;
    font-size: 0.25em;
    color: #ffffff;
    font-weight: 400;
    z-index: 9999;
    pointer-events: none;
}

.hero-sec .hero-footer-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.hero-sec .hero-footer-wrap.scroll-from-bottom {
    transform: translateY(30px);
}

.hero-sec .hero-footer-wrap.scroll-from-bottom.animated {
    transform: translateY(0);
}

.hero-sec .hero-footer-wrap .hero-footer-right a,
.hero-sec .hero-footer-wrap p {
    font-size: 17px;
    color: white;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font_instrument);
    letter-spacing: 0;
}

.hero-sec .hero-footer-wrap .hero-footer-right p.triathlete {
    font-family: var(--font-wasted-year);
    color: #00ff00b1;
    position: relative;
}

.hero-sec .hero-footer-wrap .hero-footer-right p.triathlete .triathlete-line {
    position: absolute;
    left: 29%;
    top: 10%;
    font-weight: 300;
    font-size: 2em;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-sec .hero-footer-wrap.animated .hero-footer-right p.triathlete .triathlete-line {
    opacity: 1;
    transition-delay: 0.6s;
}

.hero-sec .hero-footer-wrap .hero-footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-with-line {
    display: inline-block;
    position: relative;
}

.link-with-line::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.link-with-line:hover::before {
    width: 100%;
}

/* Hero sec 2 */
.hero-sec2 {
    height: 65vh;
}

.hero-sec2 .available-status::after,
.hero-sec2 .available-status::before {
    display: none;
}

.hero-sec2 .hero-sec-content {
    padding-bottom: 40px;
}

/* Hero sec 3 */
.hero-sec3 {
    height: auto;
    margin-bottom: 0;
    display: flex;
}

/* ===== # Header ===== */
.header-wrap {
    position: relative;
    z-index: 0;
    padding: 34px 40px;
    border-bottom: 1px solid #ffffff29;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.header-wrap::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: -1;

    background:
        radial-gradient(
            circle at 50% 0%,
            #222222,
            #000000 60%
        );

    transform-origin: center top;
    animation: breathe-x 10s ease-in-out infinite;
}

@keyframes breathe-x {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0.50);
    }
    100% {
        transform: scaleX(1);
    }
}


.header-wrap .custom-row {
    justify-content: space-between;
}

.header-wrap .header-local-time-box {
    text-transform: uppercase;
    color: #ffffff99;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 180px;
    flex: none;
    font-family: var(--font_instrument);
}

.header-wrap .header-local-time-box span {
    display: block;
}

.header-wrap .header-local-time-box #realtime {
    color: #ffffff;
    font-weight: 500;
    line-height: 1em;
}

.header-wrap .header-local-time-box a:first-child {
    position: relative;
    display: inline-block;
    padding-left: 4px;
    color: inherit;
}

.header-wrap .header-local-time-box a:first-child .wasted-slash {
    font-family: 'Wasted Year', sans-serif;
    font-weight: 400;
    display: inline;
    margin-left: 4px;
}

.nav-underline-svg {
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 12px);
    height: 20px;
    overflow: hidden;
    pointer-events: none;
}

.nav-underline-svg path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 0.7s ease;
}

.header-wrap .header-local-time-box a:first-child:hover {
    color: #ffffff;
}

.header-wrap .header-local-time-box a:first-child:hover .nav-underline-svg path,
.popup-menu-wrap .popup-menu-header .popup-home-box a:hover .nav-underline-svg path {
    stroke-dashoffset: 0;
}

.header-wrap .header-middle {
    width: 180px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-wrap .header-middle svg {
    transform: translateY(-5px) translateX(-5px);
}

.header-wrap .header-middle .contact-hover-circle {
    position: absolute;
    top: 55%;
    left: 89px;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 50px;
    stroke-dasharray: 92;
    stroke-dashoffset: 92;
    opacity: 0;
    transition: stroke-dashoffset 0.4s ease, opacity 0.3s ease;
    pointer-events: none;
}

.header-wrap .header-middle .humberg-menu:hover ~ .contact-hover-circle {
    opacity: 1;
    stroke-dashoffset: 0;
}

@keyframes drawCircle {
    0% {
        stroke-dashoffset: 92;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 809px) {
    .header-wrap .header-middle {
        position: absolute;
        left: 49%;
        top: 45px;
        transform: translateX(-50%);
        z-index: 10;
        justify-content: center;
    }
    .header-wrap .header-middle svg {
        transform: translateY(-5px) translateX(-5px);
    }
    .header-wrap .header-middle .contact-hover-circle {
        left: 8px;
        top: 11px;
        transform: translate(-50%, -50%);
    }

    /* Hide custom cursor on mobile */
    #magic-cursor,
    #ball,
    #cursor-dot {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }
}

.header-wrap .header-right {
    width: 180px;
    text-align: right;
}

/* ===== Header Animations ===== */
.code-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    color: #00ff88;
    text-shadow: 0 0 6px #00ff88, 0 0 12px #007a5e;
    white-space: nowrap;
    opacity: 1;
    animation: fadeTrail 1.2s ease forwards;
}

/* ===== # Popup Menu ===== */
.popup-menu-wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 1024;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 34px 0px 0px;
    overflow: hidden;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
}

.popup-menu-wrap.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.popup-menu-wrap .popup-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 40px;
    transform: translateY(-86px);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.popup-menu-wrap .popup-menu-header .popup-home-box {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--font_instrument);
    color: #ffffff99;
    display: flex;
    align-items: center;
    gap: 2px;
}

.arrow-left {
    font-family: var(--font-wasted-year);
    display: inline-block;
    transform: scaleX(-1);
    margin-right: 4px;
}

.popup-menu-wrap .popup-menu-header .popup-home-box a {
    position: relative;
    display: inline-block;
    color: inherit;
}

.popup-menu-wrap .popup-menu-header .popup-home-box a:hover {
    color: #ffffff;
}

.popup-menu-wrap .popup-menu-header > * {
    min-width: 220px;
}

.popup-menu-wrap .popup-menu-header .popup-menu-close-btn {
    text-align: center;
}

.popup-menu-wrap .popup-menu-header .right {
    text-align: right;
}

.experience-popup .experience-popup-content-wrap .close-experience-popup-btn,
.popup-menu-wrap .popup-menu-header .popup-menu-close-btn .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    border: 1px solid #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: auto;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.experience-popup .experience-popup-content-wrap .close-experience-popup-btn:hover,
.popup-menu-wrap .popup-menu-header .popup-menu-close-btn .icon:hover {
    transform: rotate(135deg);
}

.experience-popup .experience-popup-content-wrap .close-experience-popup-btn svg,
.popup-menu-wrap .popup-menu-header .popup-menu-close-btn .icon svg {
    display: block;
    width: 34px;
    height: 34px;
}

.popup-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-menu ul li {
    overflow: hidden;
}

.popup-menu ul li a {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    font-size: 120px;
    font-family: var(--font_instrument);
    letter-spacing: -3.2px;
    line-height: 90px;
    color: #ffffff;
    font-weight: 700;
    gap: 10px;
    height: 90px;
    text-transform: uppercase;
    padding: 0 18px;
    transform: translateY(100px);
    transition: .7s;
    -webkit-transition: .7s;
    -moz-transition: .7s;
    -ms-transition: .7s;
    -o-transition: .7s;
}

.popup-menu ul li a span {
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.popup-menu ul li a:hover span:nth-child(2) {
    margin-top: -100px;
}

.popup-menu ul li a .count {
    position: absolute;
    display: none;
    left: 0px;
    top: 3px;
    font-size: 14px; 
    font-weight: 600;
    font-family: var(--font-wasted-year);
    letter-spacing: 0;
    line-height: 1;
    opacity: 0.85;
}

.popup-menu ul li.active a .count {
    display: block !important;
}

.popup-menu ul li.active a {
    pointer-events: none;
    cursor: default;
}

.popup-menu ul li.active a span:nth-child(2),
.popup-menu ul li.active a span:nth-child(3) {
    opacity: 0.8;
}

.popup-menu ul li.active a {
    position: relative;
}

.popup-menu ul li.active a::after {
    content: "\F0E9";
    font-family: 'Wasted Year', sans-serif;
    position: absolute;
    left: -9px;
    top: 25px;
    transform: translateY(-50%);
    transform-origin: left center;
    font-size: 60px;
    color: #00ff00;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
}

/* Ajuste do scale para cada item do menu */
.popup-menu ul li:nth-child(1).active a::after {
    transform: translateY(-50%) scaleX(2.7);
}

.popup-menu ul li:nth-child(2).active a::after {
    transform: translateY(-50%) scaleX(4.9);
}

.popup-menu ul li:nth-child(3).active a::after {
    transform: translateY(-50%) scaleX(4.2);
}

.popup-menu-wrap.active .popup-menu ul li.active a::after {
    animation: strike 0.5s ease forwards;
    animation-delay: 1.2s;
}

@keyframes strike {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.popup-menu-wrap .popup-menu-footer {
    width: 100%;
    transform: translateY(80px);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.popup-menu-wrap .copyright {
    padding: 10px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.popup-menu-wrap .copyright p.copyright-text {
    min-width: inherit;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
}

.popup-menu-wrap.active .popup-menu-footer,
.popup-menu-wrap.active .popup-menu-header,
.popup-menu-wrap.active .popup-menu ul li a {
    transform: translateY(0);
    transition-delay: .5s;
}

.popup-menu-wrap.active .popup-menu ul li:nth-child(2) a {
    transition-delay: .6s;
}

.popup-menu-wrap.active .popup-menu ul li:nth-child(3) a {
    transition-delay: .7s;
}

.popup-menu-wrap.active .popup-menu ul li:nth-child(4) a {
    transition-delay: .8s;
}

.popup-menu-wrap.active .popup-menu ul li:nth-child(5) a {
    transition-delay: .9s;
}

/* ===== # Hamburger Menu ===== */
.humberg-menu {
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.humberg-menu:hover {
    transform: rotate(45deg);
}

.humberg-menu span {
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}

.humberg-menu span:nth-child(4),
.humberg-menu span:nth-child(3) {
    top: auto;
    bottom: 0;
}

.humberg-menu span:nth-child(4),
.humberg-menu span:nth-child(2) {
    left: auto;
    right: 0;
}

/* ===== # Featured Work ===== */
.featured-work-sec {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.featured-work-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: min-content;
    overflow: hidden;
    padding: 70px 25px 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.featured-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.featured-card .link-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.featured-card .img-box {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.featured-card .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.featured-card:hover .img-box img {
    transform: scale(1.1);
}

.featured-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 40px 22px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
    border-radius: 0 0 10px 10px;
}

.featured-card .content .title {
    font-size: 18px;
    margin: 0 0 4px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0;
    font-family: var(--font_instrument);
    text-transform: uppercase;
}

.featured-card .content .subtitle {
    margin: 0;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 18px;
    letter-spacing: 0;
    font-weight: 500;
    font-family: var(--font_instrument);
}

.featured-card .content .date {
    font-size: 13px;
    display: block;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 18px;
    margin: 0;
    border-radius: 30px;
    color: #ffffffbf;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

.featured-card.soon .matrix-box {
    position: relative;
    aspect-ratio: 16 / 10;
    background: black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.matrix-text {
    z-index: 2;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 20px;
}

.featured-card.soon {
    position: relative;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.featured-card.soon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #0f0, #00a336, #0f0);
    background-size: 400% 400%;
    animation: borderGlow 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.featured-card.soon:hover::before {
    opacity: 1;
}

/* ===== # Work Detail ===== */
.work-detail-header-infos {
    padding: 110px 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.work-detail-header-infos .work-detail-header-left p {
    line-height: 34px;
    font-size: 23px;
    font-weight: 500;
    color: #a3a3a3;
    letter-spacing: 0.4px;
    margin: 0;
    max-width: 580px;
}

.work-detail-header-infos .work-detail-header-left h1 {
    font-size: 50px;
    letter-spacing: -0.8px;
    font-weight: 700;
    font-family: var(--font_instrument);
    color: #ffffff;
    line-height: 50px;
    margin: 0 0 30px;
}

.work-detail-header-infos .work-detail-header-right {
    width: 556px;
    flex: none;
}

.work-detail-header-infos .work-detail-header-right ul li span:first-child {
    display: block;
    color: #949494;
}

.work-detail-header-infos .work-detail-header-right ul li span:last-child {
    text-align: right;
}

.work-detail-header-infos .work-detail-header-right ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
    font-family: var(--font_instrument);
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid #262626;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.work-detail-header-infos .work-detail-header-right ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.work-detail-header-infos .work-detail-header-right ul li a {
    display: inline-block;
    line-height: 20px;
    position: relative;
    color: #ffffff;
}

.work-detail-header-infos .work-detail-header-right ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.work-detail-header-infos .work-detail-header-right ul li a:hover {
    color: #ffffff;
}

.work-detail-header-infos .work-detail-header-right ul li a:hover::before {
    width: 100%;
}

.work-detail-full-img-wrap {
    padding: 60px 15px 30px;
}

.work-detail-full-img-wrap.work-detail-full-img-wrap2 {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-detail-full-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: auto;
    min-height: 400px;
    aspect-ratio: 16/9;
}

.work-detail-full-img .work-detail-full-img-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(1.0);
}

.work-detail-full-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-showcase-1 {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: auto;
    min-height: 500px;
    aspect-ratio: 16/10;
    margin-bottom: 30px;
}

.img-showcase-1 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-detail-full-img.full-width {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
}

.work-detail-full-img.large {
    min-height: 600px;
    aspect-ratio: 16/9;
}

.work-detail2-content-wrap {
    padding: 90px 40px;
    position: relative;
}

.work-detail2-content-wrap.work-detail2-content-wrap2 {
    padding: 60px 40px 90px 40px;
}

.work-detail2-content-wrap .work-detail2-content-box:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.work-detail2-content-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #262626;
    padding-bottom: 70px;
    margin-bottom: 70px;
}

.work-detail2-content-box h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    font-family: var(--font_instrument);
    font-weight: 600;
    color: #ffffff80;
    margin: 0;
    text-transform: uppercase;
}

.work-detail2-content-box p {
    font-size: 24px;
    letter-spacing: .4px;
    margin: 0;
    font-weight: 500;
    line-height: 34px;
    color: #fff;
    width: 700px;
    flex: none;
}

.work-detail-text-anim-wrap {
    overflow: hidden;
    padding: 80px 40px 30px;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, #000000 12.5%, #000000 87.5%, transparent 100%);
}

.work-detail-text-anim-wrap ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.work-detail-text-anim-wrap ul li {
    font-size: 90px;
    letter-spacing: -2.3px;
    font-weight: 700;
    line-height: 80px;
    text-transform: uppercase;
    font-family: var(--font_instrument);
    flex: none;
    color: #fff;
    transform: translateX(0);
    animation: workdetailsAnim 30s infinite linear;
}

.work-detail-text-anim-wrap ul li span {
    color: #ffffff80;
}

/* ===== # About ===== */
.about-sec {
    position: relative;
}

.about-sec .section-header2 {
    gap: 40px;
    height: 75vh;
    padding-bottom: 0px;
    position: sticky;
    top: 0;
    width: 100%;
    will-change: transform;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.about-sec .section-header2 h3 span {
    overflow: hidden;
    text-align: center;                      
    white-space: nowrap; 
}

.about-bottom-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-bottom-content-wrap .img-box {
    max-width: 504px;
    width: 100%;
    height: min-content;
    overflow: hidden;
    height: 720px;
    border-radius: 300px;
    aspect-ratio: .7 / 1;
}

.about-bottom-content-wrap .img-box2 {
    max-width: 504px;
    width: 100%;
    height: min-content;
    overflow: hidden;
    height: 720px;
    border-radius: 300px;
    aspect-ratio: .7 / 1;
    margin-top: -150px;
}

.about-bottom-content-wrap .img-box2 .img-box-inner {
    transform: scale(1.2);
}

.about-bottom-content-wrap .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-bottom-content-wrap .img-box .img-box-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(1.15);
}

.about-bottom-content-wrap .about-bottom-content {
    padding: 80px 40px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.about-bottom-content-wrap .about-bottom-content h4 {
    font-family: var(--font_instrument);
    font-weight: 700;
    margin: 0;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 40px;
    color: #ffffff;
}

.about-bottom-content-wrap .about-bottom-content h4 .wasted-dot {
    font-family: 'Wasted Year', sans-serif;
    font-weight: 400;
    color: #00ff00b1;
}

.about-bottom-content-wrap .about-bottom-content p {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.4px;
    line-height: 34px;
    color: #ffffff;
    margin-bottom: 10px;
    max-width: 922px;
    margin-left: auto;
    margin-right: auto;
}

.about-bottom-content-wrap .about-bottom-content p i {
    font-weight: 600;
}

/* ===== # Circle Word ===== */
.circle-word {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.circle-word .circle-text-svg {
    position: absolute;
    top: -5%;
    left: 10%;
    width: 80%;
    height: 120%;
    transform: scale(1.95) rotate(-3deg);
    pointer-events: none;
    z-index: 2;
}

.circle-word .circle-text-svg path {
    stroke-dasharray: 750;
    stroke-dashoffset: 750;
    transition: stroke-dashoffset 1.2s ease;
}

.circle-word.in-view .circle-text-svg path {
    stroke-dashoffset: 0;
}

/* ===== # Underline Word ===== */
.underline-word {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.underline-word .underline-svg {
    position: absolute;
    left: -7px;
    top: 80%;
    transform: translateY(-35%);
    width: calc(100% + 20px);
    height: 20px;
    overflow: hidden;
    pointer-events: none;
}

.underline-word .underline-svg path {
    stroke-dasharray: 1184;
    stroke-dashoffset: 1184;
    transition: stroke-dashoffset 1.2s ease;
}

.underline-word.in-view .underline-svg path {
    stroke-dashoffset: 0;
}

.cta-sec .underline-word .underline-svg {
    left: -20px;
    top: 115%;
    transform: translateY(-50%);
    width: calc(100% + 30px);
    height: 30px;
}

/* ===== # Sticky Underline ===== */
.sticky-underline-svg {
    position: absolute;
    left: -10px;
    bottom: -12px;
    width: calc(100% + 20px);
    height: 20px;
    overflow: hidden;
    pointer-events: none;
}

.sticky-underline-svg path {
    stroke-dasharray: 646;
    stroke-dashoffset: 646;
    transition: stroke-dashoffset 0.8s ease;
}

.sticky-statement3 .sticky-underline-svg {
    left: 5px;
}

.sticky-statement.sticky-active .sticky-underline-svg path,
.sticky-statement3.sticky-active .sticky-underline-svg path {
    stroke-dashoffset: 0;
}

/* ===== # Partner ===== */
.partner-sec {
    mask-image: linear-gradient(to right, transparent 0%, #000000 10%, #000000 90%, transparent 100%);
    overflow: hidden;
    padding: 40px 10px 100px 10px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.partner-sec .partner-track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
    width: fit-content;
    pointer-events: none;
}

.partner-sec .partner-track img {
    -webkit-user-drag: none;
    user-drag: none;
}

.partner-sec .partner-track .partner-item {
    flex: none;
    width: 230px;
    height: 230px;
}

.partner-box {
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.partner-box .partner-box-inner {
    width: 140px;
    height: 140px;
    display: block;
}

.partner-sec .partner-track .partner-item:nth-child(even) .partner-box {
    transform: rotate(4deg);
}

.partner-sec .partner-track .partner-item:nth-child(odd) .partner-box {
    transform: rotate(-4deg);
}

.partner-box .partner-box-inner.w85 {
    width: 85px;
    height: 85px;
}

/* ===== # Experience ===== */
.experience-sec {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 80px;
    padding: 30px 40px 30px 40px;
    position: relative;
}

.experience-sec .section-header {
    padding: 0;
}

.experience-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.experience-box {
    background: var(--bg-secondary);
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 30px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.experience-box .experience-button-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.experience-box .experience-button-box .experience-button {
    width: 50px;
    height: 50px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
    border: 1px solid #1d1d1d;
    border-radius: 50%;
    font-size: 18px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.experience-box .experience-button-box .experience-button:hover {
    background: #ffffff;
}

.experience-box .experience-button-box .experience-button svg {
    display: block;
    width: 35px;
    height: 35px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.experience-box .experience-button-box .experience-button:hover svg {
    transform: rotate(90deg);
    color: #0a0a0a;
}

.experience-box h4 {
    display: flex;
    flex-direction: column;
    font-family: var(--font_instrument);
    gap: 18px;
}

.experience-box h4 > span {
    letter-spacing: 2.4px;
    font-size: 16px;
    font-weight: 700;
}

.experience-box h4 > span.exp-number {
    font-family: 'Wasted Year', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    color: #ffffff;
}

.experience-box h4 > span:last-child {
    font-size: 30px;
    letter-spacing: -0.2px;
    line-height: 26px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.experience-box p {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin: 0;
    color: #ffffff80;
    font-weight: 500;
    line-height: 31px;
}

.experience-lists2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ===== # Experience Popup ===== */
.experience-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000080;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.experience-popup .experience-popup-content-wrap {
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 80px;
    border-radius: 20px;
    border: 1px solid #262626;
    box-shadow: 0 30px 60px #0000004d;
    width: 500px;
    max-width: 90vw;
    position: relative;
    transform: translateY(100%);
    transition: .5s;
}

.experience-popup.active {
    opacity: 1;
    visibility: visible;
}

.experience-popup.active .experience-popup-content-wrap {
    transform: translateY(0);
}

.experience-popup .experience-popup-content-wrap .close-experience-popup-btn {
    position: absolute;
    right: 25px;
    top: 25px;
}

.experience-popup .experience-popup-content-wrap .popup-number {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff40;
    margin-bottom: 20px;
    font-family: var(--font_instrument);
}

.experience-popup .experience-popup-content-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-family: var(--font_instrument);
    color: #ffffff;
}

.experience-popup .experience-popup-content-wrap p {
    color: #ffffff80;
    line-height: 1.3;
    letter-spacing: 0.3px;
    font-weight: 500;
    font-family: var(--font_instrument);
    font-size: 18px;
    margin: 0 0 30px;
    max-width: 380px;
}

.experience-popup .experience-popup-content-wrap .experience-popup-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.experience-popup .experience-popup-content-wrap .experience-popup-features span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font_instrument);
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #ffffff10;
    border: 1px solid #ffffff20;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.experience-popup .experience-popup-content-wrap .experience-popup-features span:hover {
    background: #ffffff20;
    border-color: #ffffff40;
}

/* ===== # Motivation ===== */
.motivation-sec {
    padding: 120px 40px 30px 40px;
}

.experience2-sec .custom-row,
.motivation-sec .custom-row {
    justify-content: space-between;
}

.experience2-sec .left h3,
.motivation-sec .left h3 {
    font-size: 50px;
    letter-spacing: -0.8px;
    font-weight: 700;
    line-height: 57px;
    margin: 0;
}

.motivation-sec .motivation-content {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.motivation-sec .motivation-content::before {
    content: "\201C";
    font-family: 'Wasted Year', sans-serif;
    position: absolute;
    left: -70px;
    top: -20px;
    font-size: 100px;
    color: #00ff00;
    opacity: 0.8;
    line-height: 1;
}

.motivation-sec .motivation-content::after {
    content: "\201D";
    font-family: 'Wasted Year', sans-serif;
    position: absolute;
    right: -35px;
    bottom: -75px;
    font-size: 100px;
    color: #00ff00;
    opacity: 0.8;
    line-height: 1;
}

.motivation-sec .motivation-content p {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.4px;
    font-weight: 500;
    line-height: 34px;
    color: #ffffff;
}

.motivation-sec .motivation-content p i {
    font-weight: 600;
}

.motivation-sec .motivation-content img {
    max-width: 188px;
    display: block;
}

/* ===== # Full Image Section ===== */
.full-image-sec {
    padding: 100px 20px 0;
    margin-bottom: 30px;
    position: relative;
}

.full-image-sec.pt-30 {
    padding-top: 30px;
}

.full-image-box {
    height: 100vh;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.full-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 2560px) {
    .full-image-box {
        height: auto;
        aspect-ratio: 16/9;
    }
    .full-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ===== # Gallery Marquee ===== */
.gallery-marquee-sec {
    padding: 100px 0;
    overflow: hidden;
}

.gallery-marquee-sec--spaced {
    padding-top: 230px;
}

.gallery-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: clamp(15px, 1.56vw, 30px);
}

.gallery-marquee__track {
    display: flex;
    gap: clamp(15px, 1.56vw, 30px);
    will-change: transform;
}

.gallery-marquee__item {
    flex-shrink: 0;
    width: max(250px, 21vw);
    aspect-ratio: 577 / 467;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== # Experience2 Section ===== */
.experience2-sec {
    padding: 120px 40px 0;
    position: relative;
}

.experience2-sec:not(:last-of-type)::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #262626;
}

.experience2-sec .left {
    position: relative;
}

.experience2-sec .left h3 {
    position: sticky;
    top: 0;
}

.experience2-sec .experience2-lists {
    width: 846px;
}

.experience2-sec .experience2-lists .experience2-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.experience2-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #262626;
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.experience2-box .experience2-box-header {
    font-size: 30px;
    letter-spacing: -0.6px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font_instrument);
    line-height: 30px;
    margin: 0;
}

.experience2-box .experience2-box-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience2-box .experience2-box-body h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    line-height: 20px;
    letter-spacing: 0.2px;
    margin: 0;
    font-family: var(--font_instrument);
    font-weight: 700;
}

.experience2-box .experience2-box-body p {
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 31px;
    font-weight: 500;
    color: #ffffff99;
    max-width: 623px;
}

/* ===== # CTA ===== */
.cta-sec {
    padding: 110px 40px 80px;
}

.cta-sec .section-header2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.cta-content .about-bottom-content p {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    letter-spacing: 0;
    font-family: var(--font_instrument);
    margin: 0;
}

.cta-content.about-bottom-content-wrap .about-bottom-content {
    gap: 34px;
}

.cta-content.about-bottom-content-wrap .about-bottom-content {
    padding: 60px 0 0 0;
}

.cta-content.about-bottom-content-wrap .img-box {
    max-width: 340px;
    height: 506px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.social-links li a {
    display: flex;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    font-family: var(--font_instrument);
}

.copyright #back-to-top::before,
.social-links li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.social-links li a:hover::before {
    width: calc(100% - 24px);
}

.social-links li a svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transform: rotate(45deg);
}

/* ===== # Hello Marquee ===== */
.hello-marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 80px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    padding: 70px 0;
}

.hello-marquee__track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    align-items: center;
}

.hello-marquee__track--running {
    animation: helloMarqueeScroll var(--marquee-duration, 20s) linear infinite;
}

@keyframes helloMarqueeScroll {
    from { transform: translate3d(var(--marquee-distance), 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
}

.hello-marquee__track span,
.hello-marquee__track i {
    flex-shrink: 0;
    line-height: 1;
    color: #ffffff;
}

.hello-marquee__track span {
    font-family: var(--font_instrument);
    font-size: clamp(50px, 7vw, 120px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0 0.4em;
}

.hello-marquee__track i {
    font-family: 'Wasted Year', sans-serif;
    font-style: normal;
    font-size: clamp(20px, 2.5vw, 45px);
    display: flex;
    align-items: center;
}

/* ===== # Contact ===== */
.contact-sec {
    padding: 0 40px 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    overflow: visible;
}

.contact-sec .contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: visible;
}

.contact-sec .btn-wrap {
    position: relative;
    overflow: visible;
    margin-top: 30px;
}

.contact-sec .contact-form-wrap .contact-header p {
    color: #ffffff99;
    line-height: 34px;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin: 0;
    text-align: center;
}

.contact-sec .contact-svg-hidden .underline-svg,
.contact-sec .contact-svg-hidden .circle-text-svg {
    opacity: 0;
}

.contact-form {
    overflow: visible;
}

.contact-form #ajax-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
}

.contact-form #ajax-form textarea,
.contact-form #ajax-form input {
    font-weight: 500;
    font-size: 18px;
    background: transparent;
    color: #fff;
    font-family: var(--font_instrument) !important;
    line-height: 1.4em;
    padding: 24px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #333;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact-form #ajax-form textarea::placeholder,
.contact-form #ajax-form input::placeholder {
    transition: color 0.3s ease;
}

.contact-form #ajax-form #result {
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Wasted Year', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-sec.contact-centered {
    justify-content: center;
    overflow: visible;
}

.contact-sec.contact-centered .contact-form-wrap {
    max-width: 700px;
    width: 100%;
    overflow: visible;
}

.form-message {
    color: #ffffff;
    font-family: 'Wasted Year', sans-serif;
}

.form-message.success {
    color: #22c55e;
}

.form-message.error {
    color: #ef4444;
}

.form-message.info {
    color: #60a5fa;
}

.contact-form #ajax-form textarea:focus,
.contact-form #ajax-form input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.contact-form #ajax-form textarea:focus::placeholder,
.contact-form #ajax-form input:focus::placeholder {
    color: #ffffff;
}

.contact-form #ajax-form textarea {
    height: 144px;
}

.contact-infos-wrap {
    padding: 0 80px;
}

.contact-sec .contact-img {
    width: 655px;
    flex: none;
    overflow: hidden;
    border-radius: 10px;
    height: 753px;
}

.contact-sec .contact-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.contact-infos-wrap .contact-infos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
}

/* Social (1º) - esquerda */
.contact-info-box:nth-child(1) {
    text-align: left;
    justify-self: start;
}

/* Email (2º) - centro */
.contact-info-box:nth-child(2) {
    text-align: center;
    justify-self: center;
}

/* Location (3º) - direita */
.contact-info-box:nth-child(3) {
    text-align: right;
    justify-self: end;
}

.contact-info-box:nth-child(3) ul {
    align-items: flex-end;
}

.contact-info-box h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 0 0 26px;
    color: #949494;
    text-transform: uppercase;
    font-family: var(--font_instrument);
}

.contact-info-box ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-box ul li {
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    line-height: 20px;
    font-family: var(--font_instrument);
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-box ul li > span {
    width: 50px;
    flex: none;
}

.contact-info-box ul li a {
    color: #ffffff;
    position: relative;
    display: inline-block;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.contact-info-box ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.contact-info-box ul li a:hover::before {
    width: 100%;
}

/* ===== # Footer ===== */
.footer-area {
    padding: 70px 0 0;
}

.work-page .footer-area {
    padding-top: 120px;
}

.footer-area .footer-big-text {
    text-transform: uppercase;
    font-size: 201px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1.2px;
    line-height: 150px;
    text-align: center;
    font-family: var(--font_instrument);
    font-weight: 700;
    color: #ffffff;
    overflow: hidden;
}

.footer-area .footer-big-text > span {
    position: relative;
}

.footer-area .footer-big-text .registered {
    position: absolute;
    top: -35%;
    right: -2%;
    font-family: 'Wasted Year', sans-serif;
    font-size: 0.15em;
    font-weight: 400;
    color: #ffffff;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 40px;
}

.copyright p {
    min-width: 286px;
    flex: none;
    text-align: left;
    color: #ffffff;
}

.copyright #back-to-top,
.copyright p {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    font-family: var(--font_instrument);
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
}

.copyright p.copyright-text {
    font-family: var(--font-wasted-year);
    font-size: 16px;      
    font-weight: 600;    
    line-height: 20px;     
    color: #ffffff;      
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}


.copyright .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.copyright #back-to-top {
    display: block;
    position: relative;
}

.copyright #back-to-top:hover::before {
    width: 100%;
}

/* ===== # Page Transition Overlay ===== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 1050;
    transform: translateY(-100%);
    pointer-events: none;
    will-change: transform;
}

/* ===== # Animations ===== */
@keyframes workdetailsAnim {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-2482px);
    }
}

@keyframes onlineAnim {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== # Responsive Media Queries ===== */
@media (max-width: 1439px) {
    .popup-menu ul li a {
        font-size: 80px;
        line-height: 70px;
        height: 70px;
    }
    .popup-menu ul li a:hover span:nth-child(2) {
        margin-top: -80px;
    }
    .popup-menu ul li.active a::after {
        font-size: 40px;
        top: 22px;
        left: -6px;
    }
    .popup-menu ul li:nth-child(1).active a::after {
        transform: translateY(-50%) scaleX(2.8);
    }
    .popup-menu ul li:nth-child(2).active a::after {
        transform: translateY(-50%) scaleX(4.9);
    }
    .popup-menu ul li:nth-child(3).active a::after {
        transform: translateY(-50%) scaleX(4.2);
    }
    .hero-sec .hero-sec-content h1 {
        font-size: 90px;
        letter-spacing: -4px;
        line-height: 70px;
    }
    .hero-sec .hero-sec-content h1 span {
        line-height: 70px;
    }
    .featured-work-sec .section-header {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .featured-work-sec .section-header .right {
        display: none;
    }
    .featured-work-lists {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-bottom-content-wrap .img-box {
        aspect-ratio: unset;
        height: 969px;
        max-width: 638px;
    }
    .about-bottom-content-wrap .about-bottom-content h4 br {
        display: none;
    }
    .experience-lists2,
    .experience-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .experience2-sec .custom-row,
    .motivation-sec .custom-row {
        gap: 74px;
    }
    .experience2-sec .right {
        flex: 1;
    }
    .experience2-sec .experience2-lists {
        width: 100%;
    }
    .experience2-box .experience2-box-body p,
    .motivation-sec .motivation-content {
        max-width: 100%;
    }
    .experience2-sec .left h3,
    .motivation-sec .left h3 {
        font-size: 30px;
        letter-spacing: -0.8px;
        line-height: 30px;
    }
    .motivation-sec .motivation-content::before {
        left: -49px;
        top: -12px;
        font-size: 70px;
    }
    .motivation-sec .motivation-content::after {
        right: 15px;
        bottom: -50px;
        font-size: 70px;
    }
    .cta-sec {
        padding-bottom: 40px;
    }
    .footer-area .footer-big-text {
        font-size: 116px;
        letter-spacing: -3.2px;
        line-height: 110px;
    }
    .footer-area .footer-big-text .registered {
        top: -27%;
    }
    .footer-area {
        padding-top: 30px;
    }
    .hero-sec2 {
        height: 60vh;
    }
    .contact-sec {
        flex-direction: column;
        height: auto;
    }
    .contact-sec .contact-form-wrap {
        width: 100%;
    }
    .contact-sec .contact-img {
        width: 100%;
    }
    .contact-infos-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }
    .work-detail2-content-box,
    .work-detail-header-infos,
    .contact-info-box ul li {
        flex-direction: column;
        align-items: flex-start;
    }
    .work-detail-header-infos {
        gap: 74px;
    }
    .work-detail-header-infos .work-detail-header-left p {
        max-width: 100%;
    }
    .work-detail-header-infos .work-detail-header-right {
        width: 100%;
    }
    .work-detail2-content-box {
        gap: 24px;
    }
    .work-detail2-content-box p {
        color: #fff;
        width: 100%;
    }
    .work-detail2-content-box h4 {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 0;
        color: #ffffff80;
    }
    .work-detail2-content-wrap {
        padding-top: 70px;
    }
    .work-detail-text-anim-wrap {
        padding-bottom: 0;
    }
}

@media (max-width: 809px) {
    .scroll-indicator {
        display: none;
    }

    main.luis-main {
        position: relative;
        overflow: initial;
    }
    .popup-menu ul li a {
        font-size: 40px;
        letter-spacing: -1.3px;
        line-height: 30px;
        height: 30px;
    }
    .popup-menu ul li a:hover span:nth-child(2) {
        margin-top: -40px;
    }
    .popup-menu ul li.active a::after {
        font-size: 20px;
        top: 8px;
        left: -3px;
    }
    .popup-menu ul li:nth-child(1).active a::after {
        transform: translateY(-50%) scaleX(3);
    }
    .popup-menu ul li:nth-child(2).active a::after {
        transform: translateY(-50%) scaleX(5.2);
    }
    .popup-menu ul li:nth-child(3).active a::after {
        transform: translateY(-50%) scaleX(4.4);
    }
    .popup-menu-wrap .popup-menu-header {
        justify-content: center;
    }
    .popup-menu-wrap .popup-menu-header .right,
    .popup-menu-wrap .popup-menu-header .popup-home-box {
        display: none;
    }
    .header-wrap {
        padding: 36px 25px;
    }
    .header-wrap .header-middle,
    .header-wrap .header-right {
        flex: none;
        width: auto;
    }
    .header-wrap .header-local-time-box {
        width: 82px;
        display: flex;
    }
    .header-wrap .header-local-time-box #realtime {
        display: block;
    }
    .header-wrap .theme-btn {
        background: none;
        color: #ffffff;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0px;
        padding: 10px 12px;
    }
    .header-wrap .theme-btn:hover,
    .header-wrap .theme-btn:active {
        background: #ffffff;
        color: #000000;
    }
    .hero-sec .hero-sec-content h1 {
        font-size: 50px;
        letter-spacing: -2px;
        line-height: 40px;
    }
    .hero-sec .hero-sec-content h1 span {
        line-height: 40px;
    }
    .hero-sec .hero-sec-content h1 .registered {
        font-size: 0.3em;
    }
    .available-status {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .hero-sec .hero-sec-content {
        gap: 16px;
        margin-bottom: auto;
    }
    .hero-sec {
        height: 50vh;
        gap: 100px;
    }
    .hero-sec .hero-footer-wrap {
        display: none;
    }
    .section-header {
        padding: 60px 40px 0;
    }
    .section-header h3 {
        font-size: 40px;
        letter-spacing: -1.3px;
        line-height: 30px;
    }
    .section-header h3 span {
        line-height: 30px;
    }
    .featured-work-sec {
        margin-bottom: 30px;
    }
    .featured-work-lists {
        grid-template-columns: repeat(1, 1fr);
    }
    .section-header2 .title {
        font-size: 40px;
        letter-spacing: -1.3px;
        line-height: 30px;
        gap: 16px;
    }
    .section-header2 .title span {
        line-height: 30px;
    }
    .about-sec .section-header2 {
        height: min-content;
        padding: 80px 0;
        position: relative;
    }
    .about-bottom-content-wrap .img-box {
        max-width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
        height: 1170px;
    }
    .about-bottom-content-wrap .about-bottom-content {
        padding: 70px 25px 60px;
    }
    .about-bottom-content-wrap .about-bottom-content h4 {
        font-size: 24px;
        line-height: 28px;
    }
    .header-wrap .header-local-time-box #realtime,
    .header-wrap .header-local-time-box a:first-child .wasted-slash,
    .experience-box .experience-button-box,
    .about-bottom-content-wrap .about-bottom-content p {
        display: none;
    }
    .about-bottom-content-wrap .about-bottom-content .responsive-mode,
    .about-bottom-content-wrap .about-bottom-content h4 br {
        display: block;
    }
    .experience2-sec .custom-row, .motivation-sec .custom-row {
        flex-direction: column;
        gap: 60px;
    }
    .experience2-sec .left h3, .motivation-sec .left h3 {
        font-size: 40px;
        letter-spacing: -0.8px;
        line-height: 40px;
        display: inline-block;
    }
    .sticky-underline-svg {
        bottom: -20px;
    }
    .cta-sec .underline-word .underline-svg {
        top: 130%;
    }
    .motivation-sec .motivation-content::before {
        left: -10px;
        top: -40px;
        font-size: 60px;
    }
    .motivation-sec .motivation-content::after {
        right: -10px;
        bottom: -40px;
        font-size: 60px;
    }
    .experience-sec {
        padding: 30px 20px 0;
        gap: 50px;
    }
    .motivation-sec {
        padding: 110px 30px 0;
    }
    .full-image-box {
        height: 548px;
    }
    .full-image-sec {
        padding: 80px 15px 0;
    }
    .gallery-marquee-sec {
        padding: 60px 0;
    }
    .gallery-marquee-sec--spaced {
        padding-top: 120px;
    }
    .experience2-sec {
        padding: 90px 30px 0;
    }
    .experience2-box .experience2-box-body h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cta-sec .section-header2 .title span {
        line-height: 45px;
    }
    .cta-sec {
        padding: 50px 20px 20px;
    }
    .cta-sec .about-bottom-content-wrap .about-bottom-content p {
        display: block;
    }
    .cta-sec .section-header2 .title {
        font-size: 50px;
        line-height: 45px;
        letter-spacing: -1.3px;
    }
    .cta-sec .about-bottom-content-wrap .about-bottom-content p br:nth-child(1) {
        display: none;
    }
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    .footer-area .footer-big-text {
        font-size: 50px;
        line-height: 53px;
        letter-spacing: -1.2px;
    }
    .footer-area .footer-big-text .registered {
        top: -27%;
    }
    .copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 30px 40px 56px;
    }
    .copyright p {
        text-align: center;
    }
    .work-page .featured-work-lists {
        padding: 0 20px;
    }
    .work-page .footer-area {
        padding-top: 50px;
    }
    .contact-infos-wrap .contact-infos {
        grid-template-columns: repeat(1, 1fr);
        gap: 60px;
    }
    .hero-sec3 {
        height: auto;
    }
    .contact-sec {
        padding: 60px 20px 40px;
    }
    .contact-sec .contact-form-wrap .contact-header h2 {
        font-size: 40px;
        line-height: 44px;
    }
    .contact-sec .contact-form-wrap .contact-header h2 .contact-decoration,
    .contact-sec .btn-wrap .contact-decoration-bottom {
        display: none;
    }
    .contact-infos-wrap {
        padding: 20px;
    }
    .contact-infos-wrap .contact-infos {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .work-detail-text-anim-wrap ul li {
        font-size: 50px;
        line-height: 40px;
        letter-spacing: -2.3px;
        animation: workdetailsAnim2 30s infinite linear;
    }
    .work-detail2-content-wrap {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0;
    }
    .work-detail2-content-box {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    .work-detail-full-img-wrap {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 50px;
    }
    .work-detail-full-img {
        min-height: 300px;
        aspect-ratio: 4/3;
    }
    .img-showcase-1 {
        min-height: 250px;
        aspect-ratio: 4/3;
    }
    .work-detail-full-img.full-width {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }
    .work-detail-full-img.large {
        min-height: 350px;
    }
    .work-detail2-content-wrap.work-detail2-content-wrap2,
    .work-detail-header-infos {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 585px) {
    .contact-sec .contact-img,
    .cta-content.about-bottom-content-wrap .img-box,
    .about-bottom-content-wrap .img-box {
        height: 516px;
    }
}

@keyframes workdetailsAnim2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1343px);
    }
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 768px) {
    .see-more-button {
        margin-bottom: 10px !important;
    }
    
    .about-sec {
        padding-top: 30px !important;
        padding-bottom: 0 !important;
    }

    .about-bottom-content-wrap .img-box2 {
        margin-top: -30px !important;
        max-width: 340px;
        height: 506px;
    }

    .awards-sec {
        margin-bottom: 40px !important;
        padding-bottom: 0 !important;
    }
    
    .awards-sec .section-header {
        margin-bottom: 20px !important;
    }
    
    .awards-sec .award-card:last-child {
        margin-bottom: 0 !important;
    }

    .header-local-time-box {
        display: flex;
        visibility: visible;
        opacity: 1;
    }

    .header-local-time-box span:first-child {
        display: block;
    }

    .header-local-time-box #realtime {
        display: none;
    }
}