:root {
    color-scheme: dark;

    --blue-1000: #020711;
    --blue-950: #030b18;
    --blue-900: #061225;
    --blue-850: #081a33;
    --blue-800: #0a2345;
    --blue-700: #0b3268;
    --blue-600: #0d4c9e;
    --blue-500: #1267d6;
    --blue-400: #1683ff;

    --green: #58c96d;
    --green-bright: #81e978;
    --green-pale: #d1ffcb;
    --green-dark: #278d42;

    --white: #ffffff;

    --text-primary: #f8fbff;
    --text-secondary: rgba(232, 240, 250, 0.72);
    --text-muted: rgba(210, 222, 238, 0.48);

    --line: rgba(116, 160, 225, 0.15);

    --container:
        min(
            1420px,
            calc(100% - clamp(28px, 6vw, 100px))
        );

    --detail-container:
        min(
            1480px,
            calc(100% - clamp(30px, 7vw, 120px))
        );

    --ease:
        cubic-bezier(0.16, 1, 0.3, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;

    color: var(--text-primary);
    background: var(--blue-950);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "SF Pro Text",
        "Segoe UI",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    color: inherit;
    font: inherit;
}

img,
video,
svg,
iframe {
    display: block;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--blue-950);
    background: var(--green-bright);
}

:focus-visible {
    outline: 3px solid rgba(129, 233, 120, 0.65);
    outline-offset: 4px;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.detail-container {
    width: var(--detail-container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;

    top: 10px;
    left: 10px;

    padding: 10px 16px;

    color: var(--blue-950);
    background: var(--green-pale);

    border-radius: 100px;

    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;

    z-index: 1000;

    top: 0;
    right: 0;
    left: 0;

    height: 118px;

    background: transparent;

    isolation: isolate;

    transition:
        height 260ms ease;
}

.site-header::before {
    position: absolute;

    z-index: -2;

    top: 0;
    right: 0;
    left: 0;

    height: 170px;

    content: "";

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 24, 0.92) 0%,
            rgba(3, 11, 24, 0.68) 52%,
            rgba(3, 11, 24, 0.2) 82%,
            transparent 100%
        );

    backdrop-filter:
        blur(20px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(20px)
        saturate(125%);

    mask-image:
        linear-gradient(
            180deg,
            black 0%,
            black 55%,
            rgba(0, 0, 0, 0.72) 76%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            180deg,
            black 0%,
            black 55%,
            rgba(0, 0, 0, 0.72) 76%,
            transparent 100%
        );
}

.site-header.is-scrolled::before {
    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 24, 0.99) 0%,
            rgba(3, 11, 24, 0.9) 55%,
            rgba(3, 11, 24, 0.34) 82%,
            transparent 100%
        );

    backdrop-filter:
        blur(30px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(140%);
}

.header-inner {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    width:
        calc(
            100% -
            clamp(30px, 4vw, 68px)
        );

    height: 100%;

    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 150px;

    margin:
        20px 0 0;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;

    align-items: center;

    gap:
        clamp(
            32px,
            3vw,
            54px
        );

    min-height: 62px;

    margin-top: 18px;

    padding:
        0 28px;

    border:
        1px solid
        rgba(105, 155, 230, 0.16);

    border-radius: 999px;

    background:
        rgba(3, 11, 24, 0.72);

    box-shadow:
        0 12px 40px
        rgba(0, 4, 15, 0.2),

        inset 0 1px 0
        rgba(255, 255, 255, 0.035);

    backdrop-filter:
        blur(24px)
        saturate(135%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(135%);
}

.site-header.is-scrolled
.main-navigation {
    background:
        rgba(3, 11, 24, 0.93);
}

.main-navigation a {
    display: flex;

    align-items: center;

    min-height: 60px;

    padding: 0;

    color:
        rgba(226, 235, 247, 0.68);

    font-size: 0.94rem;
    font-weight: 500;

    letter-spacing: 0.025em;

    transition:
        color 180ms ease;
}

.main-navigation a:hover {
    color: white;
}


/* =========================================================
   MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    position: relative;

    flex: 0 0 auto;

    width: 52px;
    height: 52px;

    padding: 0;

    border:
        1px solid
        rgba(105, 155, 230, 0.2);

    border-radius: 17px;

    background:
        rgba(3, 11, 24, 0.78);

    box-shadow:
        0 12px 35px
        rgba(0, 4, 15, 0.3),

        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

    cursor: pointer;

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    transition:
        border-color 200ms ease,
        background 200ms ease,
        transform 200ms ease;
}

.menu-toggle:hover {
    border-color:
        rgba(129, 233, 120, 0.4);

    background:
        rgba(8, 26, 51, 0.92);
}

.menu-toggle span {
    display: block;

    width: 21px;
    height: 1.5px;

    margin:
        6px auto;

    border-radius: 100px;

    background: white;
}


/* =========================================================
   FULL SCREEN MENU
   ========================================================= */

.mobile-menu {
    position: fixed;

    z-index: 5000;

    inset: 0;

    visibility: hidden;
    opacity: 0;

    overflow: hidden;

    pointer-events: none;

    background:
        linear-gradient(
            145deg,
            #020711 0%,
            #030b18 50%,
            #061225 100%
        );

    transition:
        opacity 380ms ease,
        visibility 380ms ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}

.mobile-menu::before {
    position: absolute;

    inset: 0;

    content: "";

    pointer-events: none;

    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(100, 147, 218, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(100, 147, 218, 0.04) 1px,
            transparent 1px
        );

    background-size:
        84px 84px;
}

.mobile-menu-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(125px);

    opacity: 0.2;
}

.mobile-menu-glow-one {
    top: -22vw;
    right: -18vw;

    width: 55vw;

    aspect-ratio: 1;

    background:
        var(--blue-400);
}

.mobile-menu-glow-two {
    bottom: -26vw;
    left: -20vw;

    width: 48vw;

    aspect-ratio: 1;

    background:
        var(--green);
}

.mobile-menu-inner {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    width:
        min(
            1500px,
            calc(100% - clamp(40px, 7vw, 130px))
        );

    min-height: 100svh;

    margin-inline: auto;

    padding:
        34px 0 30px;
}


/* =========================================================
   MENU TOP
   ========================================================= */

.mobile-menu-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 34px;

    border-bottom:
        1px solid
        rgba(115, 158, 222, 0.17);
}

.mobile-menu-brand {
    display: block;
}

.mobile-menu-brand img {
    width:
        clamp(
            90px,
            8vw,
            150px
        );

    margin: 0;
}

.mobile-menu-close {
    position: relative;

    flex: 0 0 auto;

    width: 62px;
    height: 62px;

    padding: 0;

    border:
        1px solid
        rgba(105, 155, 230, 0.22);

    border-radius: 20px;

    background:
        rgba(6, 18, 37, 0.74);

    box-shadow:
        0 14px 42px
        rgba(0, 4, 15, 0.28),

        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

    cursor: pointer;

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    transition:
        border-color 200ms ease,
        background 200ms ease,
        transform 300ms var(--ease);
}

.mobile-menu-close:hover {
    border-color:
        rgba(129, 233, 120, 0.5);

    background:
        rgba(8, 26, 51, 0.96);

    transform:
        rotate(5deg);
}

.mobile-menu-close span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 27px;
    height: 2px;

    border-radius: 10px;

    background: white;
}

.mobile-menu-close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* =========================================================
   MENU NAVIGATION
   ========================================================= */

.mobile-menu-navigation {
    display: grid;

    width: 100%;

    margin-top:
        clamp(
            42px,
            7vh,
            90px
        );

    border-top:
        1px solid
        rgba(115, 158, 222, 0.14);
}

.mobile-menu-navigation a {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height:
        clamp(
            88px,
            12vh,
            145px
        );

    padding:
        0 clamp(4px, 1vw, 16px);

    overflow: hidden;

    color:
        rgba(248, 251, 255, 0.96);

    border-bottom:
        1px solid
        rgba(115, 158, 222, 0.14);

    transition:
        color 250ms ease,
        padding 350ms var(--ease),
        background 250ms ease;
}

