@import url("css/shell-sidebar.css?v=20260614-css-cache");
@import url("css/header-social.css?v=20260614-css-cache");
@import url("css/hero.css?v=20260614-css-cache");
@import url("css/about-skills.css?v=20260614-css-cache");
@import url("css/projects.css?v=20260614-css-cache");
@import url("css/contact-overlays.css?v=20260614-css-cache");
@import url("css/work-references.css?v=20260614-css-cache");
@import url("css/contact-shared.css?v=20260614-css-cache");
@import url("css/legal-privacy.css?v=20260614-css-cache");
@import url("css/motion.css?v=20260614-css-cache");

@font-face {
    font-family: "Quantico";
    src: url("fonts/quantico-v19-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Roboto Mono";
    src: url("fonts/roboto-mono-v31-latin-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Poppins";
    src: url("fonts/poppins-v24-latin-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --page-black: rgb(0, 0, 0);
    --shell-bg-gradient: linear-gradient(75deg,
            rgb(0, 0, 0) 0%,
            rgb(6, 6, 6) 5%,
            rgb(15, 15, 15) 10%,
            rgb(25, 25, 25) 15%,
            rgb(43, 43, 43) 20%,
            rgb(25, 25, 25) 30%,
            rgb(21, 21, 21) 38%,
            rgb(28, 28, 28) 46%,
            rgb(43, 43, 43) 54%,
            rgb(28, 28, 28) 62%,
            rgb(21, 21, 21) 70%,
            rgb(18, 18, 18) 78%,
            rgb(14, 14, 14) 86%,
            rgb(10, 10, 10) 94%,
            rgb(0, 0, 0) 100%);

    --legal-privacy-bg-gradient: linear-gradient(75deg,
            rgb(0, 0, 0) 0%,
            rgb(10, 10, 10) 10%,
            rgb(14, 14, 14) 20%,
            rgb(18, 18, 18) 30%,
            rgb(28, 28, 28) 50%,
            rgb(18, 18, 18) 70%,
            rgb(14, 14, 14) 80%,
            rgb(10, 10, 10) 90%,
            rgb(0, 0, 0) 100%);

    --accent: rgb(181, 233, 59);
    --content-max: 1440px;
    --side: 172px;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    background: var(--page-black);
}


body {
    overflow-y: hidden;
    margin: 0;
    font-family: "Quantico", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: transparent;
    width: 100%;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}


[data-i18n]:not(h1, h2, h3, h4, p, button, a),
[data-project-i18n]:not(h1, h2, h3, h4, p, button, a) {
    transition: opacity 120ms ease-in-out;
}


body.is-language-changing [data-i18n],
body.is-language-changing [data-project-i18n] {
    opacity: 0;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}


.layout-shell {
    position: relative;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin-left: 0;
    margin-right: 0;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
}


.layout-shell.has-shell-bg {
    background-image: var(--shell-bg-gradient);
    background-repeat: no-repeat;
    background-size: var(--shell-bg-size);
    background-position: var(--shell-bg-x) 0;
}


.layout-shell.has-flow-bg {
    background-image: var(--legal-privacy-bg-gradient);
    background-repeat: no-repeat;
    background-size: var(--flow-bg-size);
    background-position: var(--flow-bg-x) 0;
}


.d-none {
    display: none !important;
}


.d-flex {
    display: flex !important;
}