:root {
    --black: #111111;
    --ink: #202225;
    --muted: #697077;
    --yellow: #f6b80f;
    --yellow-dark: #df9700;
    --white: #ffffff;
    --soft: #f6f5f1;
    --line: rgba(20, 20, 20, .12);
    --shadow: 0 24px 70px rgba(15, 18, 20, .16);
    --shadow-soft: 0 14px 44px rgba(15, 18, 20, .1);
    --radius: 8px;
    --max: 1180px;
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: fadeOut .28s ease both;
}

::view-transition-new(root) {
    animation: fadeIn .38s ease both;
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(17, 17, 17, .03) 1px, transparent 1px) 0 0 / 92px 92px,
        radial-gradient(circle at 88% 12%, rgba(246, 184, 15, .12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f5ef 52%, #ffffff 100%);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    text-rendering: geometricPrecision;

    --sb-track-color: rgba(0, 0, 0, 0);
    --sb-thumb-color: #4c3737;
    --sb-size: 11px;
    overflow: overlay;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(18, 19, 21, .88);
}


body::selection {
    color: var(--black);
    background: var(--yellow);
}

/* =========================================================
   LOADER HOME
========================================================= */

.home-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .28), transparent 28%),
        linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity .55s ease,
        visibility .55s ease;
}

.home-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.home-loader-inner {
    position: relative;
    display: grid;
    place-items: center;
    gap: 24px;
    transform: translateY(0);
    animation: loaderFloat 1.8s ease-in-out infinite;
}

.home-loader-inner img {
    width: clamp(80px, 18vw, 150px);
    height: auto;
    display: block;
    filter:
        drop-shadow(0 18px 34px rgba(0, 0, 0, .22))
        drop-shadow(0 4px 12px rgba(0, 0, 0, .18));
}

.home-loader-inner span {
    visibility: hidden;
    position: relative;
    width: 170px;
    height: 4px;
    overflow: hidden;
    display: block;
    background: rgba(255, 255, 255, .32);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
}

.home-loader-inner span::before {
    position: absolute;
    inset: 0;
    width: 42%;
    content: "";
    background: rgba(255, 255, 255, .94);
    border-radius: inherit;
    animation: loaderBar 1.15s ease-in-out infinite;
}

@keyframes loaderFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(280%);
    }
}

@media (max-width: 560px) {
    .home-loader-inner img {
        width: 170px;
    }

    .home-loader-inner span {
        width: 140px;
    }
}



img {
    display: block;
    max-width: 100%;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(28px, 3.3vw, 44px);
    font-weight: 900;
    line-height: 1.06;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 0 clamp(20px, 6vw, 90px);
    color: var(--white);
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition:
        min-height .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        backdrop-filter .25s ease;
}

.site-header::after {
    display: none;
}

.site-header.is-scrolled {
    min-height: 66px;
    background: rgba(18, 19, 21, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.logo-header{
    max-width: 220px;
}


.logo-footer{
    max-width: 180px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 28px;
    font-weight: 900;
}

.brand-mark {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--black);
    background: linear-gradient(180deg, var(--white), #d9d9d9);
    border-bottom: 8px solid var(--yellow);
    border-radius: 5px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .18), 0 8px 20px rgba(0, 0, 0, .25);
    font-size: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2.2vw, 34px);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav a {
    position: relative;
    padding: 29px 0 25px;
    color: rgba(255, 255, 255, .92);
    transition: color .2s ease;
}

.main-nav a:hover,
.main-nav .is-active {
    color: var(--white);
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--yellow);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav .is-active::after {
    transform: scaleX(1);
}

.linkedin {
    display: inline-grid;
    width: 25px;
    /* height: 20px; */
    color: white;
    /* place-items: center; */
    /* border: 1px solid rgba(255, 255, 255, .55); */
    border-radius: 4px;
    font-size: 11px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform .2s ease, opacity .2s ease;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 20px;
    overflow: hidden;
    isolation: isolate;

    color: var(--white);
    background:
        linear-gradient(135deg, rgba(246, 184, 15, .74), rgba(223, 151, 0, .64));
    /* border: 1px solid rgba(255, 255, 255, .24); */
    border-radius: 10px;

    box-shadow:
        0 18px 42px rgba(0, 0, 0, .18),
        0 10px 28px rgba(246, 184, 15, .20),
        inset 0 1px 0 rgba(255, 255, 255, .36);

    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .01em;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .28);

    backdrop-filter: blur(10px);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.btn::before {
    position: absolute;
    inset: 1px;
    z-index: -1;
    content: "";
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .26), transparent 52%);
    border-radius: inherit;
    pointer-events: none;
}