.mobile-menu-navigation a::before {
    position: absolute;

    top: 50%;
    left: 0;

    width: 3px;
    height: 0;

    content: "";

    border-radius: 999px;

    background:
        var(--green-bright);

    transform:
        translateY(-50%);

    transition:
        height 300ms var(--ease);
}

.mobile-menu-navigation a::after {
    position: absolute;

    inset:
        0 auto 0 0;

    width: 0;

    content: "";

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(18, 103, 214, 0.12),
            transparent
        );

    transition:
        width 350ms var(--ease);
}

.mobile-menu-navigation a span,
.mobile-menu-navigation a small {
    position: relative;

    z-index: 2;
}

.mobile-menu-navigation a span {
    font-size:
        clamp(
            2.7rem,
            6vw,
            6.2rem
        );

    font-weight: 500;

    line-height: 0.92;

    letter-spacing:
        -0.055em;
}

.mobile-menu-navigation a small {
    color:
        rgba(163, 188, 224, 0.48);

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing:
        0.15em;

    transition:
        color 200ms ease;
}

.mobile-menu-navigation a:hover {
    padding-left: 28px;

    color:
        var(--green-pale);
}

.mobile-menu-navigation a:hover::before {
    height: 46%;
}

.mobile-menu-navigation a:hover::after {
    width: 52%;
}

.mobile-menu-navigation a:hover small {
    color:
        var(--green-bright);
}

.mobile-menu-navigation
.mobile-menu-contact-link {
    color:
        var(--green-bright);
}


/* =========================================================
   MENU BOTTOM
   ========================================================= */

.mobile-menu-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-top: auto;

    padding-top: 34px;

    border-top:
        1px solid
        rgba(115, 158, 222, 0.16);
}

.mobile-menu-signature {
    display: grid;

    gap: 7px;
}

