@font-face {
    font-family: "Wosker";
    src: url(../assets/Wosker.woff2) format("woff2"), url(../assets/Wosker.woff) format("woff");
    font-display: block
}

body {
    background-color: #FFFDF5;
    color: #18181B;
    cursor: none;
    overflow-x: hidden
}

.bg-hero-radar {
    background: radial-gradient(circle at 50% 50%, rgb(255 200 0 / .4) 0%, rgb(255 200 0 / .4) 15%, rgb(233 213 255 / .6) 15%, rgb(233 213 255 / .6) 35%, transparent 35%), radial-gradient(circle at 50% 50%, transparent 0%, transparent 35%, rgb(134 239 172 / .4) 35%, rgb(134 239 172 / .4) 55%, transparent 55%), radial-gradient(circle at 50% 50%, transparent 0%, transparent 55%, rgb(255 200 0 / .25) 55%, rgb(255 200 0 / .25) 80%, transparent 80%), radial-gradient(circle at 50% 50%, transparent 0%, transparent 80%, rgb(253 164 175 / .3) 80%, rgb(253 164 175 / .3) 100%, transparent 100%);
    background-size: 100% 100%
}

.border--organic {
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px
}

.border--organic-sm {
    border-radius: 20px 5px 20px 5px / 5px 20px 5px 20px
}

.border--hand {
    border-radius: 2% 5% 1% 4% / 3% 1% 6% 2%
}

.perspective-1000 {
    perspective: 1000px
}

.cursor__dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    width: 8px;
    height: 8px;
    background-color: #18181B
}

.cursor__outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    width: 40px;
    height: 40px;
    border: 1px solid #18181B;
    transition: width 0.2s, height 0.2s, background-color 0.2s
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative
}

.marquee__content {
    display: inline-block;
    animation: marquee 20s linear infinite
}

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

.vertical-marquee-mask {
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent)
}

.vertical-marquee-col {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.anim-scroll-up {
    animation: scrollUp 40s linear infinite
}

.anim-scroll-down {
    animation: scrollDown 40s linear infinite
}

@keyframes scrollUp {
    0% {
        transform: translateY(0)
    }
    100% {
        transform: translateY(-50%)
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%)
    }
    100% {
        transform: translateY(0)
    }
}

.link__underline {
    position: relative;
    text-decoration: none
}

.link__underline svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.3s ease
}

.link__underline:hover svg {
    stroke-dashoffset: 0
}

.input--brutalist:focus {
    outline: none;
    box-shadow: 4px 4px 0 0 #18181B;
    transform: translate(-2px, -2px)
}

.clientCard {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    width: 140px;
    height: 140px;
    background-color: #27272A;
    border: 1px solid #FFFDF5;
    box-shadow: 4px 4px 0 0 #FFFDF5;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 12px 3px 12px 3px / 3px 12px 3px 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.clientCard:hover {
    transform: translate(-4px, -4px) rotate(2deg);
    box-shadow: 8px 8px 0 0 #FFFDF5;
    background-color: #3F3F46
}

.clientCard__logo {
    font-size: 2.5rem;
    color: #FFF;
    opacity: .25;
    transition: all 0.3s ease
}

.clientCard:hover .clientCard__logo {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgb(255 255 255 / .8))
}

.gallery-track {
    display: flex;
    gap: 4rem;
    padding: 0 4rem;
    align-items: center;
    height: 100%;
    width: max-content;
    will-change: transform
}

.galleryCard {
    position: relative;
    background-color: #18181B;
    overflow: hidden;
    box-shadow: 8px 8px 0 0 #18181B;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 350px;
    height: 550px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 12px
}

@media (max-width:768px) {
    .galleryCard {
        width: 280px;
        height: 400px
    }
}

.galleryCard:hover {
    z-index: 10
}

.galleryCard__imageWrapper {
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.25, .46, .45, .94)
}

.galleryCard:hover .galleryCard__imageWrapper {
    transform: scale(1.05)
}

.galleryCard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s ease
}

