: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 {
    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.6);

    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: 78px;

    background:
        transparent;

    isolation:
        isolate;

    transition:
        height 260ms ease;
}

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

    z-index: -2;

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

    height: 118px;

    content: "";

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 24, 0.48) 0%,
            rgba(3, 11, 24, 0.26) 52%,
            rgba(3, 11, 24, 0.07) 78%,
            transparent 100%
        );

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

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

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

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

.site-header.is-scrolled {
    height:
        68px;
}

.site-header.is-scrolled::before {
    background:
        linear-gradient(
            180deg,
            rgba(3, 11, 24, 0.86) 0%,
            rgba(3, 11, 24, 0.52) 48%,
            rgba(3, 11, 24, 0.12) 78%,
            transparent 100%
        );

    backdrop-filter:
        blur(27px)
        saturate(130%);

    -webkit-backdrop-filter:
        blur(27px)
        saturate(130%);
}

.header-inner {
    display: flex;

    align-items:
        center;

    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:
        120px 0 0;

    object-fit:
        contain;

    object-position:
        left center;
}

.main-navigation {
    display:
        flex;

    align-items:
        center;

    gap:
        clamp(
            26px,
            3vw,
            48px
        );
}

.main-navigation a {
    padding:
        8px 0;

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

    font-size:
        0.77rem;

    transition:
        color 180ms ease;
}

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

.menu-toggle {
    display:
        none;
}


/* =========================================================
   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;
}

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

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

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

.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-tile-video {
    position:
        absolute;

    z-index:
        2;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    opacity:
        0;

    filter:
        saturate(0.9)
        contrast(1.12)
        brightness(0.78);

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

.hero-tile-video.is-loaded {
    opacity:
        1;
}

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

.hero-tile-fallback {
    position:
        absolute;

    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-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)
        );
}

.fallback-ecommerce {
    background:
        radial-gradient(
            circle at 68% 32%,
            rgba(129, 233, 120, 0.14),
            transparent 24%
        ),
        radial-gradient(
            circle at 38% 65%,
            rgba(22, 131, 255, 0.32),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--blue-950),
            var(--blue-800)
        );
}

.hero-mosaic-shade {
    position:
        absolute;

    z-index:
        10;

    inset:
        0;

    pointer-events:
        none;

    background:
        radial-gradient(
            ellipse 60% 50%
            at 50% 50%,
            transparent,
            rgba(2, 7, 17, 0.32) 60%,
            rgba(2, 7, 17, 0.7)
        );
}

.hero-title-wrap {
    position:
        absolute;

    z-index:
        30;

    top:
        50%;

    left:
        50%;

    width:
        calc(100% - 40px);

    text-align:
        center;

    pointer-events:
        none;

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

.hero-title-wrap p {
    margin:
        0 0 22px;

    color:
        rgba(235, 242, 252, 0.62);

    font-size:
        0.7rem;

    font-weight:
        700;

    letter-spacing:
        0.17em;

    text-transform:
        uppercase;
}

.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;
}

.hero-philosophy {
    margin:
        0 0 18px;

    color:
        var(--green-pale);

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

    font-weight:
        400;

    line-height:
        1.2;

    letter-spacing:
        0.01em;

    text-align:
        center;

    white-space:
        nowrap;

    font-variant:
        all-petite-caps;
}

.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:
        37px;

    left:
        50%;

    color:
        rgba(225, 235, 248, 0.55);

    font-size:
        0.58rem;

    font-weight:
        700;

    letter-spacing:
        0.14em;

    transform:
        translateX(-50%);
}


/* =========================================================
   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;
}

.scene-title {
    position:
        absolute;

    z-index:
        8;

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

    pointer-events:
        none;
}

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

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

    text-align:
        right;
}

.scene-title > span {
    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--green-bright);

    font-size:
        0.58rem;

    font-weight:
        800;

    letter-spacing:
        0.18em;

    text-transform:
        uppercase;
}

.scene-title h2 {
    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;

    text-decoration:
        none;

    pointer-events:
        auto;

    transition:
        color 250ms ease;
}

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

.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 {
    position:
        absolute;

    z-index:
        3;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    opacity:
        0;
}

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

.video-placeholder {
    position:
        absolute;

    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%);
}

.placeholder-caption {
    position:
        absolute;

    bottom:
        28px;

    left:
        30px;
}

.placeholder-caption small,
.placeholder-caption strong {
    display:
        block;
}

.placeholder-caption small {
    color:
        rgba(150, 182, 232, 0.5);

    font-size:
        0.5rem;

    letter-spacing:
        0.12em;
}

.placeholder-caption strong {
    margin-top:
        6px;

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

.video-overlay {
    position:
        absolute;

    z-index:
        4;

    inset:
        0;

    pointer-events:
        none;

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

.video-tech-label {
    position:
        absolute;

    z-index:
        5;

    top:
        22px;

    right:
        24px;

    text-align:
        right;
}

.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.46rem;

    letter-spacing:
        0.12em;
}

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

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

    font-size:
        0.57rem;
}

.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:
        right;
}

.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-end;
}

.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.9);

    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-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-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;

    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 {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}

.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-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;
}

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

.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 PAGE
   ========================================================= */