.btn::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;    
    position: relative;
    inset: auto;
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;

    color: var(--white);
    background: rgba(17, 17, 17, .22);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;

    font-size: 15px;
    font-weight: 900;
    line-height: 1;

    transform: none;
    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.btn-home::after {
    content: "\f063";
    font-family: "Font Awesome 5 Free";
}

.btn:hover {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 203, 47, .98), rgba(223, 151, 0, .92));
    border-color: rgba(255, 255, 255, .34);
    box-shadow:
        0 24px 58px rgba(0, 0, 0, .24),
        0 14px 34px rgba(246, 184, 15, .28),
        inset 0 1px 0 rgba(255, 255, 255, .46);
    transform: translateY(-2px);
}

.btn-home:hover {
    background: rgba(17, 17, 17, .32);
    border-color: rgba(255, 255, 255, .28);
    transform: translateY(3px);
}


.btn:hover::after {
    background: rgba(17, 17, 17, .32);
    border-color: rgba(255, 255, 255, .28);
    transform: translateX(4px);
}

.btn-home:hover::after {
    background: rgba(17, 17, 17, .32);
    border-color: rgba(255, 255, 255, .28);
    transform: translate(0px, 3px);
}

.btn:active {
    transform: translateY(0);
}

.dark-section .btn,
.hero-home .btn {
    background:
        linear-gradient(135deg, rgba(246, 184, 15, .90), rgba(223, 151, 0, .78));
    border-color: rgba(255, 255, 255, .28);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, .26),
        0 10px 30px rgba(246, 184, 15, .22),
        inset 0 1px 0 rgba(255, 255, 255, .38);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: var(--yellow);
}



.site-footer {
    color: #d7d7d7;
    position: relative;
    z-index: 5;
    background:#161719;
    isolation: isolate;
    border-top: 2px solid;
    border-image: linear-gradient(to right,
      transparent 25%,
      rgb(246, 184, 15) 25%,
      rgb(246, 184, 15) 75%,
      transparent 75%) 100% 1;

}

.footer-inner {
    max-width: var(--max);
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 34px;
    margin: 0 auto;
    padding: 54px clamp(22px, 4vw, 48px);
}

.site-footer h2 {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
}

.footer-badges strong {
    display: block;
    color: var(--white);
    font-size: 30px;
}

.footer-badges span,
.site-footer p {
    color: rgba(255, 255, 255, .65);
}

.site-footer a {
    color: var(--white);
    /* font-size: 22px; */
    font-weight: 500;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--yellow);
}

.site-footer p {
    color: var(--white);
    /* font-size: 22px; */
    font-weight: 400;
    text-decoration: none;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity .28s ease,
        transform .28s ease;
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1350px) {
    .site-header {
        min-height: 64px;
        padding: 0 18px;
    }
}

@media (max-width: 1200px) {
   
    .nav-toggle {
        display: block;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 64px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 22px 24px;
        background: rgba(24, 25, 27, .97);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 0;
    }

    .main-nav a::after {
        bottom: 8px;
    }

}

@media (max-width: 970px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 560px) {
    .brand {
        font-size: 24px;
    }
}