.galleryCard:hover .galleryCard__img {
    filter: grayscale(0%) contrast(1)
}

.galleryCard__overlay {
    position: absolute;
    inset: 0;
    background: #FFC800;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(115%);
    transition: transform 0.8s cubic-bezier(.19, 1, .22, 1);
    padding: 2rem;
    z-index: 20;
    overflow: visible
}

.galleryCard:hover .galleryCard__overlay {
    transform: translateY(0%)
}

.galleryCard__tag {
    font-family: 'Space Mono', monospace;
    font-size: .75rem;
    text-transform: uppercase;
    border: 1px solid #18181B;
    padding: .25rem .75rem;
    border-radius: 99px;
    margin-bottom: 1rem;
    background: #FFFDF5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
    position: relative;
    z-index: 10
}

.galleryCard:hover .galleryCard__tag {
    opacity: 1;
    transform: translateY(0)
}

.galleryCard__title {
    font-weight: 400;
    font-size: 3.5rem;
    color: #18181B;
    line-height: .9;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(.34, 1.56, .64, 1) 0.3s;
    position: relative;
    z-index: 10
}

.galleryCard:hover .galleryCard__title {
    transform: translateY(0);
    opacity: 1
}

.expertiseCard {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease
}

.expertiseCard:hover {
    box-shadow: 8px 8px 0 0 #18181B
}

#hero-3d canvas {
    outline: none
}

.hex-bg-shape {
    position: absolute;
    opacity: .15;
    stroke: #FFC800;
    stroke-width: 2px;
    fill: none
}

.stat-item {
    transition: transform 0.3s ease;
    will-change: transform
}

.stat-float-badge {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #FFFDF5;
    border: 1px solid #18181B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 0 #18181B;
    z-index: 20;
    transition: transform 0.3s ease
}

.stat-float-badge:hover {
    transform: scale(1.1) rotate(10deg)
}

#galleryModal {
    pointer-events: none
}

#galleryModal.active {
    pointer-events: auto
}

.modal-card {
    max-height: 90vh
}

#galleryModal {
    pointer-events: none
}

#galleryModal.active {
    pointer-events: auto
}

.modal-card {
    max-height: 90vh
}

#modalImage {
    height: auto;
    object-fit: contain
}

.mobile-item {
    position: fixed;
    top: 30%;
    left: 66%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    right: 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: .75rem;
    text-align: center;
    border: 2px solid #18181B;
    box-shadow: 4px 4px 0 0 #18181B;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    z-index: 45;
    text-decoration: none;
    color: #18181B;
    transition: background-color 0.3s, box-shadow 0.3s
}

.mobile-item:nth-child(1) {
    background-color: #E9D5FF
}

.mobile-item:nth-child(2) {
    background-color: #86EFAC
}

.mobile-item:nth-child(3) {
    background-color: #BAE6FD
}

.mobile-item:nth-child(4) {
    background-color: #FFC800
}

.mobile-item:hover {
    box-shadow: 6px 6px 0 0 #18181B
}

#mobileMenuBackdrop {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease
}

#mobileMenuBackdrop.active {
    opacity: 1;
    pointer-events: auto
}

.hero__textOutline {
    -webkit-text-stroke: 2px #18181B;
    color: #fff0
}

@keyframes diagonal-scroll {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 80px 80px
    }
}

.serviceCard {
    position: relative;
    overflow: hidden
}

.serviceCard::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background-repeat: repeat;
    background-size: 80px 80px;
    animation: diagonal-scroll 4s linear infinite;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 0
}

.serviceCard:hover::before {
    opacity: .5
}

.serviceCard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #FFFDF5;
    background: radial-gradient(circle, #fff0 55%, rgb(255 253 245) 74%);
    pointer-events: none;
    z-index: 0
}

.serviceCard__icon,
.serviceCard__title,
.serviceCard__desc,
.serviceCard__number {
    position: relative;
    z-index: 1
}