.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;

    transition:
        color 180ms ease;
}

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

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


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

.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-fallback-grid {
    position:
        absolute;

    inset:
        0;

    opacity:
        0.27;

    background-image:
        linear-gradient(
            rgba(91, 145, 221, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(91, 145, 221, 0.08) 1px,
            transparent 1px
        );

    background-size:
        58px 58px;
}

.detail-fallback-orbit {
    position:
        absolute;

    top:
        50%;

    left:
        50%;

    aspect-ratio:
        1;

    border-radius:
        50%;

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

.orbit-large {
    width:
        48%;

    border:
        1px solid
        rgba(91, 151, 238, 0.24);
}

.orbit-small {
    width:
        30%;

    border:
        1px dashed
        rgba(129, 233, 120, 0.28);
}

.detail-fallback-node {
    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        16px;

    aspect-ratio:
        1;

    border:
        3px solid white;

    border-radius:
        50%;

    background:
        var(--green-bright);

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

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

.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:
        1.4fr
        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) {

    .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);
    }


    .site-header {
        height:
            66px;
    }

    .header-inner {
        width:
            calc(100% - 26px);
    }

    .brand-logo {
        width:
            150px;

        margin:
            100px 0 0;
    }

    .menu-toggle {
        display:
            block;

        width:
            40px;

        height:
            40px;

        padding:
            0;

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

        border-radius:
            12px;

        background:
            rgba(3, 11, 24, 0.35);
    }

    .menu-toggle span {
        display:
            block;

        width:
            18px;

        height:
            1px;

        margin:
            5px auto;

        background:
            white;
    }

    .main-navigation {
        position:
            fixed;

        top:
            70px;

        right:
            13px;

        left:
            13px;

        display:
            grid;

        gap:
            3px;

        padding:
            10px;

        visibility:
            hidden;

        opacity:
            0;

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

        border-radius:
            18px;

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

        backdrop-filter:
            blur(25px);

        -webkit-backdrop-filter:
            blur(25px);
    }

    .main-navigation.is-open {
        visibility:
            visible;

        opacity:
            1;
    }

    .main-navigation a {
        padding:
            13px;
    }


    /* HOME */

    .hero {
        padding:
            70px 7px 7px;
    }

    .hero-title-wrap h1 {
        font-size:
            14vw;
    }

    .hero-philosophy {
        white-space:
            normal;

        padding:
            0 16px;

        font-size:
            0.9rem;

        line-height:
            1.35;
    }


    /* EXPERTISE TITLE */

    .scene-title {
        z-index:
            8;

        top:
            calc(24vh + 18px);

        pointer-events:
            none;
    }

    .scene-title h2 {
        font-size:
            19vw;

        line-height:
            0.78;

        letter-spacing:
            -0.065em;
    }

    .scene-title h2 a {
        pointer-events:
            auto;
    }

    .scene-left
    .scene-title,
    .scene-right
    .scene-title {
        right:
            auto;

        left:
            18px;

        text-align:
            left;
    }


    /* EXPERTISE VIDEO */

    .scene-video-stack {
        top:
            24vh;

        right:
            14px !important;

        left:
            14px !important;

        width:
            auto;

        height:
            52vh;
    }

    .video-ghost {
        display:
            none;
    }

    .video-tech-label,
    .scene-right
    .video-tech-label {
        top:
            18px;

        right:
            18px;

        left:
            auto;

        text-align:
            right;
    }


    /* EXPERTISE INFO */

    .scene-left
    .scene-info,
    .scene-right
    .scene-info {
        top:
            auto;

        right:
            25px;

        bottom:
            78px;

        left:
            25px;

        width:
            auto;

        padding:
            16px;

        text-align:
            left;

        transform:
            none;
    }

    .scene-tags {
        display:
            none;
    }


    /* EXPERTISE NAV */

    .expertise-navigation {
        right:
            12px;

        left:
            12px;

        bottom:
            10px;

        width:
            auto;

        gap:
            2px;

        transform:
            translateY(12px);
    }

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

    .expertise-nav-button {
        flex:
            1;

        min-width:
            0;

        height:
            44px;

        padding:
            0 5px;
    }

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

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

        letter-spacing:
            0.06em;
    }

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


    /* DETAIL PAGE */

    .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-video-label {
        top:
            18px;

        right:
            18px;
    }

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

    .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 {
        margin-top:
            10px;
    }

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

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


    /* LOCATIONS */

    .locations-inner {
        width:
            calc(100% - 28px);
    }

    .locations-header {
        top:
            90px;
    }

    .locations-header h2 {
        font-size:
            18vw;
    }

    .location-country-stage {
        top:
            33%;

        width:
            100%;
    }

    .location-country strong {
        font-size:
            12vw;
    }

    .location-visual-stage {
        top:
            57%;

        left:
            35%;

        width:
            210px;

        height:
            145px;
    }

    .location-details-stage {
        top:
            auto;

        right:
            0;

        bottom:
            50px;

        width:
            58%;

        height:
            300px;

        transform:
            none;
    }

    .location-details.is-active {
        padding:
            18px 20px;

        border-radius:
            20px;
    }

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

    .location-controls {
        top:
            60%;
    }

    .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;
    }

}