.mobile-menu-signature span {
    color: white;

    font-size: 0.9rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.mobile-menu-signature small {
    color:
        rgba(185, 207, 239, 0.48);

    font-size: 0.65rem;

    letter-spacing: 0.06em;
}

.mobile-menu-email {
    color:
        rgba(245, 249, 255, 0.9);

    font-size: 0.88rem;

    transition:
        color 180ms ease;
}

.mobile-menu-email:hover {
    color:
        var(--green-pale);
}


/* =========================================================
   HOME HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100svh;

    padding:
        84px 20px 20px;

    overflow: hidden;

    background:
        var(--blue-950);
}

.hero-mosaic {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-template-rows:
        repeat(3, 1fr);

    gap: 11px;

    height:
        calc(100svh - 104px);

    overflow: hidden;

    border-radius:
        0 0 26px 26px;

    background:
        var(--blue-900);
}

.hero-tile {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(110, 151, 218, 0.08);

    border-radius: 9px;

    background:
        var(--blue-850);
}

.hero-tile-01 {
    grid-column:
        1 / 3;

    grid-row:
        1;
}

.hero-tile-02 {
    grid-column:
        3 / 7;

    grid-row:
        1;
}

.hero-tile-03 {
    grid-column:
        7 / 10;

    grid-row:
        1;
}

.hero-tile-04 {
    grid-column:
        10 / 13;

    grid-row:
        1;
}

.hero-tile-05 {
    grid-column:
        1 / 5;

    grid-row:
        2;
}

.hero-tile-06 {
    grid-column:
        5 / 8;

    grid-row:
        2;
}

.hero-tile-07 {
    grid-column:
        8 / 13;

    grid-row:
        2;
}

.hero-tile-08 {
    grid-column:
        1 / 3;

    grid-row:
        3;
}

.hero-tile-09 {
    grid-column:
        3 / 6;

    grid-row:
        3;
}

.hero-tile-10 {
    grid-column:
        6 / 10;

    grid-row:
        3;
}

.hero-tile-11 {
    grid-column:
        10 / 13;

    grid-row:
        3;
}

.hero-middle-tile {
    border-color:
        rgba(91, 145, 221, 0.1);

    background:
        linear-gradient(
            145deg,
            rgba(6, 20, 42, 0.98),
            rgba(3, 11, 24, 0.99)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.018);
}

.hero-tile-05.hero-middle-tile {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(18, 103, 214, 0.12),
            transparent 62%
        ),
        linear-gradient(
            145deg,
            rgba(5, 18, 38, 0.98),
            rgba(3, 11, 24, 0.99)
        );
}

.hero-tile-06.hero-middle-tile {
    background:
        radial-gradient(
            ellipse at 50% 50%,
            rgba(22, 131, 255, 0.13),
            transparent 66%
        ),
        linear-gradient(
            145deg,
            rgba(7, 26, 54, 0.98),
            rgba(3, 11, 24, 0.99)
        );
}

.hero-tile-07.hero-middle-tile {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(18, 103, 214, 0.09),
            transparent 62%
        ),
        linear-gradient(
            145deg,
            rgba(5, 18, 38, 0.98),
            rgba(3, 11, 24, 0.99)
        );
}

.hero-tile-picture {
    position: absolute;

    z-index: 3;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;
}

.hero-tile-image {
    position: absolute;

    z-index: 3;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 1;

    filter:
        saturate(0.9)
        contrast(1.08)
        brightness(0.76);

    transition:
        transform 1.2s var(--ease),
        filter 450ms ease;
}

.hero-tile:hover
.hero-tile-image {
    transform:
        scale(1.04);

    filter:
        saturate(0.97)
        contrast(1.08)
        brightness(0.84);
}

.hero-tile-fallback {
    position: absolute;

    z-index: 1;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(22, 131, 255, 0.28),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--blue-700),
            var(--blue-950)
        );
}

.fallback-agriculture {
    background:
        radial-gradient(
            circle at 30% 45%,
            rgba(129, 233, 120, 0.26),
            transparent 22%
        ),
        linear-gradient(
            145deg,
            var(--blue-700),
            var(--blue-950)
        );
}

.fallback-health {
    background:
        radial-gradient(
            circle at 55% 45%,
            rgba(22, 131, 255, 0.28),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            var(--blue-800),
            var(--blue-950)
        );
}

.fallback-mobility {
    background:
        radial-gradient(
            circle at 38% 45%,
            rgba(22, 131, 255, 0.32),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--blue-700),
            var(--blue-950)
        );
}

.fallback-industry {
    background:
        radial-gradient(
            circle at 68% 36%,
            rgba(22, 131, 255, 0.32),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--blue-700),
            var(--blue-950)
        );
}

.hero-mosaic-shade {
    position: absolute;

    z-index: 10;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(2, 7, 17, 0.05) 0%,
            rgba(2, 7, 17, 0.12) 28%,
            rgba(2, 7, 17, 0.24) 40%,
            rgba(2, 7, 17, 0.18) 62%,
            rgba(2, 7, 17, 0.13) 75%,
            rgba(2, 7, 17, 0.24) 100%
        );
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-title-wrap {
    position: absolute;

    z-index: 30;

    top: 50%;
    left: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width:
        calc(100% - 60px);

    text-align: center;

    pointer-events: none;

    transform:
        translate(-50%, -50%);
}

.hero-philosophy {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 4px;

    margin:
        0 0 18px;

    color:
        var(--green-pale);

    font-size:
        clamp(
            0.95rem,
            1.4vw,
            1.75rem
        );

    font-weight: 400;

    line-height: 1.18;
    letter-spacing: 0.01em;

    text-align: center;

    font-variant:
        all-petite-caps;

    text-shadow:
        0 5px 24px
        rgba(0, 0, 0, 0.85);
}

.hero-philosophy span {
    display: block;
}

.hero-title-wrap h1 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            5rem,
            13.4vw,
            15rem
        );

    font-weight: 480;

    line-height: 0.82;
    letter-spacing: -0.078em;

    white-space: nowrap;

    text-shadow:
        0 12px 55px
        rgba(0, 0, 0, 0.32);
}

.hero-glow {
    position: absolute;

    width: 34vw;

    aspect-ratio: 1;

    border-radius: 50%;

    filter:
        blur(120px);

    opacity: 0.22;
}

.hero-glow-left {
    bottom: -30%;
    left: -15%;

    background:
        var(--blue-500);
}

.hero-glow-right {
    top: 3%;
    right: -20%;

    background:
        var(--green);
}

.hero-scroll {
    position: absolute;

    z-index: 40;

    bottom: 36px;
    left: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 104px;
    min-height: 44px;

    padding:
        0 21px;

    color:
        rgba(245, 249, 255, 0.88);

    border:
        1px solid
        rgba(129, 233, 120, 0.2);

    border-radius: 999px;

    background:
        rgba(3, 11, 24, 0.72);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transform:
        translateX(-50%);
}

.hero-scroll:hover {
    color:
        var(--green-pale);

    border-color:
        rgba(129, 233, 120, 0.4);

    background:
        rgba(8, 26, 51, 0.9);
}


/* =========================================================
   EXPERTISE
   ========================================================= */

.expertise-showcase {
    position: relative;

    background:
        var(--blue-950);
}

.expertise-panel {
    --glow-x: 50%;
    --blue-rgb: 18, 103, 214;

    position: relative;

    min-height: 100svh;

    overflow: hidden;

    background:
        var(--blue-950);

    isolation: isolate;
}

.expertise-panel::before {
    position: absolute;

    z-index: -4;

    inset: 0;

    content: "";

    background:
        radial-gradient(
            ellipse 72% 62%
            at var(--glow-x) 49%,
            rgba(var(--blue-rgb), 0.48),
            rgba(var(--blue-rgb), 0.3) 28%,
            rgba(var(--blue-rgb), 0.13) 50%,
            transparent 78%
        );
}

.expertise-panel::after {
    position: absolute;

    z-index: -2;

    inset: 0;

    content: "";

    background:
        linear-gradient(
            180deg,
            var(--blue-950),
            rgba(3, 11, 24, 0.3) 22%,
            transparent 35%,
            transparent 68%,
            rgba(3, 11, 24, 0.3) 82%,
            var(--blue-950)
        );
}

.expertise-agriculture {
    --glow-x: 42%;
}

.expertise-health {
    --glow-x: 64%;
}

.expertise-mobility {
    --glow-x: 39%;
}

.expertise-industry {
    --glow-x: 65%;
}

.expertise-dual {
    --glow-x: 40%;
}

.expertise-ecommerce {
    --glow-x: 65%;
}

.expertise-panel-grid {
    position: absolute;

    z-index: -3;

    inset: 0;

    opacity: 0.18;

    background-image:
        linear-gradient(
            rgba(95, 143, 215, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(95, 143, 215, 0.06) 1px,
            transparent 1px
        );

    background-size:
        86px 86px;
}


/* =========================================================
   EXPERTISE TITLE
   ========================================================= */

.scene-title {
    position: absolute;

    z-index: 35;

    top:
        clamp(
            155px,
            18vh,
            210px
        );

    max-width:
        calc(100% - 80px);

    overflow: visible;

    pointer-events: none;
}

.scene-left
.scene-title {
    left:
        clamp(
            48px,
            6vw,
            110px
        );
}

.scene-right
.scene-title {
    right:
        clamp(
            48px,
            6vw,
            110px
        );

    text-align: left;
}

.scene-title > span {
    position: relative;

    z-index: 5;

    display: block;

    width: max-content;

    margin-bottom: 10px;

    color:
        var(--green-bright);

    font-size: 0.58rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    white-space: nowrap;
}

.scene-left
.scene-title > span {
    margin-right: auto;
}

.scene-right
.scene-title > span {
    position: absolute;

    top: -38px;
    right: 4px;

    margin: 0;
}

.scene-title h2 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: white;

    font-size:
        clamp(
            8rem,
            15vw,
            17rem
        );

    font-weight: 460;

    line-height: 0.74;
    letter-spacing: -0.075em;

    text-shadow:
        0 15px 45px
        rgba(0, 4, 15, 0.26);
}

.scene-title h2 a {
    color: inherit;

    pointer-events: auto;

    transition:
        color 250ms ease;
}

.scene-title h2 a:hover {
    color:
        var(--green-pale);
}

.expertise-ecommerce
.scene-title {
    top:
        clamp(
            118px,
            14vh,
            165px
        );
}


/* =========================================================
   EXPERTISE MEDIA
   ========================================================= */

.scene-video-stack {
    position: absolute;

    z-index: 5;

    top:
        clamp(
            230px,
            29vh,
            330px
        );

    width:
        min(
            68vw,
            1080px
        );

    height:
        min(
            56vh,
            610px
        );
}

.scene-video-link {
    display: block;

    cursor: pointer;
}

.scene-left
.scene-video-stack {
    right:
        clamp(
            30px,
            6vw,
            105px
        );
}

.scene-right
.scene-video-stack {
    left:
        clamp(
            30px,
            6vw,
            105px
        );
}

.video-ghost {
    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(83, 138, 221, 0.14);

    border-radius: 22px;

    background:
        rgba(8, 26, 51, 0.35);
}

.scene-left
.video-ghost-1 {
    transform:
        translate(28px, 20px);
}

.scene-left
.video-ghost-2 {
    opacity: 0.6;

    transform:
        translate(58px, 40px);
}

.scene-left
.video-ghost-3 {
    opacity: 0.3;

    transform:
        translate(88px, 62px);
}

.scene-right
.video-ghost-1 {
    transform:
        translate(-28px, 20px);
}

.scene-right
.video-ghost-2 {
    opacity: 0.6;

    transform:
        translate(-58px, 40px);
}

.scene-right
.video-ghost-3 {
    opacity: 0.3;

    transform:
        translate(-88px, 62px);
}

.scene-video-frame {
    position: absolute;

    inset: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(78, 135, 219, 0.19);

    border-radius: 22px;

    background:
        var(--blue-900);

    box-shadow:
        0 45px 110px
        rgba(0, 5, 15, 0.5);
}

.scene-video-link:hover
.scene-video-frame {
    border-color:
        rgba(129, 233, 120, 0.28);
}

.scene-video,
.scene-image {
    position: absolute;

    z-index: 3;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.scene-video {
    opacity: 0;
}

.scene-video.is-loaded {
    opacity: 1;
}

.scene-image {
    opacity: 1;

    filter:
        saturate(0.95)
        contrast(1.04)
        brightness(0.92);
}

.video-placeholder {
    position: absolute;

    z-index: 1;

    inset: 0;

    background:
        radial-gradient(
            circle at 52% 48%,
            rgba(22, 131, 255, 0.28),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            var(--blue-700),
            var(--blue-950)
        );
}

.placeholder-grid {
    position: absolute;

    inset: 0;

    opacity: 0.28;

    background-image:
        linear-gradient(
            rgba(99, 151, 224, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(99, 151, 224, 0.07) 1px,
            transparent 1px
        );

    background-size:
        45px 45px;
}

.placeholder-orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border:
        1px solid
        rgba(77, 142, 237, 0.27);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

.orbit-placeholder-a {
    width:
        min(
            55vh,
            500px
        );

    aspect-ratio: 1;
}

.orbit-placeholder-b {
    width:
        min(
            35vh,
            320px
        );

    aspect-ratio: 1;

    border-color:
        rgba(129, 233, 120, 0.25);

    border-style: dashed;
}

.placeholder-node {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 15px;
    height: 15px;

    border:
        3px solid white;

    border-radius: 50%;

    background:
        var(--green-bright);

    box-shadow:
        0 0 35px
        rgba(129, 233, 120, 0.8),

        0 0 90px
        rgba(22, 131, 255, 0.4);

    transform:
        translate(-50%, -50%);
}

.video-overlay {
    position: absolute;

    z-index: 4;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 24, 0.08),
            transparent 55%,
            rgba(3, 11, 24, 0.45)
        );
}

.expertise-ecommerce
.video-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(2, 7, 17, 0.45) 0%,
            rgba(2, 7, 17, 0.22) 30%,
            rgba(2, 7, 17, 0.08) 58%,
            rgba(2, 7, 17, 0.48) 100%
        );
}


