:root{
    --bg: #222221;
    --bg-splash-pink: #383232;

    --prime-pink: #FAC5C6;
    --lavenda: #AA99CC;
    --goorange: #E67A69;
    --steel-blue: #6A8CA4;
    --white-bone: #EAE6E1;
    --white-off: #DADADA;
    --gray-700: #787878;
    --gray-800: #484848;
    
    --padding: 100px;
    --padding-x2: calc((var(--padding) * 2));
    --padding2: 130px;
    --padding2-x2: calc((var(--padding2) * 2));
    --padding-ribbon: 80px;
    --padding-ribbon-x2: calc((var(--padding-ribbon) * 2));
}
/* #region MEDIA root queries */
@media  (max-width: 900px){
    :root{
        --padding: 10px;
        --padding2: 20px;
        --padding-ribbon: 20px;
    }
}
@media  (max-width: 1160px){
    :root{
        --padding: 20px;
        --padding2: 40px;
        --padding-ribbon: 40px;
    }
}
@media  (min-width: 1900px){
    :root{
        --padding: 520px;
        --padding2: 20%;
        --padding-ribbon: 160px;
    }
    .hero-vector{
        display: none;
    }
}
/* #endregion */
* {
    user-select: none;
    /* cursor: none; */
}
a{
    text-decoration: none;
    color: #000000;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Inter";
}
.wrapper{
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: auto;
}

.logo-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:  4px 16px;
    gap: 6px;

    position: fixed;
    width: auto;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    /* left: 16px; */
    top: 0px;

    background: #222221;
    border-radius: 0px 0px 16px 16px;

    /* Inside auto layout */
    flex: none;
    order: 5;
    flex-grow: 0;
    z-index: 5;
    transition: all 0.3s ease;


}
.logotype{
    display: none;
    transition: all 0.6s ease;

}
/* #region TOP RIBBON */
.top-ribbon{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
    gap: 16px;

    position: fixed;
    width: 200px;
    height: 40px;
    right: 0;
    top: 0;

    flex: none;
    order: 2;
    flex-grow: 0;
    z-index: 101;

}
.toggle-language{
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px;

    width: auto;
    height: 40px;

    background: var(--bg);
    border: 0.5px solid var(--prime-pink);
    border-radius: 100px;

    flex: none;
    order: 0;
    flex-grow: 0;
    
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16);


}
.language{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;

    width: 35.9px;
    height: 35.9px;

    border-radius: 50px;
    flex: none;
    order: 0;
    flex-grow: 0;

font-family: 'Bebas Neue';
font-style: normal;
font-weight: 400;
font-size: 16.4103px;
line-height: 20px;
color: #FAC5C6;

}
.lang-on{
    background-color: var(--white-bone);
    color: var(--bg);
}

.toggle-menu{
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px 16px;
    gap: 16px;

    width: auto;
    height: 40px;

    background-color: var(--bg-splash-pink);
    border: 0.5px solid var(--prime-pink);
    border-radius: 100px;

    flex: none;
    order: 1;
    flex-grow: 0;

font-family: 'Bebas Neue';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 29px;
color: var(--prime-pink);

box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16);

}


/* #endregion */




/* #region HERO */
.hero{
    display: flex;
    flex-direction: column;
    padding: 12px;
    height: calc(100dvh - 24px);
    width: calc(100% - 24px);
    gap: 12px;
}
.hero.scrolled {
    height: calc(70dvh + 100dvh );
}
.tile-hero{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 128px;
    gap: 12px;

    width: calc(100% - 256px);
    height: calc(70dvh - 24px);

    background: #222221;
    border-radius: 24px;

    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    z-index: 0;
    overflow: hidden;

}
.tile-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.05) 0%, transparent 80%);
    pointer-events: none;
    transition: background 0.2s ease;
    border-radius: 24px;
    z-index: 1;
}
p{
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 39.0063px;
    line-height: 47px;
    margin: 0;

    color: var(--gray-800);

}
/* #endregion */

/* #region SERVICES */
.tiles-services{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;

    width: 100%;
    height: calc(30% - 24px);

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
    z-index: 1;
    transition: all 0.6s ease;

}
.tile-services{
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
    gap: 10px;

    width: auto;
    height: auto;

    background: #EAE6E1;
    border: 2px solid #AA99CC;
    border-radius: 24px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
    cursor: pointer;

    transition: all 0.6s ease;

}
.hero.scrolled .tiles-services {
    flex-direction: column;
    gap: 12px;
    height: calc(100dvh - 40px);
    padding: 20px 0px;
}

.hero.scrolled .tile-services {
    width: 100%;
    flex-grow: 1;
    border-radius: 24px;
    position: relative;
    justify-content: start;

    /* UX */

    box-sizing: border-box;

    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 0px 160px;
    height: 33.3333%;

    background: #EAE6E1;
    border: 2px solid #AA99CC;

    /* Inside auto layout */
    flex: none;
    flex-grow: 1;
    order: 0;

}
.tile-services-description{
    display: none;
}
.hero.scrolled .tile-services-description{
    /* desc */

    /* Auto layout */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;

    width: 100%;
    height: auto;


    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 1;

    

}
.tile-services-description-header{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0px;
    gap: 16px;

    width: 100%;
    height: auto;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    flex-wrap: wrap;
}