.serviceCard:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23bae6fd' stroke='%23bae6fd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' data-lucide='flower' class='lucide lucide-flower w-8 h-8'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5'%3E%3C/path%3E%3Cpath d='M12 7.5V9'%3E%3C/path%3E%3Cpath d='M7.5 12H9'%3E%3C/path%3E%3Cpath d='M16.5 12H15'%3E%3C/path%3E%3Cpath d='M12 16.5V15'%3E%3C/path%3E%3Cpath d='m8 8 1.88 1.88'%3E%3C/path%3E%3Cpath d='M14.12 9.88 16 8'%3E%3C/path%3E%3Cpath d='m8 16 1.88-1.88'%3E%3C/path%3E%3Cpath d='M14.12 14.12 16 16'%3E%3C/path%3E%3C/svg%3E")
}

.serviceCard:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2386efac' stroke='%2386efac' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='w-9 h-9'%3E%3Cpath d='M12 9.5L14.2 10.8V13.2L12 14.5L9.8 13.2V10.8L12 9.5Z'%3E%3C/path%3E%3Cpath d='M12 4.5L14.2 5.8V8.2L12 9.5L9.8 8.2V5.8L12 4.5Z'%3E%3C/path%3E%3Cpath d='M12 14.5L14.2 15.8V18.2L12 19.5L9.8 18.2V15.8L12 14.5Z'%3E%3C/path%3E%3Cpath d='M16.3 7L18.5 8.3V10.7L16.3 12L14.1 10.7V8.3L16.3 7Z'%3E%3C/path%3E%3Cpath d='M16.3 12L18.5 13.3V15.7L16.3 17L14.1 15.7V13.3L16.3 12Z'%3E%3C/path%3E%3Cpath d='M7.7 7L9.9 8.3V10.7L7.7 12L5.5 10.7V8.3L7.7 7Z'%3E%3C/path%3E%3Cpath d='M7.7 12L9.9 13.3V15.7L7.7 17L5.5 15.7V13.3L7.7 12Z'%3E%3C/path%3E%3C/svg%3E")
}

.serviceCard:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fda4af' stroke='%23fda4af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' class='w-10 h-10'%3E%3Cpath d='M12 14C12 14 7 5 2 8C-1 10 4 16 9 16C11 16 12 14 12 14Z'%3E%3C/path%3E%3Cpath d='M12 14C12 14 17 5 22 8C25 10 20 16 15 16C13 16 12 14 12 14Z'%3E%3C/path%3E%3C/svg%3E")
}

.hero__container {
    width: 100%;
    max-width: 1280px
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0;
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        transform: scale(2)
    }
}

.animate-twinkle {
    animation-name: twinkle;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite
}

:root {
    --honeyColor: #ffe893;
    --honeyBorderColor: #ffd659;
    --size: 30px
}

#expertises-detail {
    background: radial-gradient(circle farthest-side at 0% 50%, var(--honeyColor) 23.5%, transparent 0)calc(var(--size)*0.7) var(--size), radial-gradient(circle farthest-side at 0% 50%, var(--honeyBorderColor) 24%, transparent 0)calc(var(--size)*19/30) var(--size), linear-gradient(var(--honeyColor) 14%, transparent 0, transparent 85%, var(--honeyColor) 0)0 0, linear-gradient(150deg, var(--honeyColor) 24%, var(--honeyBorderColor) 0, var(--honeyBorderColor) 26%, transparent 0, transparent 74%, var(--honeyBorderColor) 0, var(--honeyBorderColor) 76%, var(--honeyColor) 0)0 0, linear-gradient(30deg, var(--honeyColor) 24%, var(--honeyBorderColor) 0, var(--honeyBorderColor) 26%, transparent 0, transparent 74%, var(--honeyBorderColor) 0, var(--honeyBorderColor) 76%, var(--honeyColor) 0)0 0, linear-gradient(90deg, var(--honeyBorderColor) 2%, var(--honeyColor) 0, var(--honeyColor) 98%, var(--honeyBorderColor) 0%)0 0 var(--honeyColor);
    background-size: calc(var(--size)*4/3) calc(var(--size)*2)
}