/* =========================================================
   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;
    }

}

/* =========================================================
   HEADER NAVIGATION POLISH
   ========================================================= */

.main-navigation {
    padding:
        6px 18px;

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

    border-radius:
        999px;

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

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

        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.78);
}


/* =========================================================
   EXPERTISE DESKTOP POLISH
   ========================================================= */

.scene-title {
    max-width:
        calc(100% - 80px);
}

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

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

.scene-title > span {
    padding-inline:
        4px;
}


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

@media (max-width: 700px) {


    /* HEADER */

    .site-header {
        height:
            68px;
    }

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

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

    .brand {
        align-items:
            flex-start;
    }

    .brand-logo {
        width:
            96px;

        margin:
            38px 0 0;
    }

    .menu-toggle {
        margin-top:
            18px;

        width:
            46px;

        height:
            46px;

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

        border-radius:
            15px;

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

        box-shadow:
            0 14px 40px
            rgba(0, 4, 15, 0.3),

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

        backdrop-filter:
            blur(24px);

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

    .main-navigation {
        top:
            78px;

        right:
            14px;

        left:
            14px;

        gap:
            4px;

        padding:
            10px;

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

        border-radius:
            20px;

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

        box-shadow:
            0 28px 80px
            rgba(0, 4, 15, 0.56),

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

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

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

    .main-navigation a {
        padding:
            14px 15px;

        border-radius:
            12px;

        font-size:
            0.82rem;

        letter-spacing:
            0.04em;
    }

    .main-navigation a:hover {
        background:
            rgba(22, 131, 255, 0.08);
    }


    /* HERO */

    .hero-philosophy {
        padding:
            0 22px;

        font-size:
            0.82rem;

        line-height:
            1.45;
    }


    /* EXPERTISE TITLE */

    .scene-title {
        top:
            calc(24vh + 20px);

        right:
            24px !important;

        left:
            24px !important;

        width:
            auto;

        max-width:
            none;

        text-align:
            left !important;
    }

    .scene-title > span {
        margin-bottom:
            10px;

        padding-left:
            4px;

        font-size:
            0.55rem;

        letter-spacing:
            0.22em;
    }

    .scene-title h2 {
        max-width:
            calc(100vw - 48px);

        font-size:
            clamp(
                3.3rem,
                15.5vw,
                5.3rem
            );

        line-height:
            0.82;

        letter-spacing:
            -0.055em;

        white-space:
            nowrap;
    }

    .expertise-ecommerce
    .scene-title h2 {
        font-size:
            clamp(
                2.9rem,
                12.8vw,
                4.5rem
            );

        letter-spacing:
            -0.045em;
    }


    /* EXPERTISE VIDEO */

    .scene-video-stack {
        top:
            24vh;

        right:
            18px !important;

        left:
            18px !important;

        width:
            auto;

        height:
            52vh;
    }

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

    .video-tech-label,
    .scene-right
    .video-tech-label {
        top:
            20px;

        right:
            20px;

        left:
            auto;

        max-width:
            45%;

        text-align:
            right;
    }

    .video-tech-label span {
        font-size:
            0.42rem;

        letter-spacing:
            0.15em;
    }

    .video-tech-label strong {
        font-size:
            0.52rem;
    }


    /* EXPERTISE INFO */

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

        bottom:
            82px;

        left:
            30px;

        padding:
            20px;

        border-radius:
            19px;
    }

    .scene-info h3 {
        font-size:
            1.12rem;

        line-height:
            1.25;
    }

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

        line-height:
            1.62;
    }


    /* EXPERTISE NAV */

    .expertise-navigation {
        right:
            14px;

        left:
            14px;

        bottom:
            12px;

        width:
            auto;

        padding:
            5px;

        gap:
            3px;

        border-radius:
            999px;

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

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

    .expertise-nav-button {
        min-width:
            0;

        height:
            44px;

        padding:
            0 4px;
    }

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

        letter-spacing:
            0.08em;
    }

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


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

    .locations-slider {
        min-height:
            auto;

        padding:
            105px 0 80px;

        overflow:
            hidden;
    }

    .locations-inner {
        display:
            flex;

        flex-direction:
            column;

        width:
            calc(100% - 28px);

        min-height:
            0;

        margin-inline:
            auto;
    }


    /* LOCATIONS HEADER */

    .locations-header {
        position:
            relative;

        top:
            auto;

        left:
            auto;

        order:
            1;

        width:
            100%;
    }

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

        padding-left:
            4px;

        font-size:
            0.58rem;

        letter-spacing:
            0.18em;
    }

    .locations-header h2 {
        font-size:
            clamp(
                4rem,
                18vw,
                6.2rem
            );

        line-height:
            0.86;

        letter-spacing:
            -0.065em;
    }


    /* COUNTRY CAROUSEL */

    .location-country-stage {
        position:
            relative;

        top:
            auto;

        left:
            auto;

        order:
            2;

        width:
            100%;

        height:
            245px;

        margin-top:
            36px;

        transform:
            none;
    }

    .location-country {
        top:
            50%;

        right:
            0;

        left:
            0;

        width:
            100%;

        padding:
            0 4px;
    }

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

        font-size:
            0.54rem;
    }

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

        line-height:
            0.9;

        letter-spacing:
            -0.055em;
    }

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

        font-size:
            1rem;
    }

    .location-country.is-active {
        opacity:
            1;

        filter:
            none;

        transform:
            translateY(-50%);
    }

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

        filter:
            blur(2px);

        transform:
            translateY(-50%)
            translateY(-88px)
            scale(0.62);
    }

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

        filter:
            blur(2px);

        transform:
            translateY(-50%)
            translateY(100px)
            scale(0.62);
    }

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

        pointer-events:
            none;

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


    /* LOCATION IMAGE */

    .location-visual-stage {
        position:
            relative;

        top:
            auto;

        left:
            auto;

        order:
            3;

        width:
            100%;

        height:
            230px;

        margin-top:
            10px;

        transform:
            none;
    }

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

    .location-visual.is-active {
        opacity:
            1;

        filter:
            none;

        transform:
            none;
    }

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

        transform:
            translateY(-40px)
            scale(0.92);
    }

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

        transform:
            translateY(40px)
            scale(0.92);
    }

    .location-visual.is-far {
        opacity:
            0;
    }


    /* ACTIVE LOCATION CARD */

    .location-details-stage {
        position:
            relative;

        top:
            auto;

        right:
            auto;

        bottom:
            auto;

        order:
            4;

        width:
            100%;

        height:
            auto;

        margin-top:
            18px;

        transform:
            none;
    }

    .location-details {
        top:
            auto;

        left:
            auto;

        width:
            100%;
    }

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

        top:
            auto;

        width:
            100%;

        min-height:
            390px;

        padding:
            28px 24px 100px;

        border-radius:
            24px;

        transform:
            none;
    }

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

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

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

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

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

        font-size:
            0.88rem;
    }

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

        pointer-events:
            none;

        transform:
            translateY(-40px)
            scale(0.96);
    }

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

        pointer-events:
            none;

        transform:
            translateY(40px)
            scale(0.96);
    }

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

        pointer-events:
            none;
    }


    /* LOCATION ARROWS */

    .location-controls {
        position:
            relative;

        top:
            auto;

        right:
            auto;

        order:
            5;

        display:
            flex;

        justify-content:
            flex-end;

        gap:
            10px;

        width:
            100%;

        margin-top:
            -78px;

        padding:
            0 20px 18px;

        transform:
            none;
    }

    .location-arrow {
        width:
            52px;

        height:
            52px;

        font-size:
            1.25rem;

        box-shadow:
            0 12px 35px
            rgba(0, 4, 15, 0.24);
    }

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

    .location-index {
        display:
            none;
    }

}