/* =========================================================
   MEDIA LABEL
   ========================================================= */

.video-tech-label {
    position: absolute;

    z-index: 5;

    top: 22px;
    right: 24px;

    min-width: 175px;

    padding:
        13px 17px;

    text-align: right;

    border:
        1px solid
        rgba(129, 233, 120, 0.12);

    border-radius: 14px;

    background:
        rgba(3, 11, 24, 0.78);

    box-shadow:
        0 10px 30px
        rgba(0, 4, 15, 0.18),

        inset 0 1px 0
        rgba(255, 255, 255, 0.035);

    backdrop-filter:
        blur(18px)
        saturate(125%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(125%);
}

.scene-right
.video-tech-label {
    right: auto;
    left: 24px;

    text-align: left;
}

.video-tech-label span,
.video-tech-label strong {
    display: block;
}

.video-tech-label span {
    color:
        var(--green-bright);

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.video-tech-label strong {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.61rem;

    letter-spacing: 0.025em;
}


/* =========================================================
   EXPERTISE INFO
   ========================================================= */

.scene-info {
    position: absolute;

    z-index: 20;

    top: 64%;

    width:
        min(
            300px,
            22vw
        );

    padding: 24px;

    border:
        1px solid
        rgba(79, 135, 219, 0.19);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 35, 69, 0.67),
            rgba(3, 11, 24, 0.76)
        );

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

    transform:
        translateY(-50%);
}

.scene-left
.scene-info {
    left:
        clamp(
            34px,
            6vw,
            110px
        );
}

.scene-right
.scene-info {
    right:
        clamp(
            34px,
            6vw,
            110px
        );

    text-align: left;
}

.scene-number {
    display: block;

    margin-bottom: 16px;

    color:
        var(--green-bright);

    font-size: 0.58rem;
    font-weight: 800;
}

.scene-info h3 {
    margin: 0;

    color: white;

    font-size: 1.2rem;
}

.scene-divider {
    height: 1px;

    margin:
        18px 0;

    background:
        linear-gradient(
            90deg,
            rgba(129, 233, 120, 0.48),
            transparent
        );
}

.scene-info p {
    margin: 0;

    color:
        rgba(220, 230, 244, 0.68);

    font-size: 0.75rem;

    line-height: 1.58;
}

.scene-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 19px;
}

.scene-right
.scene-tags {
    justify-content: flex-start;
}

.scene-tags span {
    padding:
        6px 8px;

    color:
        var(--green-pale);

    border:
        1px solid
        rgba(129, 233, 120, 0.16);

    border-radius: 100px;

    background:
        rgba(129, 233, 120, 0.05);

    font-size: 0.48rem;
}


/* =========================================================
   EXPERTISE NAVIGATION
   ========================================================= */

.expertise-navigation {
    position: fixed;

    z-index: 800;

    right: 50%;
    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 4px;

    width:
        min(
            980px,
            calc(100% - 32px)
        );

    padding: 6px;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    border:
        1px solid
        rgba(71, 126, 213, 0.17);

    border-radius: 100px;

    background:
        rgba(3, 11, 24, 0.92);

    backdrop-filter:
        blur(26px);

    -webkit-backdrop-filter:
        blur(26px);

    transform:
        translateX(50%)
        translateY(12px);

    transition:
        opacity 220ms ease,
        transform 320ms var(--ease);
}

.expertise-navigation.is-visible {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;

    transform:
        translateX(50%);
}

.expertise-nav-button {
    display: flex;

    flex:
        1 1 0;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-width: 135px;
    height: 47px;

    padding:
        0 14px;

    border: 0;

    border-radius: 100px;

    background:
        transparent;

    color:
        rgba(218, 229, 244, 0.55);

    cursor: pointer;

    white-space: nowrap;
}

.expertise-nav-button span {
    flex:
        0 0 auto;

    letter-spacing:
        0.075em;
}

.expertise-nav-button strong {
    flex:
        0 0 auto;

    font-weight: 650;

    letter-spacing:
        0.045em;

    white-space: nowrap;
}

.expertise-nav-button[
    data-expertise-target="expertise-ecommerce"
] {
    min-width: 170px;
}

.expertise-nav-button.is-active {
    color:
        var(--blue-950);

    background:
        linear-gradient(
            135deg,
            white,
            var(--green-pale)
        );
}


/* =========================================================
   LOCATIONS
   ========================================================= */

.locations-slider {
    --location-blue: 18, 103, 214;

    position: relative;

    min-height: 100svh;

    overflow: hidden;

    background:
        var(--blue-950);

    isolation: isolate;
}

.locations-slider[data-location-index="0"] {
    --location-blue:
        22, 131, 255;
}

.locations-slider[data-location-index="1"] {
    --location-blue:
        18, 103, 214;
}

.locations-slider[data-location-index="2"] {
    --location-blue:
        13, 76, 158;
}

.locations-slider[data-location-index="3"] {
    --location-blue:
        11, 50, 104;
}

.locations-background {
    position: absolute;

    z-index: -2;

    inset: 0;

    background:
        radial-gradient(
            ellipse 60% 58%
            at 50% 58%,
            rgba(var(--location-blue), 0.44),
            rgba(var(--location-blue), 0.18) 38%,
            transparent 70%
        ),
        linear-gradient(
            180deg,
            var(--blue-950),
            #020812 50%,
            var(--blue-950)
        );
}

.locations-inner {
    position: relative;

    min-height: 100svh;

    width:
        min(
            1540px,
            calc(100% - 80px)
        );

    margin-inline: auto;
}

.locations-header {
    position: absolute;

    z-index: 20;

    top:
        clamp(
            95px,
            10vh,
            125px
        );

    left: 0;
}

.locations-header span {
    display: block;

    margin-bottom: 10px;

    color:
        var(--green-bright);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.locations-header h2 {
    margin: 0;

    font-size:
        clamp(
            5rem,
            9vw,
            10rem
        );

    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -0.08em;
}


/* =========================================================
   LOCATION COUNTRIES
   ========================================================= */

.location-country-stage {
    position: absolute;

    z-index: 20;

    top: 58%;
    left: 0;

    width: 32%;
    height: 400px;

    transform:
        translateY(-50%);
}

.location-country {
    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;

    padding: 0;

    border: 0;

    background:
        transparent;

    text-align: left;

    cursor: pointer;

    transition:
        opacity 650ms var(--ease),
        transform 650ms var(--ease),
        filter 650ms var(--ease);
}

.location-country small,
.location-country strong,
.location-country span {
    display: block;
}

.location-country small {
    margin-bottom: 8px;

    color:
        var(--green-bright);

    font-size: 0.56rem;
    font-weight: 800;
}

.location-country strong {
    font-size:
        clamp(
            3rem,
            4.8vw,
            5.5rem
        );

    font-weight: 520;

    line-height: 0.88;

    letter-spacing: -0.065em;
}

.location-country span {
    margin-top: 10px;

    color:
        rgba(255, 255, 255, 0.65);
}

.location-country.is-active {
    z-index: 5;

    opacity: 1;

    filter:
        blur(0);

    transform:
        translateY(-50%);
}

.location-country.is-prev {
    opacity: 0.25;

    filter:
        blur(3px);

    transform:
        translateY(-50%)
        translateY(-150px)
        scale(0.72);
}

.location-country.is-next {
    opacity: 0.25;

    filter:
        blur(3px);

    transform:
        translateY(-50%)
        translateY(155px)
        scale(0.72);
}

.location-country.is-far {
    opacity: 0.08;

    filter:
        blur(8px);

    transform:
        translateY(-50%)
        translateY(290px)
        scale(0.57);
}


/* =========================================================
   LOCATION MAP
   ========================================================= */

.location-visual-stage {
    position: absolute;

    z-index: 15;

    top: 53%;
    left: 48%;

    width:
        min(
            390px,
            28vw
        );

    height:
        min(
            270px,
            19vw
        );

    transform:
        translate(-50%, -50%);
}

.location-visual {
    position: absolute;

    inset: 0;

    margin: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(125, 164, 225, 0.22);

    border-radius: 18px;

    background:
        var(--blue-900);

    box-shadow:
        0 40px 100px
        rgba(0, 4, 15, 0.45);

    transition:
        opacity 700ms var(--ease),
        transform 700ms var(--ease),
        filter 700ms var(--ease);
}

.location-visual img,
.location-visual iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    object-fit: cover;

    border-radius: inherit;
}

