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

body {
    position: relative;
    background-color: #0a0a0a;
    overflow-x: clip;
}

html {
    scroll-behavior: auto;
    overflow-x: clip;
}

::-webkit-scrollbar {
    width: 8px;
    display: none;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/GeneralSans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/GeneralSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/GeneralSans-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/GeneralSans-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('../fonts/GeneralSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hoves';
    src: url('../fonts/Hoves.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

body,
button,
input,
textarea,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
label {
    font-family: 'General Sans', sans-serif;
}



/* --------------------------- Page Transition Overlay --------------------------- */



html.page-transition-initial body {
    background-color: #080808 !important;
}

html.page-transition-initial .page-transition-overlay {
    transform: translate3d(0, 0%, 0) !important;
    pointer-events: auto !important;
    transition: none !important;
}

html.page-transition-initial .page-transition-title {
    opacity: 1 !important;
    transition: none !important;
}

html.page-transition-initial .works-hero-heading,
html.page-transition-initial .works-hero-sub,
html.page-transition-initial .works-controls-bar,
html.page-transition-initial .projects-table-head,
html.page-transition-initial .stacks-hero-title,
html.page-transition-initial .stacks-hero-subtitle,
html.page-transition-initial .experiences-hero-heading,
html.page-transition-initial .experiences-hero-sub,
html.page-transition-initial .contact-page-heading,
html.page-transition-initial .project-sidebar-title,
html.page-transition-initial .project-sidebar-desc,
html.page-transition-initial .project-sidebar-cta,
html.page-transition-initial .project-sidebar-meta,
html.page-transition-initial .project-gallery-card,
html.page-transition-initial .project-grid-card,
html.page-transition-initial .next-case-section,
html.page-transition-initial .thankyou-title,
html.page-transition-initial .thankyou-subtitle {
    transform: translate3d(0, 200px, 0) !important;
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    width: 100vw;
    width: 100dvw;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate3d(0, 100%, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    visibility: hidden;
    cursor: wait !important;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    overscroll-behavior: none;
}

.page-transition-overlay * {
    cursor: wait !important;
}

html.page-transition-initial .page-transition-overlay,
.page-transition-overlay.active {
    visibility: visible;
    pointer-events: auto;
    touch-action: none;
    overscroll-behavior: none;
}

.page-transition-bg {
    position: absolute;
    inset: 0;
    background: #080808;
    z-index: 1;
}

.page-transition-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    fill: #080808;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.page-transition-svg-top {
    top: -119px;
}

.page-transition-svg-bottom {
    bottom: -119px;
}

.page-transition-title {
    position: relative;
    z-index: 2;
    font-family: 'General Sans', sans-serif;
    font-size: clamp(20px, 5.5vw, 64px);
    font-weight: 500;
    color: #ffffff;
    opacity: 1;
    pointer-events: none;
    padding: 0 24px;
    text-align: center;
    line-height: 1.2;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: transform, opacity;
}



/* --------------------------- Preloader --------------------------- */



html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

body.no-scroll #header * {
    animation-play-state: paused !important;
}

html.skip-preloader #preloader {
    display: none !important;
}

html.skip-preloader body #header * {
    animation-play-state: running !important;
}

#preloader {
    position: fixed;
    inset: 0;
    background-color: #080808;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
    overflow: visible;
    cursor: wait !important;
}

#preloader * {
    cursor: wait !important;
}

#preloader.slide-up {
    transform: translateY(-100%);
}

.preloader-curve-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    fill: #080808;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.preloader-curve-svg-bottom {
    bottom: -119px;
}

.preloader-center-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    pointer-events: none;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.preloader-center-message.reveal {
    opacity: 1;
    visibility: visible;
}

.preloader-title-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
    text-align: center;
}

.preloader-sub-text {
    display: inline-block;
    font-family: 'General Sans', sans-serif;
    font-size: clamp(23px, 1.8vw, 20px);
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.preloader-main-text {
    display: inline-block;
    font-family: 'General Sans', sans-serif;
    font-size: clamp(44px, 8.5vw, 92px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 4px;
    line-height: 1.05;
}

.preloader-center-message .letter-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 4px;
    margin-bottom: -4px;
}

.preloader-center-message .letter {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.preloader-center-message.reveal .letter {
    transform: translateY(0%);
}

.preloader-circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader-circle-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preloader-circle-bar {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 596.9 596.9;
    stroke-dashoffset: 596.9;
    will-change: stroke-dashoffset;
}

.preloader-circle-counter {
    font-family: 'General Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counter-char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.counter-char {
    display: inline-block;
    transform: translateY(0%);
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    transition-delay: calc(var(--i) * 35ms);
    will-change: transform;
}

.preloader-circle-counter.unreveal .counter-char {
    transform: translateY(-120%);
}

.preloader-circle-container.unreveal {
    opacity: 0;
    transition: opacity 0.4s ease;
}



/* --------------------------- Header --------------------------- */



#header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-color: #000000;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.928) 85%,
            transparent 100%);
}

.hero-glow {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeInGlow 2s ease-out both;
    animation-delay: 0.3s;
}

.hero-cutout {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 95%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: heroFloatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0s;
}

.hero-fade-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(to bottom,
            transparent 85%,
            #0a0a0a14 90%,
            #0a0a0a 100%);
}

.hero-narrative {
    position: absolute;
    top: 78%;
    right: clamp(130px, 14vw, 270px);
    transform: translateY(0);
    z-index: 6;
    text-align: left;
    max-width: clamp(260px, 20vw, 350px);
    pointer-events: none;
}