h4{

    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #787878;
    margin: 0;


    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;

}
.tile-services-description-header h3,
.tile-services-description-header h4 {
    flex: 1 1 1 auto;
    min-width: 0;
}
.tags{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 16px;

    width: 100%;
    height: auto;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;


    /* Allow tag wrapping */
    flex-wrap: wrap;
}
.tag{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px;


    background: #DADADA;
    border-radius: 999px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

    /* Design systems */


font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 12px;
color: #787878;


/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;


}
h2{
    /* UX */

    width: auto;

    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 68px;
    color: #787878;
    margin: 0;
}
.hero.scrolled h2 {
    min-width: 80px;
}
h3{

    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    color: #AA99CC;
    margin: 0;

}
.ai h3{
    color: var(--goorange);
}
.web h3{
    color: var(--steel-blue);
}
/* #endregion */



/* #region --- Custom Cursor --- */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(170, 153, 204, 0.6); /* lavender translucent */
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: transform 0.1s ease-out, background-color 0.2s;
}
#custom-cursor .cursor-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #222221;
    font-size: 20px;
    font-weight: bold;
    pointer-events: none;
    transition: all 0.6s ease;

}

body.cursor-hero #custom-cursor {
    background-color: rgba(234, 230, 225, 0.8); /* white-bone */
}

body.cursor-services #custom-cursor {
    background-color: rgba(230, 122, 105, 0.8); /* goorange */
}

body.cursor-ux #custom-cursor {
    will-change: transform;
}

/* ...existing code... */
.cursor-box{
    position: absolute;
    width: 500px;
    height: 400px;
    padding: 16px;
    background-color: var(--bg-splash-pink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--bg);
    border-radius: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
}
.img-ux{
    width: 480px;
    border-radius: 8px;
}
.imgcta{
    position: absolute;
    z-index: 100;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background-color: #E67A69;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseSize 2.0s ease-in-out infinite;
}

@keyframes pulseSize {
    0%, 100% {
        width: 120px;
        height: 120px;
    }
    50% {
        width: 160px;
        height: 160px;
    }
}
/* #endregion */

/* #region WORK */

.work{

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 10px;
    isolation: isolate;

    position: relative;
    width: calc(100% - 40px);
    height: auto;

    background: #FFFFFF;

}
.work-list{
    /* Tiles */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;

    width: 100%;
    height: auto;
    min-height: calc(240px * 3); /* 3 visible items */


    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 2;

}

.work-item{
    /* UX */
    position: relative;
    box-sizing: border-box;

    /* Auto layout */

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px 240px;
    gap: 64px;

    width: 100%;
    height: 240px;

    border-bottom: 1px solid #000000;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    cursor: pointer;

    transition: padding 0.3s ease;
}
.work-item h2{
    width: auto;
    font-size: 32px;
}
.work-item h3{
    font-size: 24px;
}
.work-item:hover {
    padding-left: 128px;
    padding-right: 128px;
}

.work-item.extra {
    display: none;
}

.work-item.show {
    display: flex;
}

.work-expander {
    position: relative;

    margin-top: 16px;
    padding: 16px 48px;
    background-color: var(--prime-pink);
    color: var(--bg);
    border: none;
    border-radius: 100px;

    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    order: 2;

}

.work-expander:hover {
    background-color: var(--goorange);
    color: white;
}
/* #endregion */




body.no-scroll {
    overflow: hidden;
    height: 100dvh;
}



/* #region INTRO + CTA */
.intro-cta {
    /* Frame 23 */

    /* Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 0px;
    gap: 32px;

    width: 100%;
    height: auto;


    /* Inside auto layout */
    flex: none;
    order: 6;
    align-self: stretch;
    flex-grow: 0;
    z-index: 6;

}
.intro-cta h2 {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 36px;
    width: auto;
/* font-family: 'Bebas Neue';
font-weight: 400; */
font-style: normal;
color: var(--gray-700);

}
.intro-cta p {
    font-family: 'Inter';
    font-size: 20px;
    color: var(--gray-800);
    margin-bottom: 24px;
}
.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--prime-pink);
    color: var(--bg);
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}
.cta-button:hover {
    background-color: var(--goorange);
    color: white;
}
/* #endregion */

/* #region SOCIAL PROOF */

.social-proof {
    position: relative;
    padding: 128px;
    background-color: var(--white-off);
    text-align: center;
    overflow: hidden;
}
.social-proof p {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);


    /* font-family: 'Inter';
    font-weight: 400; */
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 0;
}
/* Animated Logo Scroll Effect */
.logo-bar {
  position: relative;
  white-space: nowrap;
}

.logo-bar-inner {
  display: inline-block;
  animation: scroll-left 100s linear infinite;
  will-change: transform;
}

.logo-bar:hover .logo-bar-inner {
  animation-play-state: paused;
}

.logo-svg {
  display: inline-block;
  margin: 0 64px;
  vertical-align: middle;
  max-height: 48px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.logo-svg:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* #endregion */
/* #region FOOTER */

.footer{
    width: 100%;
    height: auto;
    background-color: var(--bg);
}
.footer-base{
    /* social proof */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 32px;

position: relative;
width: auto;
height: auto;

background: #222221;

}
.footer-socials{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0px;
    gap: 16px;

    width: auto;
    height: auto;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

}
.button-social{
    /* Frame 35 */
    display: flex;
    box-sizing: border-box;
    gap: 16px;

    width: 40px;
    height: 40px;

    background: #383232;
    border: 1px solid #EAE6E1;
    border-radius: 200px;
    align-items: center;
    justify-content: center;
    align-content: center;

    /* Inside auto layout */
    flex: none;
    order: 3;
    flex-grow: 0;

}
.copyright{
    /* logo */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1px 0px;
    gap: 16px;

    width: auto;
    height: auto;


    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;


}
.copyright p{
    font-family: "Inter";
    font-size: 18px;
}
/* #endregion FOOTER */

/* Loader styles */
body.is-loading { overflow: hidden; }
#loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms ease, visibility 400ms ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
#loader .loader-inner {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(28px, 6vw, 72px);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: -0.02em;
}