.location-visual.is-active {
    z-index: 10;

    opacity: 1;

    filter:
        blur(0);

    transform:
        rotate(-1.2deg);
}

.location-visual.is-prev {
    opacity: 0.17;

    filter:
        blur(7px);

    transform:
        translate(-185px, 190px)
        rotate(3deg)
        scale(0.86);
}

.location-visual.is-next {
    opacity: 0.2;

    filter:
        blur(6px);

    transform:
        translate(195px, -180px)
        rotate(-3deg)
        scale(0.9);
}

.location-visual.is-far {
    opacity: 0.07;

    filter:
        blur(12px);

    transform:
        translate(295px, 170px)
        rotate(5deg)
        scale(0.74);
}


/* =========================================================
   LOCATION DETAILS
   ========================================================= */

.location-details-stage {
    position: absolute;

    z-index: 20;

    top: 63%;
    right: 9%;

    width:
        min(
            430px,
            31vw
        );

    height: 450px;

    transform:
        translateY(-50%);
}

.location-details {
    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;

    transition:
        opacity 650ms var(--ease),
        transform 650ms var(--ease),
        filter 650ms var(--ease);
}

.location-detail-country {
    margin:
        0 0 9px;

    color:
        var(--green-bright);

    font-size: 0.64rem;
    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.location-details h3 {
    margin:
        0 0 30px;

    font-size:
        clamp(
            3rem,
            5vw,
            6rem
        );

    font-weight: 520;

    line-height: 0.86;

    letter-spacing: -0.07em;
}

.location-detail-row {
    padding:
        15px 0;

    border-top:
        1px solid
        rgba(117, 158, 221, 0.16);
}

.location-detail-row span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 0.55rem;
    font-weight: 750;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.location-detail-row p,
.location-detail-row a {
    margin: 0;

    color:
        rgba(236, 243, 253, 0.8);

    font-size: 0.83rem;

    line-height: 1.55;
}

.location-details.is-active {
    position: relative;

    z-index: 10;

    padding:
        30px 32px;

    opacity: 1;

    border:
        1px solid
        rgba(105, 155, 230, 0.18);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 26, 51, 0.92),
            rgba(3, 11, 24, 0.86)
        );

    box-shadow:
        0 30px 80px
        rgba(0, 4, 15, 0.46),

        inset 0 1px 0
        rgba(255, 255, 255, 0.05);

    backdrop-filter:
        blur(30px)
        saturate(140%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(140%);

    filter:
        blur(0);

    transform:
        translateY(-50%);
}

.location-details.is-active::before {
    position: absolute;

    top: 0;
    left: 32px;

    width: 70px;
    height: 2px;

    content: "";

    background:
        linear-gradient(
            90deg,
            var(--green-bright),
            transparent
        );
}

.location-details.is-prev {
    opacity: 0.13;

    filter:
        blur(5px);

    transform:
        translateY(-50%)
        translateY(-180px)
        scale(0.8);
}

.location-details.is-next {
    opacity: 0.13;

    filter:
        blur(5px);

    transform:
        translateY(-50%)
        translateY(195px)
        scale(0.8);
}

.location-details.is-far {
    opacity: 0.04;

    filter:
        blur(10px);

    transform:
        translateY(-50%)
        translateY(330px)
        scale(0.65);
}

.location-controls {
    position: absolute;

    z-index: 30;

    top: 57%;
    right: 0;

    display: grid;

    gap: 12px;

    transform:
        translateY(-50%);
}

.location-arrow {
    display: grid;

    place-items: center;

    width: 50px;
    height: 50px;

    padding: 0;

    color:
        var(--blue-950);

    border: 0;

    border-radius: 50%;

    background: white;

    cursor: pointer;

    font-size: 1.3rem;

    transition:
        background 180ms ease,
        transform 180ms ease;
}

.location-arrow:hover {
    background:
        var(--green-pale);

    transform:
        scale(1.04);
}

.location-index {
    position: absolute;

    right: 0;
    bottom: 38px;

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 0.58rem;
}

.location-index span:first-child {
    color:
        var(--green-bright);
}

.location-index i {
    width: 48px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--green-bright),
            rgba(255, 255, 255, 0.15)
        );
}


/* =========================================================
   DETAIL HERO
   ========================================================= */

.detail-hero {
    position: relative;

    min-height: 100svh;

    overflow: hidden;

    background:
        var(--blue-950);

    isolation: isolate;
}

.detail-hero-grid {
    position: absolute;

    z-index: -4;

    inset: 0;

    opacity: 0.3;

    background-image:
        linear-gradient(
            rgba(92, 145, 222, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(92, 145, 222, 0.05) 1px,
            transparent 1px
        );

    background-size:
        90px 90px;
}

.detail-hero-blue {
    position: absolute;

    z-index: -3;

    top: 5%;
    left: 20%;

    width: 70vw;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        rgba(18, 103, 214, 0.42);

    filter:
        blur(150px);
}

.detail-hero-green {
    position: absolute;

    z-index: -2;

    bottom: -30%;
    left: -12%;

    width: 36vw;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        rgba(129, 233, 120, 0.16);

    filter:
        blur(120px);
}

.detail-hero-inner {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 100svh;

    padding:
        150px 0 70px;
}

.detail-meta {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 32px;
}

.detail-meta span {
    color:
        var(--green-bright);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.detail-meta p {
    margin: 0;

    color:
        rgba(220, 232, 248, 0.45);

    font-size: 0.68rem;
}

.detail-hero h1 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            7rem,
            18vw,
            19rem
        );

    font-weight: 470;

    line-height: 0.74;

    letter-spacing: -0.095em;
}

.detail-hero-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-top: 80px;
}

.detail-hero-bottom > p {
    max-width: 500px;

    margin: 0;

    color:
        rgba(232, 240, 250, 0.75);

    font-size:
        clamp(
            1.05rem,
            1.5vw,
            1.35rem
        );

    line-height: 1.52;
}

.detail-back {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(224, 235, 249, 0.58);

    font-size: 0.72rem;
}

.detail-back span {
    color:
        var(--green-bright);
}

.detail-back:hover {
    color: white;
}


/* =========================================================
   DETAIL MEDIA
   ========================================================= */

.detail-media {
    padding:
        0 0
        clamp(
            130px,
            12vw,
            200px
        );

    background:
        var(--blue-950);
}

.detail-video-stack {
    position: relative;

    min-height:
        clamp(
            520px,
            64vw,
            830px
        );
}

.detail-video-ghost {
    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(82, 138, 222, 0.13);

    border-radius: 34px;

    background:
        rgba(8, 26, 51, 0.28);
}

.detail-video-ghost-01 {
    opacity: 0.65;

    transform:
        translate(24px, 24px);
}

.detail-video-ghost-02 {
    opacity: 0.3;

    transform:
        translate(48px, 48px);
}

.detail-video-frame {
    position: absolute;

    z-index: 3;

    inset: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(102, 156, 236, 0.19);

    border-radius: 34px;

    background:
        var(--blue-850);

    box-shadow:
        0 50px 140px
        rgba(0, 4, 15, 0.52);
}

.detail-video {
    position: absolute;

    z-index: 2;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition:
        opacity 500ms ease;
}

.detail-video.is-loaded {
    opacity: 1;
}

.detail-video-fallback {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 52%,
            rgba(129, 233, 120, 0.12),
            transparent 16%
        ),
        radial-gradient(
            ellipse 65% 60%
            at 50% 50%,
            rgba(18, 103, 214, 0.43),
            rgba(13, 76, 158, 0.18) 45%,
            transparent 75%
        ),
        var(--blue-900);
}

.detail-video-overlay {
    position: absolute;

    z-index: 3;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 24, 0.08),
            transparent 55%,
            rgba(3, 11, 24, 0.5)
        );
}