.hero-narrative p {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(15px, 1.2vw, 20.5px);
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 0;
    animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.narrative-arrow {
    display: none;
}

.hero-location {
    position: absolute;
    top: 78%;
    left: clamp(130px, 14vw, 270px);
    z-index: 6;
    text-align: left;
    pointer-events: none;
    will-change: transform;
}

.hero-location p {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(15px, 1.2vw, 20.5px);
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 0;
    animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.location-arrow {
    display: none;
}

.logo {
    position: fixed;
    top: 33px;
    left: 45px;
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
    z-index: 1100;
    text-shadow: 0 2px 3px rgb(0, 0, 0);
    opacity: 0;
    animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

.magnetic-wrap {
    padding: 20px;
    margin: -20px;
    cursor: pointer;
}

.magnetic-inner {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.word-built {
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    max-width: 80px;
    margin-right: 5px;
    transform: translateX(0);
    opacity: 1;
    transition: max-width 0.5s cubic-bezier(0.76, 0, 0.24, 1),
        margin 0.5s cubic-bezier(0.76, 0, 0.24, 1),
        transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 0.4s ease;
}

.magnetic-wrap:hover .word-built {
    max-width: 0px;
    margin-right: 0px;
    transform: translateX(-5px);
}

.word-foronda {
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0px;
    transition: max-width 0.5s cubic-bezier(0.76, 0, 0.24, 1), margin 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.magnetic-wrap:hover .word-foronda {
    max-width: 80px;
    margin-left: 5px;
}

.navbar {
    z-index: 1000;
    cursor: pointer;
    position: fixed;
    top: 31px;
    right: 45px;
}

.navbar-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    padding: 0;
    font-size: 14px;
    opacity: 0;
    animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hover-indicator {
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 0;
}

.nav-link {
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: rgb(255, 255, 255);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.767));
    padding: 2px 20px 2px 0;
    transition: color 0.3s ease;
}

.nav-link.active-indicated {
    color: #ff6421;
}

.nav-text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2;
}

.nav-text-primary,
.nav-text-secondary {
    display: block;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-text-secondary {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: right;
}

.nav-link.active-indicated .nav-text-primary,
.nav-link.active-indicated .nav-text-secondary {
    transform: translateY(-100%);
}

.intro-text,
.intro-text-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.intro-text {
    color: #ffffff;
    z-index: 2;
}

.intro-text-outline {
    z-index: 5;
    pointer-events: none;
}

.intro-text h1,
.intro-text-outline h1 {
    font-weight: normal;
    font-family: "Hoves", sans-serif !important;
    font-size: clamp(70px, 12vw, 220px);
    margin: 0;
    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(95px, 8vw, 160px);
    width: 100%;
    visibility: hidden;
    white-space: nowrap;
}

.intro-text h1 *,
.intro-text-outline h1 * {
    font-family: "Hoves", sans-serif !important;
}

.hero-word {
    display: inline-flex;
    align-items: center;
    flex: 1 1 0;
}

.hero-word-left {
    justify-content: flex-end;
}

.hero-word-right {
    justify-content: flex-start;
}

.intro-text h1 {
    text-shadow: -3px 5px 7px #000000;
}

.intro-text-outline h1 {
    color: transparent;
    -webkit-text-stroke: 1.4px rgb(255, 255, 255);
    text-shadow: none;
}

.intro-text h1 span span,
.intro-text-outline h1 span span {
    display: inline-block;
    opacity: 0;
    animation: floatUp3D 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.3s;
}

.intro-text h1:hover {
    cursor: default;
}

.hero-socials {
    position: fixed;
    left: 45px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32.5px;
    z-index: 100;
}

.hero-socials .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-socials .social-icon {
    width: 18.5px;
    height: 18.5px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgb(0, 0, 0));
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-socials .social-link:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-socials .social-link:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-socials .social-link:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-socials .social-link:nth-child(4) {
    animation-delay: 0.7s;
}

.live-status-badge {
    position: fixed;
    right: 45px;
    bottom: 40px;
    display: flex;
    align-items: center;
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.5s;
}

#liveCounterCount {
    color: #ff6421;
    font-weight: 500;
    margin-right: 4px;
}



/* --------------------------- About section --------------------------- */



#about {
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 60px;
    padding: 150px clamp(110px, 12vw, 180px) 100px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.about-info {
    width: 100%;
    max-width: 100%;
    color: white;
    padding: 0;
}

.about-title {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    text-align: left;
    color: white;
    margin: 0 0 16px 0;
    transition: opacity 0.8s ease, transform 1s ease;
}

.about-text {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(58px, 4vw, 55px);
    font-weight: 500;
    line-height: 1.18;
    margin-top: 15px;
    letter-spacing: -1px;
    text-align: left;
    white-space: pre-line;
}

.about-text .word {
    display: inline-block;
    color: transparent;
    background-image: linear-gradient(to right,
            #ffffff 50%,
            rgba(255, 255, 255, 0.15) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
}

.about-text .word:nth-of-type(5),
.about-text .word:nth-of-type(8),
.about-text .word:nth-of-type(12),
.about-text .word:nth-of-type(26),
.about-text .word:nth-of-type(27),
.about-text .word:nth-of-type(32) {
    background-image: linear-gradient(to right,
            #ff6421 50%,
            rgba(255, 100, 33, 0.15) 50%);
}

.about-text .word .punct {
    display: inline-block;
    color: transparent;
    background-image: linear-gradient(to right,
            #ffffff 50%,
            rgba(255, 255, 255, 0.15) 50%) !important;
    background-size: 200% 100%;
    background-position: inherit;
    -webkit-background-clip: text;
    background-clip: text;
}




/* --------------------------- Stats Section --------------------------- */



#stats-section {
    padding: 70px clamp(110px, 10.4vw, 180px) 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    box-sizing: border-box;
}

.stats-header {
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-header h2 {
    font-family: 'General Sans', sans-serif;
    font-size: 58px;
    font-weight: 500;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 9px;
}

.stats-highlight {
    color: #ff6421;
}

.stats-header p {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    color: #a4a4a4;
    font-size: 17.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.stats-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.148);
    border-radius: 24px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 320px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.118);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.stats-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 55px 55px;
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 85%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 85%);
    z-index: 0;
    pointer-events: none;
}

.stats-card:hover {
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.2), 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stats-number,
.stats-label,
.stats-desc {
    position: relative;
    z-index: 1;
    transform: translateY(-12px);
}

.stats-icon {
    position: absolute;
    z-index: 1;
}

.stats-number {
    font-family: 'General Sans', sans-serif;
    font-size: 75px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
    margin-bottom: -3px;
    color: transparent;
    background-image: linear-gradient(to bottom, #ffffff 10%, #a8a8a8 90%);
    -webkit-background-clip: text;
    background-clip: text;
}

.stats-label {
    font-family: 'General Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    margin-bottom: 3px;
    color: white;
}

.stats-desc {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #a4a4a4;
    line-height: 1.3;
    margin: 0;
    max-width: 280px;
}

.stats-icon {
    position: absolute;
    bottom: 22px;
    left: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.145);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.6;
}



/* --------------------------- Staggered Text Animation Section --------------------------- */



.reveal-text-anim .letter-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 5px;
    margin-bottom: -5px;
}

.reveal-text-anim .letter {
    display: inline-block;
    transform: translateY(110%);
    transition: none;
    will-change: transform;
}

.reveal-text-anim.reveal .letter {
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}



/* --------------------------- Experiences Section --------------------------- */



.history-section {
    padding: 85px 0 50px 0;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    scroll-margin-top: 0;
}

.history-header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(110px, 12vw, 180px);
    box-sizing: border-box;
}

.history-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    width: 100%;
}

.history-title {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.history-section-title {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(32px, 4.8vw, 58px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0 0 30px 0;
    line-height: 1.15;
}

.history-view-all {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.history-view-all:hover {
    color: #ff6421;
}

.history-move-icon {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.history-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.history-row {
    position: relative;
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    height: 110px;
    cursor: default !important;
    overflow: hidden;
    pointer-events: none;
}

.history-row * {
    cursor: default !important;
}

.history-row-base {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(110px, 12vw, 180px);
    box-sizing: border-box;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.history-row-left {
    display: flex;
    align-items: center;
    gap: 0;
    pointer-events: none;
    width: fit-content;
    height: 100%;
}

.history-year {
    width: 220px;
    font-family: 'General Sans', sans-serif;
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    pointer-events: none;
}

.history-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    pointer-events: auto;
    width: fit-content;
    height: 100%;
}

.history-role {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(22px, 2.3vw, 32px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.6px;
    margin: 0;
    line-height: 1.2;
}

.history-org {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.history-row-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    clip-path: inset(50% 0 50% 0);
    transition: clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.history-row:hover .history-row-hover {
    clip-path: inset(0% 0 0% 0);
}

.history-row-hover-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(110px, 12vw, 180px);
    box-sizing: border-box;
    pointer-events: none;
}

.history-row-hover-inner .history-row-left {
    pointer-events: none;
}

.history-row-hover-inner .history-info {
    pointer-events: auto;
}

.history-row-hover .history-year,
.history-row-hover .history-role {
    color: #0a0a0a;
}

.history-row-hover .history-org {
    color: rgba(10, 10, 10, 0.75);
}

.desc-desktop-break {
    display: inline;
}

.history-desc {
    max-width: 480px;
    font-family: 'General Sans', sans-serif;
    font-size: clamp(15.5px, 1.05vw, 14.5px);
    line-height: 1.45;
    color: #0a0a0a;
    font-weight: 500;
    margin: 0;
    text-align: right;
}



/* --------------------------- Stacks Section --------------------------- */



#stacks-section {
    padding: 85px 0 30px 0;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    scroll-margin-top: 0;
}

.stacks-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(110px, 12vw, 180px);
}

.stacks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    width: 100%;
}

.stacks-title {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.stacks-view-all {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.stacks-view-all:hover {
    color: #ff6421;
}

.stacks-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    width: 100%;
}

.stack-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    color: #ffffff;
    font-family: 'General Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: default;
    user-select: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.stack-pill:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.466);
}

.stack-icon {
    width: 23px;
    height: 23px;
    object-fit: contain;
    flex-shrink: 0;
}

.stacks-move-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}