.detail-video-label {
    position: absolute;

    z-index: 4;

    top: 32px;
    right: 34px;

    text-align: right;
}

.detail-video-label span,
.detail-video-label strong {
    display: block;
}

.detail-video-label span {
    color:
        var(--green-bright);

    font-size: 0.52rem;

    letter-spacing: 0.14em;
}

.detail-video-label strong {
    margin-top: 6px;

    color:
        rgba(242, 247, 255, 0.72);

    font-size: 0.68rem;
}


/* =========================================================
   DETAIL STORY
   ========================================================= */

.detail-story {
    padding:
        clamp(
            120px,
            11vw,
            180px
        )
        0;

    background:
        linear-gradient(
            180deg,
            var(--blue-950),
            var(--blue-900) 50%,
            var(--blue-950)
        );
}

.detail-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(320px, 0.72fr);

    gap:
        clamp(
            70px,
            11vw,
            180px
        );

    align-items: start;
}

.detail-kicker {
    display: block;

    margin-bottom: 24px;

    color:
        var(--green-bright);

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.detail-story-heading h2 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            3.5rem,
            6vw,
            7rem
        );

    font-weight: 540;

    line-height: 0.94;

    letter-spacing: -0.07em;
}

.detail-story-heading h2 span {
    display: block;

    color:
        #9bb4d9;

    font-weight: 400;
}

.detail-story-copy {
    padding-top: 40px;
}

.detail-story-copy p {
    margin:
        0 0 28px;

    color:
        var(--text-secondary);

    font-size: 0.98rem;

    line-height: 1.75;
}

.detail-story-copy
.detail-lead {
    color:
        rgba(245, 249, 255, 0.92);

    font-size:
        clamp(
            1.2rem,
            1.7vw,
            1.55rem
        );

    line-height: 1.52;

    letter-spacing: -0.025em;
}


/* =========================================================
   DETAIL CAPABILITIES
   ========================================================= */

.detail-capabilities {
    padding:
        clamp(
            120px,
            11vw,
            180px
        )
        0;

    background:
        var(--blue-950);
}

.detail-section-head {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.detail-section-head
.detail-kicker {
    margin: 0;
}

.detail-section-head > p {
    max-width: 500px;

    margin: 0;

    color:
        var(--text-secondary);

    font-size: 0.9rem;

    line-height: 1.6;
}

.detail-capability-list {
    border-top:
        1px solid
        var(--line);
}

.detail-capability {
    display: grid;

    grid-template-columns:
        80px
        minmax(260px, 0.8fr)
        minmax(300px, 1fr);

    gap: 30px;

    align-items: center;

    min-height: 150px;

    padding:
        30px 0;

    border-bottom:
        1px solid
        var(--line);

    transition:
        padding 350ms var(--ease),
        background 350ms ease;
}

.detail-capability:hover {
    padding-right: 22px;
    padding-left: 22px;

    background:
        linear-gradient(
            90deg,
            rgba(18, 103, 214, 0.08),
            rgba(129, 233, 120, 0.025),
            transparent
        );
}

.detail-capability-number {
    color:
        var(--green-bright);

    font-size: 0.62rem;
    font-weight: 800;
}

.detail-capability h3 {
    margin: 0;

    color: white;

    font-size:
        clamp(
            1.5rem,
            2.5vw,
            2.7rem
        );

    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.05em;
}

.detail-capability p {
    max-width: 600px;

    margin: 0;

    color:
        var(--text-secondary);

    font-size: 0.86rem;

    line-height: 1.65;
}


/* =========================================================
   DETAIL STATEMENT
   ========================================================= */

.detail-statement {
    padding:
        clamp(
            160px,
            16vw,
            260px
        )
        0;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse 65% 75%
            at 50% 50%,
            rgba(18, 103, 214, 0.34),
            transparent 70%
        ),
        radial-gradient(
            circle at 20% 75%,
            rgba(129, 233, 120, 0.1),
            transparent 25%
        ),
        var(--blue-950);
}

.detail-statement h2 {
    max-width: 1200px;

    margin: 0;

    color: white;

    font-size:
        clamp(
            4rem,
            9vw,
            10rem
        );

    font-weight: 540;

    line-height: 0.87;

    letter-spacing: -0.085em;
}

.detail-statement h2 span {
    display: block;

    color:
        #9cb5d9;

    font-weight: 400;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(129, 233, 120, 0.1),
            transparent 32rem
        ),
        radial-gradient(
            circle at 88% 65%,
            rgba(22, 131, 255, 0.24),
            transparent 40rem
        ),
        linear-gradient(
            140deg,
            var(--blue-950),
            var(--blue-800)
        );
}