/* --------------------------- GitHub Contributions Section --------------------------- */



#github-section {
    padding: 60px 0 35px 0;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.github-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(110px, 12vw, 180px);
}

.github-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
}

.github-title {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

.github-profile-link {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.github-profile-link:hover {
    color: #ff6421;
}

.github-external-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.github-profile-link:hover .github-external-icon {
    filter: invert(41%) sepia(85%) saturate(3471%) hue-rotate(4deg) brightness(102%) contrast(105%);
}

.github-graph-card {
    background: #020202;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: inset 0 0 150px rgba(255, 255, 255, 0.082);
    padding: 32px;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

.github-calendar-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.github-calendar-wrapper::-webkit-scrollbar {
    display: none;
}

.github-calendar-scroll {
    width: 100%;
    min-width: 620px;
}

.github-months-row {
    position: relative;
    height: 20px;
    margin-left: 32px;
    margin-bottom: 8px;
    width: calc(100% - 32px);
}

.month-label {
    position: absolute;
    top: 0;
    font-family: 'General Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    white-space: nowrap;
}

.github-grid-body {
    display: flex;
    gap: 8px;
    width: 100%;
}

.github-days-labels {
    position: sticky;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'General Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    height: 96px;
    padding-right: 6px;
}

.github-weeks-container {
    display: flex;
    justify-content: space-between;
    gap: 3px;
    flex: 1;
    width: calc(100% - 32px);
}

.github-week-col {
    display: flex;
    flex-direction: column;
    gap: 3.5px;
    flex: 1;
    align-items: center;
}

.github-day-sq {
    width: 12px;
    height: 12px;
    border-radius: 15%;
    background-color: rgba(255, 255, 255, 0.092);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.github-day-sq.level-0 {
    background-color: rgba(255, 255, 255, 0.092);
}

.github-day-sq.level-1 {
    background-color: #5a1d07;
}

.github-day-sq.level-2 {
    background-color: #993300;
}

.github-day-sq.level-3 {
    background-color: #cc4400;
}

.github-day-sq.level-4 {
    background-color: #ff6421;
    box-shadow: 0 0 6px rgba(255, 100, 33, 0.6);
}

.github-day-sq:hover {
    transform: scale(1.4);
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 100, 33, 0.574);
}

.github-graph-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.github-contrib-count {
    font-family: 'General Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

.github-legend {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.github-legend-text {
    font-family: 'General Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

.github-legend-squares {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.github-legend-squares .github-day-sq {
    width: 13px;
    height: 13px;
    border-radius: 20%;
    cursor: default;
    pointer-events: none;
}



/* --------------------------- Expertise Section --------------------------- */



#expertise-section {
    padding: 100px 0 20px 0;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.expertise-section-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(110px, 12vw, 180px);
    text-align: left;
}

.expertise-eyebrow {
    display: inline-block;
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.expertise-section-title {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(32px, 4.8vw, 58px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0 0 30px 0;
    line-height: 1.15;
}

.highlight-use {
    color: #ff6421;
}

.expertise-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.expertise-item {
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    height: clamp(86px, 7.2vw, 96px);
    pointer-events: none;
}

.expertise-base {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(110px, 12vw, 180px);
}

.expertise-base .expertise-title {
    pointer-events: auto;
    cursor: default;
    width: fit-content;
}

.expertise-title {
    font-weight: 500;
    font-family: 'General Sans', sans-serif;
    font-size: clamp(84px, 7vw, 94px);
    line-height: 1;
    letter-spacing: -2px;
}

.scroll-fill-text {
    color: transparent;
    background-image: linear-gradient(to right, #ffffff 50%, #424242 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
}

.expertise-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    clip-path: inset(50% 0 50% 0);
    transition: clip-path 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: auto;
}

.expertise-item:hover .expertise-hover {
    clip-path: inset(0% 0 0% 0);
}

.expertise-hover-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(110px, 12vw, 180px);
    box-sizing: border-box;
}

.expertise-hover .expertise-title {
    cursor: default;
    color: #0a0a0a;
}

.expertise-desc {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(15.5px, 1.05vw, 14.5px);
    font-weight: 500;
    color: #0a0a0a;
    max-width: 440px;
    text-align: right;
    line-height: 1.35;
    text-wrap: balance;
}



/* --------------------------- Services section --------------------------- */



#services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 20px 10px;
    scroll-margin-top: 5px;
}

.services-header {
    text-align: center;
    overflow: hidden;
}

.services-header h2 {
    font-family: 'General Sans', sans-serif;
    letter-spacing: -1.5px;
    font-weight: 500;
    font-size: 58px;
    margin-top: 50px;
    color: white;
}

.services-underline {
    display: none;
    width: 0;
    height: 6px;
    background-color: #f0f0f0;
    margin: 8px auto 0 auto;
    border-radius: 20px;
    transition: width 0.6s ease-out;
}

.services-underline.active {
    width: 250px;
}

.services-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1500px;
    overflow: visible;
}

.services-single-column {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    padding: 0 clamp(110px, 10.8vw, 180px) 115px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.service-item.single-card {
    display: flex;
    flex-direction: row;
    background: #020202;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 150px rgba(255, 255, 255, 0.1);
    padding: clamp(34px, 3.2vw, 45px);
    gap: clamp(30px, 3.2vw, 50px);
    min-height: clamp(440px, 36vw, 520px);
    position: sticky;
    top: 15vh;
    transform-origin: top center;
    will-change: transform, filter;
}

.service-item.single-card:nth-child(1) {
    top: 15vh;
}

.service-item.single-card:nth-child(2) {
    top: 17vh;
}

.service-item.single-card:nth-child(3) {
    top: 19vh;
}

.service-item.single-card:nth-child(4) {
    top: 21vh;
}

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px 20px 0;
}

.service-visual {
    flex: 1;
    position: relative;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    min-height: 320px;
    align-self: stretch;
}

.service-text h3 {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(38px, 3.6vw, 55px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.service-text p {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(14.5px, 1.2vw, 18px);
    line-height: 1.55;
    color: #b9b9b9;
    max-width: 100%;
    margin-bottom: 30px;
}

.service-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'General Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-top: auto;
    transition: background 0.4s ease;
}

.service-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.04),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.service-image-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.mac-buttons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.mac-btn.close {
    background-color: #ff5f56;
}

.mac-btn.minimize {
    background-color: #ffbd2e;
}

.mac-btn.maximize {
    background-color: #27c93f;
}



/* --------------------------- WORKS SECTION --------------------------- */



#works {
    scroll-margin-top: 120px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px clamp(110px, 12vw, 180px) 40px;
    position: relative;
    box-sizing: border-box;
}

.works-intro {
    margin-bottom: 30px;
}

.works-intro-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 18px;
    margin-bottom: 12px;
}

.works-eyebrow {
    display: inline-block;
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.works-view-all {
    font-family: 'General Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.works-view-all:hover {
    color: #ff6421;
}

.works-move-icon {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.works-title {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(32px, 4.8vw, 58px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin: 0;
}

.works-highlight {
    color: #ff6421;
}

.project-list-container {
    position: relative;
    width: 100%;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-list:hover .project-row:not(:hover) .project-name,
.project-list.has-hover .project-row:not(:hover) .project-name {
    color: rgba(255, 255, 255, 0.35);
}

.project-list:hover .project-row:not(:hover) .project-category,
.project-list.has-hover .project-row:not(:hover) .project-category {
    color: rgba(255, 255, 255, 0.35);
}

.project-row-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px 10px;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-name {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(22px, 3.4vw, 44px);
    font-weight: 500;
    color: #ffffff;
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-category {
    font-family: 'General Sans', sans-serif;
    font-size: clamp(14px, 1.3vw, 17px);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-row:hover .project-name {
    transform: translateX(-24px);
    color: #ffffff;
}

.project-row:hover .project-category {
    transform: translateX(24px);
    color: #ffffff;
}

.project-inline-thumb {
    display: none;
}

.project-preview-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    pointer-events: none;
    z-index: 99;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    will-change: transform, left, top;
}

.project-preview-window.active {
    transform: translate(-50%, -50%) scale(1);
}

.project-preview-strip {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.preview-media {
    width: 100%;
    height: 380px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.preview-media.bg-kinetix {
    background: #d9dce3;
}

.preview-media.bg-web-movies {
    background: #ababab;
}

.preview-media img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.preview-badge {
    position: fixed;
    top: 0;
    left: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #ff6421;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    will-change: transform, left, top;
}

.preview-badge.active {
    transform: translate(-50%, -50%) scale(1);
}

.preview-badge-text {
    display: inline-block;
    will-change: transform;
    pointer-events: none;
}


/* --------------------------- VIDEO SECTION --------------------------- */



.video-play-badge {
    position: fixed;
    top: 0;
    left: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #ff6421;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    will-change: transform, left, top;
}

.video-play-badge.active {
    transform: translate(-50%, -50%) scale(1);
}

.video-play-badge-text {
    display: inline-block;
    will-change: transform;
    pointer-events: none;
}

.video-intro {
    margin-top: 135px;
    margin-bottom: 30px;
}

.video-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 20px;
    width: 100%;
}

.video-tile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
}

.media-frame.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    background: #111111;
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}

.media-frame.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
}

.video-tile:hover video {
    transform: none;
}



/* --------------------------- IMAGES SECTION --------------------------- */



.images-intro {
    margin-top: 135px;
    margin-bottom: 30px;
}

.carousel-3d-section {
    width: 100%;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-track-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 12px;
    flex-shrink: 0;
}

.marquee-item {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.marquee-item img {
    height: 100%;
    width: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    pointer-events: none;
    user-select: none;
}

.works-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 65px;
    position: relative;
    z-index: 10;
}

.works-all-work-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 100px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'General Sans', sans-serif;
    font-size: 17.5px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.35s ease;
    z-index: 1;
}

.works-all-work-btn .radial-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: #ff6421;
    border-radius: 100px;
    clip-path: circle(0% at var(--clip-x, 50%) var(--clip-y, 50%));
    -webkit-clip-path: circle(0% at var(--clip-x, 50%) var(--clip-y, 50%));
    transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-clip-path 1s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 0;
}

.works-all-work-btn.is-hovered .radial-hover-overlay {
    clip-path: circle(160% at var(--clip-x, 50%) var(--clip-y, 50%));
    -webkit-clip-path: circle(160% at var(--clip-x, 50%) var(--clip-y, 50%));
}

.works-all-work-btn:hover {
    border-color: #ff6421;
}

.works-all-work-btn .works-all-work-btn-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    pointer-events: none;
}

.works-all-work-btn sup {
    font-size: 12px;
    font-weight: 500;
    vertical-align: super;
    line-height: 1;
    transform: translateY(-4px);
    display: inline-block;
    letter-spacing: 1px;
    margin-left: 3px;
    opacity: 0.6;
}



/* --------------------------- Footer Section --------------------------- */



#footer {
    background: linear-gradient(to bottom, #0a0a0a 0%, #121212 25%);
    color: #ffffff;
    font-family: 'General Sans', sans-serif;
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(110px, 12vw, 180px);
    box-sizing: border-box;
    position: relative;
    container-type: inline-size;
}

.footer-cta h2 {
    font-size: clamp(3rem, 4.2vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.footer-highlight {
    color: #ff6421;
    display: inline-block;
}

.footer-contact,
.footer-links-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.7fr) minmax(0, 1.6fr);
    align-items: flex-start;
    gap: clamp(16px, 2vw, 28px);
    width: 100%;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact>.contact-block:nth-child(2) .label {
    line-height: 1.25;
}

.footer-contact>.contact-block:nth-child(3) {
    align-items: flex-start;
    text-align: left;
    margin-left: auto;
    width: fit-content;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.label {
    font-size: calc(1.1rem - 1.5px);
    color: #a0a0a0;
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.link {
    color: #fff;
    text-decoration: none;
    font-size: clamp(16px, 1.25vw, 18.5px);
    font-weight: 500;
    transition: color 0.3s ease;
    width: fit-content;
    display: inline-block;
    white-space: nowrap;
}

.link:hover {
    color: #ff6421;
}

.social-icons {
    display: flex;
    gap: clamp(16px, 1.8vw, 30px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.social-icons .link {
    font-size: clamp(15px, 1.2vw, 18px);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 0 20px 0;
}

.footer-phone-time-row {
    display: contents;
}

.link-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.local-time-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.local-time-display {
    color: #ffffff;
    font-size: clamp(16px, 1.25vw, 18.5px);
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.copyright {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    justify-self: end;
    width: 100%;
    margin-top: auto;
    text-align: right;
}

.copyright p {
    font-size: clamp(14px, 1.2vw, 18.5px);
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

.giant-name {
    font-size: clamp(47px, 19.5cqi, 235px);
    font-family: 'General Sans', sans-serif !important;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 0.78;
    margin-top: 20px;
    color: rgb(255, 255, 255);
    transform: translateY(5%);
    text-shadow: 0px 50px 80px rgba(99, 99, 99, 0.05);
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}



/* --------------------------- Footer Sub Pages --------------------------- */



.project-minimal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 40px 45px;
    background: #0d0d0d;
    margin-top: 20px;
    width: 100%;
}

.footer-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(16px, 2vw, 36px);
}

.footer-left-group {
    display: flex;
    gap: clamp(20px, 3vw, 50px);
    align-items: flex-start;
}

.footer-right-group {
    display: flex;
    align-items: flex-start;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}

.footer-socials-block {
    align-items: flex-start;
    text-align: left;
}

.footer-sub-label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-email-link,
.footer-time-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-email-link:hover,
.footer-min-link:hover {
    color: #ff6421;
}

.footer-social-links {
    display: flex;
    gap: clamp(12px, 1.8vw, 24px);
    flex-wrap: nowrap;
    align-items: center;
}

.footer-min-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}



/* --------------------------- Keyframes --------------------------- */



@keyframes floatFade {
    0% {
        transform: translate(-50%, -35px);
        opacity: 0;
    }

    30% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -35px);
        opacity: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes blurryFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }

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

@keyframes fadeFromTopLeft {
    0% {
        opacity: 0;
        transform: translate(-60px, -60px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeFromTopRight {
    0% {
        opacity: 0;
        transform: translate(60px, -60px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes popUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }

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

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-2000px);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-2000px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        scale: 0;
    }

    60% {
        scale: 1.15;
    }

    100% {
        scale: 1;
    }
}

@keyframes floatUp3D {
    0% {
        opacity: 1;
        transform: translateY(450px) perspective(1000px) translateZ(-100px) rotateX(-8deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) perspective(1000px) translateZ(0) rotateX(0deg);
    }
}

@keyframes heroFloatUp3D {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(450px) perspective(1000px) translateZ(-150px) rotateX(-8deg);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) perspective(1000px) translateZ(0) rotateX(0deg);
    }
}

@keyframes heroFloatUp2D {
    0% {
        opacity: 0.2;
        transform: translate3d(-50%, 120px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes fadeInGlow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* --------------------------- Media Query --------------------------- */



@media (hover: hover) {
    .nav-link:hover {
        color: #ff6421;
    }

    .nav-link:hover .nav-text-primary,
    .nav-link:hover .nav-text-secondary {
        transform: translateY(-100%);
    }
}

@media (hover: none),
(pointer: coarse) {

    * {
        -webkit-tap-highlight-color: transparent;
    }

    .project-grid-card,
    .project-grid-link,
    .project-row-link,
    .project-table-link,
    .works-video-card,
    .video-tile,
    .works-image-card,
    .gallery-item {
        -webkit-tap-highlight-color: rgba(81, 200, 255, 0.393);
    }

    .project-preview-window,
    .preview-badge,
    .video-play-badge {
        display: none !important;
    }
}

@media (max-width: 1250px) {
    .history-row-hover-inner {
        gap: 0;
        justify-content: flex-start;
    }

    .history-year {
        width: 130px;
    }

    .history-row-hover-inner .history-info {
        display: none !important;
    }

    .desc-desktop-break {
        display: none;
    }

    .history-desc {
        display: block;
        font-size: clamp(12px, 1.1vw, 13.5px);
        line-height: 1.35;
        color: #0a0a0a;
        max-width: calc(100% - 130px);
        text-align: left;
        margin: 0;
        font-weight: 500;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    .logo {
        top: 24px !important;
        left: 20px !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .logo.magnetic-wrap {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .navbar {
        top: 24px;
        right: 20px;
        left: auto;
        transform: none;
        position: fixed;
        width: auto;
    }

    .navbar-container {
        padding: 0;
        font-size: 15px;
        gap: 0;
        flex-direction: column;
        align-items: flex-end;
    }

    .hover-indicator {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .nav-link {
        padding: 3px 0 !important;
        margin: 0 !important;
        line-height: 1.2;
    }

    .nav-link.magnetic-wrap {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .nav-text-wrapper {
        font-size: 15px;
        height: 1.2em;
        line-height: 1.2;
    }

    .nav-link span,
    .nav-text-primary,
    .nav-text-secondary {
        display: block !important;
        font-size: 15px;
        line-height: 1.2;
    }

    .hero-narrative,
    .hero-location {
        display: none !important;
    }

    .intro-text,
    .intro-text-outline {
        top: 50%;
    }

    .intro-text h1,
    .intro-text-outline h1 {
        font-size: clamp(65px, 11vw, 110px);
        letter-spacing: 3px;
    }

    #about {
        padding: 100px clamp(110px, 14.5vw, 160px) 40px;
        max-width: 100%;
    }

    .about-text {
        font-size: clamp(27px, 4.1vw, 41px);
    }

    #stats-section {
        padding: 70px clamp(110px, 14.5vw, 160px) 60px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stats-header h2 {
        font-size: clamp(34px, 4vw, 44px);
    }

    .stats-grid {
        gap: 12px;
    }

    .stats-card {
        padding: 35px 12px 55px;
        min-height: 230px;
        border-radius: 18px;
    }

    .stats-number {
        font-size: clamp(50px, 3.8vw, 42px);
        margin-bottom: 0;
        letter-spacing: -1px;
    }

    .stats-label {
        font-size: clamp(14px, 1.6vw, 18px);
        margin-bottom: 6px;
    }

    .stats-desc {
        font-size: clamp(11px, 1.2vw, 12.5px);
        line-height: 1.35;
        color: #b0b0b0;
    }

    .stats-icon {
        bottom: 14px;
        left: 14px;
        width: 40px;
        height: 40px;
    }

    .stats-icon img {
        width: 20px;
        height: 20px;
    }

    .history-header-container,
    .history-row-base,
    .history-row-hover-inner,
    .stacks-container,
    .github-container,
    .expertise-section-header,
    .expertise-base,
    .expertise-hover-inner {
        padding: 0 clamp(110px, 14.5vw, 160px);
        max-width: 100%;
    }

    .history-section-title,
    .expertise-section-title,
    .works-title {
        font-size: clamp(32px, 4.5vw, 48px);
        line-height: 1.2;
    }

    .expertise-item,
    .expertise-hover-inner {
        height: clamp(75px, 8.2vw, 90px);
    }

    .expertise-title {
        font-size: clamp(80px, 6.6vw, 85px);
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .expertise-hover .expertise-title {
        display: none !important;
    }

    .expertise-desc {
        font-size: clamp(14px, 1.5vw, 15.5px);
        line-height: 1.35;
        color: #0a0a0a;
        text-align: left;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-weight: 500;
        text-wrap: wrap;
    }

    .history-row-hover-inner {
        gap: 0;
        justify-content: flex-start;
    }

    .history-year {
        width: 130px;
    }

    .history-row-hover-inner .history-info {
        display: none !important;
    }

    .desc-desktop-break {
        display: none;
    }

    .history-desc {
        display: block;
        font-size: clamp(15.5px, 1.6vw, 15.5px);
        line-height: 1.35;
        color: #0a0a0a;
        max-width: calc(100% - 130px);
        text-align: left;
        margin: 0;
        font-weight: 500;
        box-sizing: border-box;
    }

    #services {
        padding: 50px 0 20px 0;
        width: 100%;
    }

    .services-header h2 {
        font-size: clamp(36px, 4.2vw, 44px);
    }

    .services-single-column {
        padding: 0 clamp(110px, 14.5vw, 160px) 80px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        gap: 45px;
    }

    .service-item.single-card {
        padding: 24px 28px;
        gap: 24px;
        min-height: 280px;
        border-radius: 20px;
    }

    .service-text {
        padding: 42px 0 0 0;
        justify-content: space-between;
    }

    .service-text h3 {
        font-size: clamp(26px, 3.2vw, 36px);
        margin-bottom: 6px;
        white-space: nowrap;
    }

    .service-text p {
        font-size: clamp(12.5px, 1.25vw, 13.5px);
        line-height: 1.45;
        color: #b0b0b0;
        margin-bottom: 16px;
    }

    .service-badge {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-top: auto;
    }

    .service-visual {
        flex: 1.1;
        aspect-ratio: 16 / 11;
        border-radius: 14px;
        overflow: hidden;
        margin: 0;
        max-height: 300px;
    }

    #works {
        padding: 40px clamp(110px, 14.5vw, 160px) 60px;
        max-width: 100%;
        box-sizing: border-box;
        scroll-margin-top: 50px;
    }

    .project-preview-window,
    .preview-badge,
    .video-play-badge {
        display: none !important;
    }

    .project-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        border-top: none;
    }

    .project-row {
        border-bottom: none;
        width: 100%;
    }

    .project-list.has-hover .project-row:not(:hover) {
        opacity: 1;
    }

    .project-row-link {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .project-row:hover .project-name,
    .project-row:hover .project-category {
        transform: none;
    }

    .project-inline-thumb {
        display: block;
        width: 100%;
        overflow: hidden;
        margin: 0 0 12px;
        background: transparent;
        border: none;
    }

    .project-inline-thumb img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform 0.4s ease;
    }

    .project-name {
        font-size: clamp(20px, 2.2vw, 26px);
        letter-spacing: -0.3px;
    }

    .project-category {
        font-size: 13.5px;
    }

    .video-intro {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .images-intro {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .carousel-3d-section {
        margin-top: 0;
        padding: 10px 0;
    }

    .marquee-item {
        height: 180px;
    }

    .marquee-item img {
        max-height: 180px;
    }

    .marquee-group {
        gap: 10px;
        padding-right: 10px;
    }

    .video-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-sidebar-column {
        position: sticky;
        top: 24px;
        align-self: start;
    }

    .footer-left-group,
    .footer-right-group {
        display: contents;
    }

    .footer-minimal-container {
        display: grid;
        grid-template-columns: 1fr auto;
        row-gap: 24px;
        column-gap: 40px;
        align-items: flex-start;
    }

    .footer-left-group>.footer-block:nth-child(1) {
        order: 1;
        grid-column: 1;
    }

    .footer-left-group>.footer-block:nth-child(3) {
        order: 2;
        grid-column: 2;
    }

    .footer-left-group>.footer-block:nth-child(2) {
        order: 3;
        grid-column: 1;
    }

    .footer-right-group>.footer-socials-block {
        order: 4;
        grid-column: 2;
    }

    .footer-social-links {
        gap: 18px;
        flex-wrap: nowrap;
    }

    #footer {
        padding: 50px 0 0;
    }

    .footer-container {
        padding: 0 clamp(110px, 14.5vw, 160px);
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-cta h2 {
        font-size: clamp(38px, 4.6vw, 54px);
        letter-spacing: -1.5px;
        line-height: 1.05;
        margin-bottom: 25px;
        padding-left: 0;
        margin-left: 0;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding-left: 0;
        margin-left: 0;
    }

    .footer-contact>.contact-block:nth-child(3) {
        justify-self: auto;
        align-items: flex-start;
        text-align: left;
        margin-left: 0;
    }

    .contact-block,
    .link-column {
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
        margin-left: 0;
        flex: initial;
    }

    .label {
        font-size: 17px;
        margin-bottom: 5px;
        text-align: left;
    }

    .link {
        font-size: 17.5px;
        font-weight: 500;
        line-height: 1.3;
    }

    .social-icons {
        display: flex;
        flex-wrap: wrap;
        column-gap: 15px;
        row-gap: 8px;
        justify-content: flex-start;
    }

    .social-icons .link {
        white-space: nowrap;
        font-size: 17.5px;
    }

    .footer-divider {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin: 0 0 20px 0;
    }

    .footer-links-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    .footer-phone-time-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        max-width: 320px;
        gap: 20px;
    }

    .link-column {
        flex: 0 0 auto;
        align-items: flex-start;
        text-align: left;
    }

    .local-time-block {
        flex: 0 0 auto;
        align-items: flex-start;
        text-align: left;
    }

    .local-time-display {
        font-size: 17.5px;
        line-height: 1.3;
        margin: 0;
        white-space: nowrap;
        text-align: left;
    }

    .copyright {
        align-self: flex-start;
        align-items: flex-start;
        justify-self: start;
        text-align: left;
        margin-top: 0;
        width: 100%;
    }

    .copyright p {
        font-size: 17.5px;
        font-weight: 500;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        text-align: left;
    }

    .giant-name {
        display: block;
        font-family: 'General Sans', sans-serif !important;
        font-size: clamp(44px, 18.8cqi, 160px);
        letter-spacing: -0.02em;
        line-height: 0.85;
        white-space: nowrap;
        text-align: left;
        width: 100%;
        margin-top: 15px;
        transform: translateY(10%);
        overflow: hidden;
        padding-left: 0;
        margin-left: 0;
    }

    .live-status-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .preloader-bottom-container {
        padding: 0 20px 28px 20px;
        gap: 16px;
        align-items: flex-end;
    }

    .preloader-center-message {
        width: 92%;
        gap: 2px;
    }

    .preloader-sub-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .preloader-main-text {
        font-size: clamp(32px, 9.5vw, 56px);
        letter-spacing: 2px;
    }

    .page-transition-title {
        font-size: clamp(28px, 7.5vw, 36px);
    }

    #header {
        height: 70vh;
    }

    .hero-cutout {
        animation: heroFloatUp2D 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .hero-narrative,
    .hero-location,
    .hero-socials,
    .live-status-badge {
        display: none !important;
    }

    .logo {
        top: 24px !important;
        left: 20px !important;
        font-size: 18px !important;
        line-height: 1.2 !important;
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .logo.magnetic-wrap {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .navbar {
        top: 24px;
        right: 20px;
        left: auto;
        transform: none;
        position: fixed;
        width: auto;
    }

    .navbar-container {
        padding: 0;
        font-size: 18px;
        gap: 1px;
        flex-direction: column;
        align-items: flex-end;
    }

    .hover-indicator {
        display: none !important;
    }

    .nav-link {
        flex-direction: row;
        padding: 3px 0;
        margin: 0 !important;
        line-height: 1.2;
    }

    .nav-link.magnetic-wrap {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .nav-text-wrapper {
        font-size: 18px;
        height: 1.2em;
        line-height: 1.2;
    }

    .nav-link span,
    .nav-text-primary,
    .nav-text-secondary {
        display: block !important;
        font-size: 18px;
        line-height: 1.2;
    }

    .intro-text,
    .intro-text-outline {
        top: 50%;
    }

    .intro-text h1,
    .intro-text-outline h1 {
        font-size: clamp(60px, 11.5vw, 110px);
        letter-spacing: 2px;
    }

    .intro-text h1 {
        text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.616);
    }

    .intro-text-outline h1 {
        -webkit-text-stroke: 0.5px rgb(255, 255, 255);
    }

    #about {
        padding: 70px 24px 40px;
    }

    .about-info {
        padding: 0;
        text-align: left;
    }

    .about-title {
        text-align: left;
        font-size: 15px;
    }

    #stats-section {
        padding: 50px 20px 60px;
    }

    .stats-header h2 {
        font-size: clamp(34px, 5.5vw, 44px);
    }

    .stats-grid {
        gap: 12px;
    }

    .stats-card {
        padding: 45px 14px 60px;
        min-height: 240px;
        border-radius: 18px;
    }

    .stats-number,
    .stats-label,
    .stats-desc {
        transform: none;
    }

    .stats-number {
        font-size: clamp(48px, 6vw, 60px);
        line-height: 0.9;
        margin: 0;
        margin-bottom: -4px;
        letter-spacing: -1.5px;
    }

    .stats-label {
        font-size: clamp(16px, 2.6vw, 22px);
        line-height: 1;
        margin: 0;
        margin-bottom: 4px;
    }

    .stats-desc {
        font-size: clamp(11.5px, 1.7vw, 13.5px);
        line-height: 1.35;
        margin: 0;
        max-width: 100%;
        color: #b5b5b5;
    }

    .stats-icon {
        bottom: 14px;
        left: 14px;
        width: 40px;
        height: 40px;
    }

    .stats-icon img {
        width: 20px;
        height: 20px;
    }

    .history-section {
        padding: 75px 0 50px 0;
        scroll-margin-top: 55px;
    }

    .history-header-top {
        margin-bottom: 12px;
    }

    .history-title {
        font-size: 14.5px;
        font-weight: 500;
    }

    .history-view-all {
        font-size: 14.5px;
    }

    .history-section-title {
        margin-bottom: 25px;
    }

    .history-header-container,
    .history-row-base,
    .history-row-hover-inner {
        padding: 0 20px;
    }

    .history-row-hover-inner {
        gap: 0;
        justify-content: flex-start;
    }

    .history-row-left {
        flex-shrink: 0;
    }

    .history-row {
        height: 90px;
    }

    .history-row-base,
    .history-row-hover-inner {
        height: 90px;
    }

    .history-year {
        width: 100px;
        font-size: 26px;
    }

    .history-role {
        font-size: 24px;
    }

    .history-org {
        font-size: 14px;
    }

    .history-row-hover-inner .history-info {
        display: none;
    }

    .history-desc {
        display: block;
        font-size: 14px;
        line-height: 1.35;
        color: #0a0a0a;
        max-width: calc(100% - 90px);
        text-align: left;
        margin: 0;
        font-weight: 500;
        box-sizing: border-box;
    }

    #stacks-section {
        padding: 45px 0 35px 0;
        width: 100%;
        scroll-margin-top: 90px;
    }

    .stacks-container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .stacks-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        gap: 12px;
        width: 100%;
    }

    .stacks-title {
        font-size: 14.5px;
        letter-spacing: 1px;
        line-height: 1.35;
        white-space: normal;
        word-break: normal;
        hyphens: none;
    }

    .stacks-view-all {
        font-size: 13.5px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .stacks-pills-wrapper {
        gap: 10px;
    }

    .stack-pill {
        padding: 8px 18px;
        font-size: 16.5px;
        gap: 10px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #141414;
        border-color: rgba(255, 255, 255, 0.14);
    }

    .stack-icon {
        width: 20px;
        height: 20px;
    }

    #github-section {
        padding: 40px 0 15px 0;
        width: 100%;
    }

    .github-container {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .github-header {
        margin-bottom: 20px;
        gap: 12px;
    }

    .github-title {
        font-size: 14.5px;
    }

    .github-profile-link {
        font-size: 13.5px;
        white-space: nowrap;
    }

    .github-graph-card {
        padding: 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #0d0d0d;
        box-shadow: none;
    }

    .expertise-section-header {
        padding: 0 20px;
    }

    .history-section-title,
    .expertise-section-title,
    .works-title {
        font-size: clamp(32px, 5.8vw, 40px);
        line-height: 1.2;
        text-align: left;
        margin-bottom: 25px;
    }

    .expertise-eyebrow {
        font-size: 14.5px;
        margin-bottom: 12px;
    }

    .expertise-item,
    .expertise-hover-inner {
        height: clamp(68px, 8.8vw, 78px);
    }

    .expertise-title {
        font-size: clamp(60px, 8.2vw, 64px);
        line-height: 1;
        letter-spacing: -1.2px;
    }

    .expertise-base,
    .expertise-hover-inner {
        padding: 0 20px;
    }

    .expertise-hover .expertise-title {
        display: none !important;
    }

    .expertise-desc {
        font-size: clamp(13.5px, 1.85vw, 14.5px);
        white-space: normal;
        color: #0a0a0a;
        text-align: left;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-weight: 500;
        line-height: 1.35;
        text-wrap: normal;
    }

    #services {
        padding: 60px 0 20px 0;
        gap: 15px;
        scroll-margin-top: 30px;
        width: 100%;
    }

    .services-header h2 {
        font-size: 38px;
        text-align: center;
        margin-top: 0;
    }

    .services-underline {
        height: 4px;
        border-radius: 20px;
    }

    .services-single-column {
        padding: 0 20px 60px;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .service-item.single-card {
        opacity: 1;
        display: flex;
        flex-direction: row;
        padding: 22px 24px;
        width: 100%;
        min-height: 260px;
        position: sticky;
        border-radius: 20px;
        background: #0d0d0d;
        border: 1px solid rgba(255, 255, 255, 0.15);
        gap: 20px;
        box-sizing: border-box;
        transform-origin: top center;
        will-change: transform, filter;
    }

    .service-item.single-card:nth-child(1) {
        top: 80px;
    }

    .service-item.single-card:nth-child(2) {
        top: 95px;
    }

    .service-item.single-card:nth-child(3) {
        top: 110px;
    }

    .service-item.single-card:nth-child(4) {
        top: 125px;
    }

    .mac-buttons {
        position: absolute;
        top: 14px;
        left: 16px;
        display: flex;
        gap: 7px;
        z-index: 10;
    }

    .mac-btn {
        height: 10px;
        width: 10px;
    }

    .service-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px 0 0 0;
        margin-bottom: 0;
    }

    .service-text h3 {
        font-size: clamp(22px, 3.6vw, 30px);
        font-weight: 500;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
        color: #ffffff;
        white-space: nowrap;
    }

    .service-text p {
        font-size: clamp(11.5px, 1.7vw, 13px);
        line-height: 1.4;
        color: #b0b0b0;
        margin-bottom: 14px;
    }

    .service-badge {
        display: flex;
        width: 38px;
        height: 38px;
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        margin-top: auto;
    }

    .service-visual {
        flex: 1.1;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        margin: 0;
    }

    .service-image-inner {
        width: 100%;
        height: 100%;
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #works {
        padding: 45px 20px 5px;
        scroll-margin-top: 95px;
    }

    .project-preview-window,
    .preview-badge {
        display: none !important;
    }

    .works-intro {
        margin-bottom: 25px;
    }

    .works-eyebrow {
        font-size: 14.5px;
    }

    .works-view-all {
        font-size: 14.5px;
    }

    .project-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        border-top: none;
    }

    .project-row {
        border-bottom: none;
        width: 100%;
    }

    .project-list.has-hover .project-row:not(:hover) {
        opacity: 1;
    }

    .project-row-link {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .project-row:hover .project-name,
    .project-row:hover .project-category {
        transform: none;
    }

    .project-inline-thumb {
        display: block;
        width: 100%;
        overflow: hidden;
        margin: 0 0 10px;
        background: transparent;
        border: none;
    }

    .project-inline-thumb img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .project-name {
        font-size: clamp(16px, 2.6vw, 21px);
        letter-spacing: 0.1px;
    }

    .project-category {
        font-size: 12.5px;
        letter-spacing: 0.1px;
    }

    .video-intro {
        margin-top: 65px;
        margin-bottom: 25px;
    }

    .images-intro {
        margin-top: 65px;
        margin-bottom: 25px;
    }

    .carousel-3d-section {
        margin-top: 0;
        padding: 5px 0;
    }

    .marquee-item {
        height: 200px;
    }

    .marquee-item img {
        max-height: 200px;
    }

    .marquee-group {
        gap: 8px;
        padding-right: 8px;
    }

    .video-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .works-btn-wrapper {
        display: flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 20px;
        position: relative;
        z-index: 10;
    }

    .works-all-work-btn {
        font-size: 17.5px;
        padding: 10px 20px;
    }

    .works-all-work-btn sup {
        font-size: 11px;
        transform: translateY(-3.5px);
        display: inline-block;
        margin-left: 3px;
    }

    .works-page-header,
    .works-content-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .works-hero-heading {
        font-size: 38px;
    }

    .works-controls-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .projects-table-head {
        display: none;
    }

    .project-table-link {
        grid-template-columns: 1fr auto;
        row-gap: 6px;
        padding: 22px 0;
    }

    .project-table-link .col-location,
    .project-table-link .col-year {
        display: none;
    }

    .project-table-link .col-services {
        text-align: right;
        font-size: 14px;
    }

    .projects-view-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .works-videos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .works-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    #footer {
        padding: 40px 0 0;
        margin-top: 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-cta h2 {
        font-size: clamp(36px, 6.8vw, 48px);
        line-height: 1;
        margin-bottom: 25px;
    }

    .project-minimal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-left-group,
    .footer-right-group {
        display: flex;
    }

    .footer-minimal-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-left-group>.footer-block:nth-child(1),
    .footer-left-group>.footer-block:nth-child(2),
    .footer-left-group>.footer-block:nth-child(3),
    .footer-right-group>.footer-socials-block {
        order: unset;
        grid-column: unset;
    }

    .footer-left-group {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social-links {
        justify-content: flex-start;
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 580px) {
    .project-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-grid-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    #header {
        height: 90vh;
    }

    .hero-narrative,
    .intro-text,
    .intro-text-outline,
    .live-status-badge {
        display: none !important;
    }

    .logo {
        top: 24px !important;
        left: 20px !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .logo.magnetic-wrap {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .navbar {
        top: 24px;
        right: 20px;
        left: auto;
        transform: none;
        position: fixed;
        width: auto;
    }

    .navbar-container {
        padding: 0;
        font-size: 14px;
        gap: 0;
        flex-direction: column;
        align-items: flex-end;
    }

    .nav-link {
        padding: 3px 0;
        margin: 0 !important;
        line-height: 1.2;
        font-size: 14px;
    }

    .nav-link.magnetic-wrap {
        padding: 3px 0 !important;
        margin: 0 !important;
    }

    .nav-text-wrapper {
        font-size: 14px;
        height: 1.2em;
        line-height: 1.2;
    }

    .nav-link span,
    .nav-text-primary,
    .nav-text-secondary {
        display: block !important;
        font-size: 14px;
        line-height: 1.2;
    }

    .hover-indicator {
        display: none !important;
    }

    .hero-location {
        display: block !important;
        top: auto;
        bottom: 7.5%;
        left: 20px;
        right: auto;
        margin: 0;
        max-width: 380px;
        text-align: left;
    }

    .location-arrow {
        display: block !important;
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
        margin-left: -8px;
        opacity: 0;
        animation: floatUp3D 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        animation-delay: 0.4s;
    }

    .hero-location p {
        font-size: 21.5px;
        line-height: 1.4;
        text-align: left;
    }

    #about {
        padding: 50px 20px 30px;
    }

    .about-title {
        font-size: 14.5px;
        text-align: left;
        margin-bottom: 8px;
    }

    .about-text {
        font-size: clamp(28.6px, 6.5vw, 29px);
        font-weight: 500;
        margin-top: 10px;
        letter-spacing: 0.2px;
    }

    #stats-section {
        padding: 40px 20px;
    }

    .stats-header h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
        line-height: 1.25;
    }

    .stats-header p {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-card {
        padding: 45px 20px 30px;
        min-height: auto;
        align-items: center;
        text-align: center;
    }

    .stats-number,
    .stats-label,
    .stats-desc {
        transform: none;
    }

    .stats-number {
        font-size: 85px;
        line-height: 0.9;
        margin: 0;
        margin-bottom: -4px;
        letter-spacing: -2px;
    }

    .stats-label {
        font-size: 30px;
        line-height: 1;
        margin: 0;
        margin-bottom: 4px;
    }

    .stats-desc {
        font-size: 15px;
        line-height: 1.35;
        margin: 0;
        max-width: 100%;
    }

    .stats-icon {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        align-self: flex-start;
        width: 46px;
        height: 46px;
    }

    .stats-icon img {
        width: 22px;
        height: 22px;
    }

    .history-section {
        padding: 65px 0 50px 0;
        scroll-margin-top: 75px;
    }

    .history-role {
        font-size: 20px;
    }

    .history-desc {
        font-size: 13px;
    }

    .stacks-nav-container {
        padding: 0 20px;
    }

    .stacks-hero {
        padding: 40px 20px 30px;
    }

    .stacks-hero-title {
        font-size: 38px;
    }

    .stacks-hero-subtitle {
        font-size: 15px;
    }

    .curated-stacks-main {
        padding: 20px 20px 60px;
        gap: 35px;
    }

    .stacks-pills-row {
        gap: 10px;
    }

    #github-section {
        padding: 10px 0 10px 0;
    }

    .github-contrib-count {
        font-size: 12.5px;
    }

    .expertise-section-header {
        padding: 0 20px;
    }

    .history-section-title,
    .expertise-section-title,
    .works-title {
        font-size: clamp(30px, 7.5vw, 36px);
        line-height: 1.2;
        text-align: left;
        margin-bottom: 25px;
    }

    .expertise-eyebrow {
        font-size: 14.5px;
        margin-bottom: 12px;
    }

    .expertise-item,
    .expertise-hover-inner {
        height: clamp(64px, 15vw, 76px);
    }

    .expertise-title {
        font-size: clamp(52px, 12vw, 55px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .expertise-base,
    .expertise-hover-inner {
        padding: 0 20px;
    }

    .expertise-desc {
        font-size: clamp(13.5px, 3.4vw, 13.5px);
        line-height: 1.35;
        color: #0a0a0a;
        text-align: left;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-weight: 500;
        text-wrap: normal;
    }

    .expertise-hover .expertise-title {
        display: none !important;
    }

    #services {
        padding-top: 75px;
        gap: 15px;
    }

    .services-header h2 {
        font-size: 38px;
        text-align: center;
        margin-top: 0;
    }

    .services-underline {
        height: 4px;
        border-radius: 20px;
    }

    .services-single-column {
        padding: 0 20px 50px;
        gap: 120px;
        width: 100%;
        box-sizing: border-box;
    }

    .service-item.single-card {
        opacity: 1;
        transform: none;
        display: flex;
        flex-direction: column;
        padding: 16px 16px;
        width: 100%;
        min-height: auto;
        position: sticky;
        border-radius: 20px;
        background: #0d0d0d;
        border: 1px solid rgba(255, 255, 255, 0.15);
        gap: 35px;
        box-sizing: border-box;
    }

    .service-item.single-card:nth-child(1) {
        top: 80px;
    }

    .service-item.single-card:nth-child(2) {
        top: 95px;
    }

    .service-item.single-card:nth-child(3) {
        top: 110px;
    }

    .service-item.single-card:nth-child(4) {
        top: 125px;
    }

    .mac-buttons {
        position: absolute;
        top: 16px;
        left: 16px;
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .mac-btn {
        height: 12px;
        width: 12px;
    }

    .service-text {
        display: block;
        padding: 36px 0 0 0;
        margin-bottom: 0;
    }

    .service-text h3 {
        font-size: 26px;
        font-weight: 500;
        margin-bottom: 8px;
        letter-spacing: -0.5px;
        color: #ffffff;
    }

    .service-text p {
        font-size: 14px;
        line-height: 1.45;
        color: #b0b0b0;
        margin-bottom: 0;
    }

    .service-badge {
        display: none;
    }

    .service-visual {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        margin: 0;
    }

    .service-image-inner {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        display: block;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}