.footer-grid-bg {
    position: absolute;

    inset: 0;

    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(81, 133, 211, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(81, 133, 211, 0.055) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;
}

.footer-inner {
    position: relative;

    z-index: 2;

    padding:
        150px 0 28px;
}

.footer-kicker {
    color:
        var(--green-bright);

    font-size: 0.64rem;
    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.footer-heading h2 {
    margin:
        22px 0 0;

    font-size:
        clamp(
            4rem,
            7.5vw,
            9rem
        );

    font-weight: 600;

    line-height: 0.92;

    letter-spacing: -0.075em;
}

.footer-heading h2 span {
    display: block;

    color:
        #c9dbf7;

    font-weight: 400;
}

.footer-columns {
    display: grid;

    grid-template-columns:
        1fr
        repeat(3, 1fr);

    gap: 30px;

    margin-top: 110px;

    padding-top: 38px;

    border-top:
        1px solid
        rgba(101, 148, 219, 0.16);
}

.footer-label {
    color:
        var(--green-bright);

    font-size: 0.6rem;
    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.footer-columns address,
.footer-columns nav {
    display: grid;

    gap: 11px;
}

.footer-columns address {
    color:
        rgba(220, 231, 246, 0.67);

    font-style: normal;
}

.footer-columns a {
    color:
        rgba(220, 231, 246, 0.68);
}

.footer-columns a:hover {
    color:
        var(--green-pale);
}

.footer-wordmark {
    margin-top: 70px;

    color: transparent;

    background:
        linear-gradient(
            180deg,
            rgba(240, 246, 255, 0.95),
            rgba(22, 131, 255, 0.09)
        );

    background-clip: text;

    -webkit-background-clip:
        text;

    font-size:
        clamp(
            5rem,
            16vw,
            15rem
        );

    font-weight: 800;

    line-height: 0.75;

    letter-spacing: -0.09em;
}

.footer-bottom {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    gap: 25px;

    margin-top: 52px;

    padding-top: 24px;

    color:
        rgba(209, 222, 239, 0.44);

    border-top:
        1px solid
        rgba(101, 148, 219, 0.14);

    font-size: 0.68rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:nth-child(2) {
    text-align: center;
}

.footer-bottom a {
    justify-self: end;

    color:
        var(--green-pale);
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity 750ms var(--ease),
        transform 750ms var(--ease);
}

.reveal.is-visible {
    opacity: 1;

    transform: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .site-header {
        height: 100px;
    }

    .site-header::before {
        height: 145px;
    }

    .brand-logo {
        width: 125px;

        margin-top: 18px;
    }

    .main-navigation {
        min-height: 54px;

        margin-top: 16px;

        padding:
            0 20px;

        gap: 24px;
    }

    .main-navigation a {
        min-height: 52px;

        font-size: 0.88rem;
    }

    .scene-info {
        width: 245px;
    }

    .detail-story-grid {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .detail-story-copy {
        max-width: 720px;

        padding-top: 0;
    }

    .detail-capability {
        grid-template-columns:
            55px 1fr;
    }

    .detail-capability p {
        grid-column: 2;
    }

    .expertise-navigation {
        width:
            min(
                940px,
                calc(100% - 24px)
            );
    }

    .expertise-nav-button {
        min-width: 112px;

        padding:
            0 10px;
    }

    .expertise-nav-button strong {
        font-size: 0.88rem;

        letter-spacing:
            0.035em;
    }

    .expertise-nav-button[
        data-expertise-target="expertise-ecommerce"
    ] {
        min-width: 150px;
    }

    .footer-columns {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    :root {
        --container:
            calc(100% - 26px);

        --detail-container:
            calc(100% - 28px);
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .site-header {
        height: 86px;
    }

    .site-header::before {
        height: 126px;

        background:
            linear-gradient(
                180deg,
                rgba(3, 11, 24, 0.99) 0%,
                rgba(3, 11, 24, 0.86) 65%,
                transparent 100%
            );
    }

    .header-inner {
        align-items: flex-start;

        width:
            calc(100% - 28px);
    }

    .brand-logo {
        width: 82px;

        margin:
            12px 0 0;
    }

    .desktop-navigation,
    .main-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;

        width: 52px;
        height: 52px;

        margin-top: 12px;
    }


    /* =====================================================
       FULL SCREEN MENU
       ===================================================== */

    .mobile-menu-inner {
        width:
            calc(100% - 42px);

        padding:
            20px 0 24px;
    }

    .mobile-menu::before {
        background-size:
            58px 58px;
    }

    .mobile-menu-glow-one {
        top: -28vw;
        right: -30vw;

        width: 95vw;

        opacity: 0.16;
    }

    .mobile-menu-glow-two {
        bottom: -30vw;
        left: -38vw;

        width: 92vw;

        opacity: 0.12;
    }

    .mobile-menu-top {
        align-items: center;

        padding-bottom: 22px;
    }

    .mobile-menu-brand img {
        width: 92px;
    }

    .mobile-menu-close {
        width: 52px;
        height: 52px;

        border-radius: 17px;
    }

    .mobile-menu-close span {
        width: 23px;
    }

    .mobile-menu-navigation {
        margin-top: 32px;
    }

    .mobile-menu-navigation a {
        min-height:
            clamp(
                78px,
                10.5svh,
                98px
            );

        padding:
            0 4px;
    }

    .mobile-menu-navigation a span {
        font-size:
            clamp(
                2.2rem,
                10.5vw,
                3.7rem
            );

        letter-spacing:
            -0.055em;
    }

    .mobile-menu-navigation a small {
        font-size: 0.56rem;

        letter-spacing:
            0.16em;
    }

    .mobile-menu-navigation a:hover {
        padding-left: 14px;
    }

    .mobile-menu-navigation a:hover::after {
        width: 100%;
    }

    .mobile-menu-bottom {
        align-items: flex-end;

        gap: 16px;

        padding-top: 22px;
    }

    .mobile-menu-signature span {
        font-size: 0.72rem;

        letter-spacing:
            0.14em;
    }

    .mobile-menu-signature small {
        display: none;
    }

    .mobile-menu-email {
        font-size: 0.7rem;

        text-align: right;

        overflow-wrap: anywhere;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero {
        min-height: 100svh;

        padding:
            82px 8px 10px;
    }

    .hero-mosaic {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows:
            26svh
            28svh
            26svh;

        gap: 8px;

        width: 100%;

        height: auto;

        min-height:
            calc(100svh - 92px);

        border-radius:
            0 0 22px 22px;
    }

    .hero-tile {
        border-radius: 11px;
    }


    /* TOP */

    .hero-tile-01 {
        display: block;

        grid-column: 1;
        grid-row: 1;
    }

    .hero-tile-02 {
        display: block;

        grid-column: 2;
        grid-row: 1;
    }

    .hero-tile-03,
    .hero-tile-04 {
        display: none;
    }


    /* MIDDLE */

    .hero-tile-05 {
        display: block;

        grid-column: 1;
        grid-row: 2;
    }

    .hero-tile-06 {
        display: none;
    }

    .hero-tile-07 {
        display: block;

        grid-column: 2;
        grid-row: 2;
    }


    /* BOTTOM */

    .hero-tile-08,
    .hero-tile-09 {
        display: none;
    }

    .hero-tile-10 {
        display: block;

        grid-column: 1;
        grid-row: 3;
    }

    .hero-tile-11 {
        display: block;

        grid-column: 2;
        grid-row: 3;
    }

    .hero-tile-picture,
    .hero-tile-image {
        width: 100%;
        height: 100%;
    }

    .hero-tile-image {
        object-fit: cover;
        object-position: center;
    }


    /* HERO TITLE */

    .hero-title-wrap {
        top: 50%;
        left: 50%;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        width:
            calc(100% - 30px);

        max-width: 420px;

        text-align: center;

        transform:
            translate(-50%, -50%);
    }

    .hero-philosophy {
        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 3px;

        width: 100%;
        max-width: 370px;

        margin:
            0 auto 18px;

        padding:
            0 4px;

        color:
            var(--green-pale);

        font-size:
            clamp(
                0.68rem,
                2.9vw,
                0.84rem
            );

        font-weight: 500;

        line-height: 1.35;

        letter-spacing: 0.02em;

        text-align: center;
    }

    .hero-philosophy span {
        display: block;

        white-space: nowrap;
    }

    .hero-title-wrap h1 {
        margin: 0;

        font-size:
            clamp(
                3rem,
                13.5vw,
                4.8rem
            );

        font-weight: 470;

        line-height: 0.9;

        letter-spacing: -0.065em;

        white-space: nowrap;

        text-align: center;
    }

    .hero-scroll {
        bottom: 18px;

        min-width: 108px;
        min-height: 44px;

        font-size: 0.76rem;
    }


    /* =====================================================
       EXPERTISE
       ===================================================== */

    .expertise-panel {
        min-height: 0;

        height: auto;

        padding:
            26px 18px 68px;
    }

    .scene-video-stack {
        position: relative;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        display: block;

        width: 100%;

        height:
            min(
                68svh,
                600px
            );

        margin: 0;
    }

    .video-ghost {
        display: none;
    }

    .scene-video-frame {
        border-radius: 26px;
    }

    .scene-video,
    .scene-image {
        object-position: center;
    }


    /* EXTRA LABELS OFF */

    .scene-title > span {
        display:
            none !important;
    }

    .video-tech-label {
        display:
            none !important;
    }


    /* TITLE */

    .scene-title,
    .scene-left
    .scene-title,
    .scene-right
    .scene-title,
    .expertise-ecommerce
    .scene-title {
        position: absolute;

        z-index: 30;

        top: 72px;

        right:
            42px !important;

        left:
            42px !important;

        width: auto;

        max-width:
            calc(100% - 84px);

        text-align:
            left !important;
    }

    .scene-title h2,
    .expertise-ecommerce
    .scene-title h2 {
        max-width: 100%;

        margin: 0;

        color: white;

        font-size:
            clamp(
                3rem,
                14vw,
                4.8rem
            );

        font-weight: 470;

        line-height: 0.84;

        letter-spacing: -0.06em;

        white-space: nowrap;

        text-shadow:
            0 8px 30px
            rgba(0, 0, 0, 0.64);
    }

    .expertise-ecommerce
    .scene-title h2 {
        font-size:
            clamp(
                2.55rem,
                11.6vw,
                4rem
            );
    }


    /* INFO */

    .scene-left
    .scene-info,
    .scene-right
    .scene-info {
        position: absolute;

        z-index: 35;

        top: auto;

        right: 36px;
        bottom: 88px;
        left: 36px;

        width: auto;

        padding:
            22px 24px;

        border-radius: 24px;

        text-align: left;

        background:
            linear-gradient(
                145deg,
                rgba(8, 26, 51, 0.94),
                rgba(3, 11, 24, 0.93)
            );

        box-shadow:
            0 24px 70px
            rgba(0, 4, 15, 0.4),

            inset 0 1px 0
            rgba(255, 255, 255, 0.04);

        backdrop-filter:
            blur(24px);

        -webkit-backdrop-filter:
            blur(24px);

        transform: none;
    }

    .scene-number {
        margin-bottom: 17px;

        font-size: 0.6rem;
    }

    .scene-info h3 {
        font-size:
            clamp(
                1.05rem,
                5vw,
                1.35rem
            );

        line-height: 1.28;
    }

    .scene-divider {
        margin:
            19px 0;
    }

    .scene-info p {
        font-size: 0.77rem;

        line-height: 1.62;
    }

    .scene-tags {
        display: none;
    }


    /* EXPERTISE NAV */

    .expertise-navigation {
        right: 14px;
        bottom: 12px;
        left: 14px;

        width: auto;

        gap: 3px;

        padding: 5px;

        border-radius: 999px;

        background:
            rgba(3, 11, 24, 0.96);

        box-shadow:
            0 18px 55px
            rgba(0, 4, 15, 0.48);

        transform:
            translateY(12px);
    }

    .expertise-navigation.is-visible {
        transform: none;
    }

    .expertise-nav-button {
        flex:
            1 1 0;

        min-width: 0;

        height: 44px;

        padding:
            0 3px;
    }

    .expertise-nav-button[
        data-expertise-target="expertise-ecommerce"
    ] {
        min-width: 0;
    }

    .expertise-nav-button span {
        font-size: 0.68rem;

        letter-spacing:
            0.08em;
    }

    .expertise-nav-button strong {
        display: none;
    }


    /* =====================================================
       DETAIL
       ===================================================== */

    .detail-hero-inner {
        justify-content: flex-end;

        padding:
            140px 0 80px;
    }

    .detail-meta {
        display: grid;

        gap: 8px;
    }

    .detail-hero h1 {
        font-size:
            clamp(
                4.6rem,
                22vw,
                7rem
            );
    }

    .detail-hero-bottom {
        display: grid;

        gap: 35px;

        margin-top: 55px;
    }

    .detail-media {
        padding-bottom: 100px;
    }

    .detail-video-stack {
        min-height: 62vh;
    }

    .detail-video-frame {
        border-radius: 20px;
    }

    .detail-video-ghost {
        display: none;
    }

    .detail-story,
    .detail-capabilities {
        padding:
            100px 0;
    }

    .detail-story-grid {
        grid-template-columns:
            1fr;

        gap: 55px;
    }

    .detail-story-heading h2 {
        font-size: 13vw;
    }

    .detail-section-head {
        display: grid;

        gap: 20px;
    }

    .detail-capability {
        grid-template-columns:
            42px 1fr;

        min-height: 0;

        padding:
            28px 0;
    }

    .detail-capability p {
        grid-column: 2;

        margin-top: 10px;
    }

    .detail-statement {
        padding:
            150px 0;
    }

    .detail-statement h2 {
        font-size: 14vw;
    }


    /* =====================================================
       LOCATIONS
       ===================================================== */

    .locations-slider {
        min-height: auto;

        padding:
            105px 0 70px;

        overflow: hidden;
    }

    .locations-inner {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            auto;

        grid-template-areas:
            "header header"
            "country controls"
            "visual visual"
            "details details";

        column-gap: 14px;

        row-gap: 20px;

        width:
            calc(100% - 28px);

        min-height: 0;

        margin-inline: auto;
    }

    .locations-header {
        position: relative;

        top: auto;
        left: auto;

        grid-area:
            header;

        width: 100%;
    }

    .locations-header span {
        margin-bottom: 10px;

        padding: 0;

        font-size: 0.58rem;

        letter-spacing:
            0.18em;
    }

    .locations-header h2 {
        font-size:
            clamp(
                3.7rem,
                15vw,
                5.2rem
            );

        line-height: 0.88;

        letter-spacing:
            -0.065em;
    }


    /* ACTIVE COUNTRY */

    .location-country-stage {
        position: relative;

        top: auto;
        left: auto;

        grid-area:
            country;

        width: 100%;
        height: auto;

        min-height: 104px;

        margin:
            10px 0 0;

        transform: none;
    }

    .location-country {
        display: none;

        position: static;

        width: 100%;

        padding:
            0 2px;

        opacity: 0;

        filter: none;

        transform:
            none !important;
    }

    .location-country.is-active {
        display: block;

        opacity: 1;

        filter: none;

        transform:
            none !important;
    }

    .location-country.is-prev,
    .location-country.is-next,
    .location-country.is-far {
        display: none;
    }

    .location-country small {
        margin-bottom: 8px;

        font-size: 0.55rem;
    }

    .location-country strong {
        font-size:
            clamp(
                2.7rem,
                11.5vw,
                3.9rem
            );

        line-height: 0.92;

        letter-spacing:
            -0.055em;
    }

    .location-country span {
        margin-top: 8px;

        font-size: 0.95rem;
    }


    /* LOCATION CONTROLS */

    .location-controls {
        position: static;

        z-index: 30;

        grid-area:
            controls;

        display: flex;

        align-self: center;

        justify-self: end;

        gap: 8px;

        margin-top: 10px;

        padding: 0;

        transform: none;
    }

    .location-arrow {
        width: 46px;
        height: 46px;

        font-size: 1.15rem;

        box-shadow:
            0 12px 30px
            rgba(0, 4, 15, 0.28);
    }

    .location-arrow:last-child {
        background:
            var(--green-pale);
    }


    /* LOCATION MAP */

    .location-visual-stage {
        position: relative;

        top: auto;
        left: auto;

        grid-area:
            visual;

        width: 100%;
        height: 220px;

        margin: 0;

        transform: none;
    }

    .location-visual {
        border-radius: 24px;
    }

    .location-visual.is-active {
        z-index: 10;

        opacity: 1;

        filter: none;

        transform: none;
    }

    .location-visual.is-prev,
    .location-visual.is-next,
    .location-visual.is-far {
        opacity: 0;

        pointer-events: none;

        transform: none;
    }


    /* LOCATION DETAILS */

    .location-details-stage {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        grid-area:
            details;

        width: 100%;
        height: auto;

        margin: 0;

        transform: none;
    }

    .location-details {
        top: auto;
        left: auto;

        width: 100%;
    }

    .location-details.is-active {
        position: relative;

        top: auto;

        width: 100%;

        min-height: 0;

        padding: 24px;

        border-radius: 24px;

        transform: none;
    }

    .location-details.is-active::before {
        left: 24px;
    }

    .location-detail-country {
        margin-bottom: 8px;

        font-size: 0.58rem;
    }

    .location-details h3 {
        margin-bottom: 22px;

        font-size:
            clamp(
                2.7rem,
                12vw,
                3.9rem
            );

        line-height: 0.9;
    }

    .location-detail-row {
        padding:
            13px 0;
    }

    .location-detail-row p,
    .location-detail-row a {
        overflow-wrap: anywhere;

        font-size: 0.82rem;

        line-height: 1.5;
    }

    .location-details.is-prev,
    .location-details.is-next,
    .location-details.is-far {
        display: none;

        opacity: 0;

        pointer-events: none;
    }

    .location-index {
        display: none;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .footer-inner {
        padding-top: 120px;
    }

    .footer-columns {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .footer-wordmark {
        font-size: 19vw;
    }

    .footer-bottom {
        grid-template-columns:
            1fr;
    }

    .footer-bottom p:nth-child(2) {
        text-align: left;
    }

    .footer-bottom a {
        justify-self: start;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mobile-menu-inner {
        width:
            calc(100% - 32px);
    }

    .mobile-menu-navigation {
        margin-top: 24px;
    }

    .mobile-menu-navigation a {
        min-height: 76px;
    }

    .mobile-menu-navigation a span {
        font-size:
            clamp(
                2rem,
                10.5vw,
                3rem
            );
    }

    .mobile-menu-bottom {
        padding-top: 18px;
    }

    .hero-philosophy {
        font-size:
            clamp(
                0.6rem,
                2.8vw,
                0.72rem
            );
    }

    .hero-title-wrap h1 {
        font-size:
            clamp(
                2.8rem,
                13vw,
                4.2rem
            );
    }

    .scene-title,
    .scene-left
    .scene-title,
    .scene-right
    .scene-title,
    .expertise-ecommerce
    .scene-title {
        right:
            30px !important;

        left:
            30px !important;

        max-width:
            calc(100% - 60px);
    }

    .scene-left
    .scene-info,
    .scene-right
    .scene-info {
        right: 28px;
        left: 28px;

        padding:
            20px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        transition-duration:
            0.01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }

}