/* =========================================================
   PRIMESCAPE CAPABILITY SHOWCASE
========================================================= */

.ps-capability-showcase {
    position: relative;

    overflow: hidden;

    background: #fbfaf8;
}


/* INTRO */

.ps-showcase-intro {
    padding: 120px 0 100px;

    text-align: center;
}

.ps-showcase-kicker {
    display: block;

    margin-bottom: 14px;

    color: #7950ee;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 2px;
}

.ps-showcase-intro h2 {
    max-width: 950px;

    margin: 0 auto;

    color: #111a36;

    font-size: clamp(52px, 6vw, 88px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.ps-showcase-intro h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            #2869ef,
            #7950ee,
            #e98ca3
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.ps-showcase-intro p {
    max-width: 720px;

    margin: 25px auto 0;

    color: #6f7892;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   SHARED SCENE
========================================================= */

.ps-capability-scene {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 110px 0;

    border-top:
        1px solid
        rgba(40, 52, 96, 0.06);
}

.ps-scene-grid {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    gap: 75px;

    align-items: center;
}

.ps-scene-content {
    position: relative;

    z-index: 5;

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.ps-capability-scene.is-visible
.ps-scene-content {
    opacity: 1;

    transform:
        translateY(0);
}

.ps-scene-number {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(17, 26, 54, 0.25);

    font-size: 12px;

    font-weight: 800;
}

.ps-scene-label {
    display: block;

    margin-bottom: 18px;

    color: #7950ee;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: 1.8px;
}

.ps-scene-content h3 {
    max-width: 600px;

    margin: 0;

    color: #111a36;

    font-size:
        clamp(
            50px,
            5vw,
            78px
        );

    line-height: 0.96;

    letter-spacing: -3.5px;
}

.ps-scene-content p {
    max-width: 560px;

    margin: 25px 0 0;

    color: #6f7892;

    font-size: 16px;

    line-height: 1.72;
}

.ps-scene-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 27px;
}

.ps-scene-tags span {
    padding: 8px 11px;

    border:
        1px solid
        rgba(48, 61, 107, 0.10);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.72);

    color: #66718b;

    font-size: 9px;

    font-weight: 750;
}

.ps-scene-visual {
    position: relative;

    min-height: 620px;

    opacity: 0;

    transform:
        translateY(45px)
        scale(0.96);

    transition:
        opacity 1s ease,
        transform 1s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.ps-capability-scene.is-visible
.ps-scene-visual {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CUSTOM SOFTWARE
========================================================= */

.ps-scene-software {
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(214, 206, 255, 0.40),
            transparent 35%
        ),
        #fbfaf8;
}

.ps-software-composition {
    position: relative;

    width: 100%;
    height: 620px;

    perspective: 1400px;
}

.ps-software-back-window {
    position: absolute;

    width: 420px;
    height: 300px;

    left: 0;
    top: 80px;

    padding: 18px;

    border-radius: 19px;

    background: #121b38;

    transform:
        rotateY(12deg)
        rotateZ(-7deg);

    box-shadow:
        0 35px 80px
        rgba(33, 41, 86, 0.20);
}

.ps-window-bar {
    height: 32px;

    display: flex;

    align-items: center;

    gap: 6px;
}

.ps-window-bar i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.3);
}

.ps-window-bar small {
    margin-left: auto;

    color:
        rgba(255,255,255,.32);

    font-size: 7px;
}

.ps-code-stack {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 25px;
}

.ps-code-stack span {
    width: 85%;
    height: 7px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #4383f9,
            rgba(128, 84, 238, .45)
        );
}

.ps-code-stack .medium {
    width: 65%;
}

.ps-code-stack .short {
    width: 42%;
}

.ps-software-main-window {
    position: absolute;

    width: 570px;

    right: 0;
    top: 120px;

    overflow: hidden;

    border: 5px solid #111a32;

    border-radius: 21px;

    background: #111b3a;

    box-shadow:
        0 55px 100px
        rgba(33, 40, 84, .25);

    transform:
        rotateY(-6deg);
}

.ps-software-layout {
    min-height: 340px;

    display: grid;

    grid-template-columns:
        56px 1fr;
}

.ps-soft-sidebar {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    padding-top: 18px;

    border-right:
        1px solid
        rgba(255,255,255,.06);
}

.ps-soft-sidebar b {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #2869ef,
            #7950ee
        );

    font-size: 8px;
}

.ps-soft-sidebar i {
    width: 21px;
    height: 5px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.08);
}

.ps-soft-content {
    padding: 28px;
}

.ps-soft-content > small {
    color: #7884a4;

    font-size: 8px;

    letter-spacing: 1.2px;
}

.ps-soft-content > strong {
    display: block;

    max-width: 350px;

    margin-top: 7px;

    color: white;

    font-size: 28px;

    line-height: 1.05;
}

.ps-soft-panels {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin-top: 25px;
}

.ps-soft-panels div {
    padding: 14px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 11px;
}

.ps-soft-panels span {
    display: block;

    color: #6f7a98;

    font-size: 7px;
}

.ps-soft-panels b {
    display: block;

    margin-top: 6px;

    color: white;

    font-size: 11px;
}

.ps-soft-flow {
    display: flex;

    align-items: flex-end;

    gap: 12px;

    height: 120px;

    margin-top: 18px;

    padding: 18px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.025);
}

.ps-soft-flow span {
    flex: 1;

    border-radius:
        6px 6px 0 0;

    background:
        linear-gradient(
            #498cf9,
            #7547dc
        );
}

.ps-soft-flow span:nth-child(1) {
    height: 38%;
}

.ps-soft-flow span:nth-child(2) {
    height: 62%;
}

.ps-soft-flow span:nth-child(3) {
    height: 48%;
}

.ps-soft-flow span:nth-child(4) {
    height: 82%;
}

.ps-soft-floating-chip {
    position: absolute;

    padding: 10px 13px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.90);

    color: #6950df;

    font-size: 8px;

    font-weight: 850;

    box-shadow:
        0 15px 35px
        rgba(48, 52, 105, .12);
}

.chip-a {
    left: 18%;
    bottom: 70px;
}

.chip-b {
    right: 5%;
    top: 75px;
}

.chip-c {
    right: 17%;
    bottom: 40px;
}


/* =========================================================
   WEB
========================================================= */

.ps-scene-web {
    background:
        radial-gradient(
            circle at 20% 40%,
            rgba(190, 222, 255, .28),
            transparent 35%
        ),
        #f8fbff;
}

.ps-browser-stack {
    position: relative;

    height: 610px;

    perspective: 1500px;
}

.ps-browser-layer {
    position: absolute;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 35px 80px
        rgba(44, 50, 98, .13);
}

.browser-back {
    width: 480px;
    height: 320px;

    left: 0;
    top: 90px;

    transform:
        rotate(-9deg)
        translateZ(-100px);
}

.browser-middle {
    width: 520px;
    height: 350px;

    right: 30px;
    top: 145px;

    transform:
        rotate(5deg);
}

.browser-front {
    width: 600px;
    height: 400px;

    left: 70px;
    top: 95px;

    background:
        linear-gradient(
            145deg,
            #f8faff,
            #f8f4ff
        );
}

.ps-browser-mini-bar {
    height: 43px;

    border-bottom:
        1px solid
        rgba(49, 62, 108, .08);
}

.ps-browser-art {
    height: 100%;

    background:
        linear-gradient(
            135deg,
            #e4efff,
            #ede5ff
        );
}

.ps-web-preview {
    padding: 60px 45px;
}

.ps-web-preview small {
    color: #7950ee;

    font-size: 8px;
}

.ps-web-preview strong {
    display: block;

    margin-top: 14px;

    font-size: 34px;

    line-height: 1;
}

.ps-web-preview span {
    display: block;

    width: 110px;
    height: 8px;

    margin-top: 25px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #2869ef,
            #7950ee
        );
}

.ps-browser-controls {
    height: 48px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 0 15px;

    border-bottom:
        1px solid
        rgba(49, 62, 108, .08);
}

.ps-browser-controls i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c5cad7;
}

.ps-browser-controls small {
    margin-left: 15px;

    color: #a0a5b4;

    font-size: 7px;
}

.ps-web-hero-preview {
    padding: 65px 55px;
}

.ps-web-hero-preview > span {
    color: #7950ee;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.ps-web-hero-preview h4 {
    max-width: 440px;

    margin:
        15px 0 10px;

    font-size: 45px;

    line-height: .95;

    letter-spacing: -2px;
}

.ps-web-hero-preview b {
    display: block;

    background:
        linear-gradient(
            90deg,
            #2869ef,
            #7950ee,
            #e98ca3
        );

    -webkit-background-clip: text;

    color: transparent;

    font-size: 35px;
}


/* =========================================================
   MOBILE
========================================================= */

.ps-scene-mobile {
    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(230, 205, 255, .38),
            transparent 35%
        ),
        #fbf9ff;
}

.ps-phone-stage {
    position: relative;

    height: 610px;

    display: flex;

    align-items: center;

    justify-content: center;

    perspective: 1500px;
}

.ps-showcase-phone {
    position: absolute;

    overflow: hidden;

    border: 5px solid #11182c;

    border-radius: 36px;

    color: white;

    box-shadow:
        0 35px 75px
        rgba(37, 41, 89, .22);
}

.phone-left,
.phone-right {
    width: 180px;
    height: 370px;
}

.phone-main {
    width: 220px;
    height: 455px;

    z-index: 5;

    background:
        linear-gradient(
            165deg,
            #162552,
            #53379a,
            #8d58dd
        );
}

.phone-left {
    left: 80px;

    background:
        linear-gradient(
            160deg,
            #1a315c,
            #254da8
        );

    transform:
        rotateY(20deg)
        rotateZ(-8deg);
}

.phone-right {
    right: 70px;

    background:
        linear-gradient(
            160deg,
            #39235f,
            #9653bd
        );

    transform:
        rotateY(-20deg)
        rotateZ(8deg);
}

.ps-phone-speaker {
    position: absolute;

    left: 50%;
    top: 10px;

    width: 65px;
    height: 14px;

    transform:
        translateX(-50%);

    border-radius:
        0 0 10px 10px;

    background: #0a0f20;
}

.ps-phone-ui,
.ps-phone-main-ui {
    padding:
        65px 22px 25px;
}

.ps-phone-ui small,
.ps-mobile-mini {
    color:
        rgba(255,255,255,.55);

    font-size: 7px;

    letter-spacing: 1px;
}

.ps-phone-ui strong {
    display: block;

    margin-top: 10px;

    font-size: 24px;

    line-height: 1.05;
}

.ps-phone-ui > span {
    display: block;

    height: 55px;

    margin-top: 15px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);
}

.ps-phone-main-ui h4 {
    margin:
        12px 0 25px;

    font-size: 30px;

    line-height: 1.05;
}

.ps-mobile-app-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}

.ps-mobile-app-grid i {
    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 13px;

    background:
        rgba(255,255,255,.08);

    color: white;

    font-size: 8px;

    font-style: normal;

    font-weight: 800;
}


/* =========================================================
   AI
========================================================= */

.ps-scene-ai {
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(170, 194, 255, .32),
            transparent 34%
        ),
        #f9fbff;
}

.ps-ai-network {
    position: relative;

    height: 620px;
}

.ps-ai-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 200px;
    height: 200px;

    transform:
        translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 30%,
            #ffffff,
            #dcd6ff 60%,
            #becdff
        );

    box-shadow:
        0 35px 90px
        rgba(93, 74, 194, .22);

    z-index: 5;
}

.ps-ai-core small {
    color: #79839b;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.ps-ai-core strong {
    color: #111a36;

    font-size: 58px;
}

.ps-ai-node {
    position: absolute;

    min-width: 78px;

    padding: 13px 15px;

    border-radius: 999px;

    background:
        rgba(255,255,255,.84);

    color: #6551db;

    text-align: center;

    font-size: 8px;

    font-weight: 850;

    box-shadow:
        0 14px 35px
        rgba(50, 55, 105, .10);

    z-index: 6;
}

.ai-node-1 {
    left: 10%;
    top: 15%;
}

.ai-node-2 {
    right: 10%;
    top: 12%;
}

.ai-node-3 {
    right: 3%;
    top: 48%;
}

.ai-node-4 {
    right: 18%;
    bottom: 12%;
}

.ai-node-5 {
    left: 17%;
    bottom: 10%;
}

.ai-node-6 {
    left: 2%;
    top: 50%;
}

.ps-ai-lines,
.ps-cloud-lines {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.ps-ai-lines path,
.ps-cloud-lines path {
    fill: none;

    stroke:
        rgba(111, 84, 220, .22);

    stroke-width: 1.5;

    stroke-dasharray: 8 10;
}


/* =========================================================
   CYBERSECURITY
========================================================= */

.ps-scene-security {
    background:
        linear-gradient(
            145deg,
            #10182f,
            #172448
        );

    color: white;
}

.ps-scene-security
.ps-scene-number {
    color:
        rgba(255,255,255,.25);
}

.ps-scene-security
.ps-scene-label {
    color: #a99cff;
}

.ps-scene-security
.ps-scene-content h3 {
    color: white;
}

.ps-scene-security
.ps-scene-content p {
    color: #a8b2ca;
}

.ps-scene-security
.ps-scene-tags span {
    border-color:
        rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.05);

    color: #b8c1d5;
}

.ps-security-stage {
    position: relative;

    height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.ps-security-grid {
    position: absolute;

    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(
            rgba(100, 122, 194, .12)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(100, 122, 194, .12)
            1px,
            transparent 1px
        );

    background-size:
        38px 38px;

    transform:
        perspective(650px)
        rotateX(60deg)
        scale(1.3);
}

.ps-security-shield {
    position: relative;

    width: 260px;
    height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    clip-path:
        polygon(
            50% 0,
            92% 18%,
            85% 70%,
            50% 100%,
            15% 70%,
            8% 18%
        );

    background:
        linear-gradient(
            145deg,
            rgba(82, 137, 255, .85),
            rgba(122, 78, 232, .95)
        );

    box-shadow:
        0 0 80px
        rgba(100, 83, 230, .45);

    z-index: 5;
}

.ps-shield-inner {
    text-align: center;
}

.ps-shield-inner span {
    display: block;

    color:
        rgba(255,255,255,.6);

    font-size: 8px;

    letter-spacing: 2px;
}

.ps-shield-inner strong {
    display: block;

    color: white;

    font-size: 72px;
}

.ps-shield-inner small {
    color:
        rgba(255,255,255,.65);

    font-size: 7px;
}

.ps-security-ring {
    position: absolute;

    border:
        1px solid
        rgba(134, 114, 255, .25);

    border-radius: 50%;
}

.security-ring-one {
    width: 420px;
    height: 420px;
}

.security-ring-two {
    width: 560px;
    height: 350px;
}

.ps-security-status {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        11px 14px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 12px;

    background:
        rgba(255,255,255,.06);

    color: #c6cede;

    font-size: 8px;

    backdrop-filter:
        blur(12px);
}

.ps-security-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #42df99;

    box-shadow:
        0 0 12px #42df99;
}

.sec-top {
    right: 8%;
    top: 20%;
}

.sec-bottom {
    left: 5%;
    bottom: 20%;
}

.ps-security-scan {
    position: absolute;

    left: 12%;
    right: 12%;
    top: 30%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #7c73ff,
            transparent
        );

    box-shadow:
        0 0 18px #7c73ff;

    animation:
        psSecurityScan
        4s
        ease-in-out
        infinite;
}

@keyframes psSecurityScan {

    0%,
    100% {
        top: 23%;
        opacity: .3;
    }

    50% {
        top: 75%;
        opacity: 1;
    }

}


/* =========================================================
   CLOUD
========================================================= */

.ps-scene-cloud {
    background:
        radial-gradient(
            circle at 75% 48%,
            rgba(197, 214, 255, .45),
            transparent 36%
        ),
        #f9fbff;
}

.ps-cloud-stage {
    position: relative;

    height: 620px;
}

.ps-cloud-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 220px;
    height: 180px;

    transform:
        translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius:
        46% 54% 50% 50% /
        58% 55% 45% 42%;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #dce7ff
        );

    box-shadow:
        0 35px 85px
        rgba(70, 88, 158, .18);

    z-index: 5;
}

.ps-cloud-core > span {
    font-size: 38px;
}

.ps-cloud-core strong {
    margin-top: 6px;

    font-size: 13px;
}

.ps-cloud-core small {
    margin-top: 3px;

    color: #7b849b;

    font-size: 7px;
}

.ps-cloud-node {
    position: absolute;

    width: 76px;
    height: 76px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;

    background:
        rgba(255,255,255,.84);

    box-shadow:
        0 16px 40px
        rgba(50, 60, 108, .12);

    color: #6753db;

    font-size: 9px;

    z-index: 6;
}

.cloud-node-1 {
    left: 8%;
    top: 16%;
}

.cloud-node-2 {
    right: 10%;
    top: 15%;
}

.cloud-node-3 {
    right: 3%;
    bottom: 22%;
}

.cloud-node-4 {
    left: 46%;
    bottom: 3%;
}

.cloud-node-5 {
    left: 5%;
    bottom: 17%;
}


/* =========================================================
   ENDING
========================================================= */

.ps-showcase-ending {
    padding:
        100px 0 10px;

    text-align: center;
}

.ps-showcase-ending > span {
    color: #7950ee;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: 1.8px;
}

.ps-showcase-ending h3 {
    max-width: 820px;

    margin:
        18px auto 30px;

    font-size:
        clamp(
            48px,
            5.6vw,
            82px
        );

    line-height: .96;

    letter-spacing: -4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ps-scene-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .ps-capability-scene {
        min-height: auto;

        padding:
            100px 0;
    }

    .ps-scene-content {
        max-width: 800px;
    }

    .ps-scene-visual {
        width:
            min(
                820px,
                100%
            );

        margin:
            0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .ps-showcase-intro {
        padding:
            80px 0 65px;
    }

    .ps-showcase-intro h2 {
        font-size: 46px;

        letter-spacing: -2.5px;
    }

    .ps-showcase-intro p {
        font-size: 14px;
    }

    .ps-capability-scene {
        padding:
            75px 0;
    }

    .ps-scene-grid {
        gap: 35px;
    }

    .ps-scene-content h3 {
        font-size: 44px;

        letter-spacing: -2.3px;
    }

    .ps-scene-content p {
        font-size: 14px;
    }

    .ps-scene-visual {
        min-height: 420px;

        transform-origin:
            top center;
    }

    .ps-software-composition,
.ps-browser-stack,
.ps-phone-stage,
.ps-ai-network,
.ps-security-stage {
    height: 430px;

    transform:
        scale(.70);

    transform-origin:
        top center;

    width: 700px;

    margin-left:
        calc(
            50% -
            350px
        );
}


/*
 * CLOUD IS NOW RESPONSIVE BY ITSELF.
 * DO NOT FORCE IT INTO THE OLD
 * 700PX + SCALE(.70) MOBILE SYSTEM.
 */

.ps-cloud-stage {
    transform: none;

    width: 100%;

    max-width: 100%;

    margin-left: auto;
    margin-right: auto;
}

    .ps-showcase-ending {
        padding:
            65px 0 0;
    }

    .ps-showcase-ending h3 {
        font-size: 43px;

        letter-spacing: -2.4px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion:
    reduce
) {

    .ps-security-scan {
        animation: none;
    }

}

/* =========================================================
   CLOUD LAYOUT RESET
   Scene 07 owns its own geometry.
========================================================= */


/* =========================================================
   DESKTOP
========================================================= */

.ps-capability-scene.ps-scene-cloud {
    display: block;

    min-height: auto;

    padding:
        110px 0;

    overflow: hidden;
}


.ps-capability-scene.ps-scene-cloud
> .ps-container.ps-scene-grid {

    box-sizing: border-box;

    width:
        calc(100% - 160px);

    max-width:
        1380px;

    margin:
        0 auto;

    padding:
        0;

    display:
        grid;

    grid-template-columns:
        minmax(360px, 0.82fr)
        minmax(520px, 1.18fr);

    gap:
        clamp(
            55px,
            6vw,
            110px
        );

    align-items:
        center;
}


/* COPY */

.ps-scene-cloud
.ps-scene-content {

    width:
        100%;

    max-width:
        510px;

    margin:
        0;

    padding:
        0;
}


.ps-scene-cloud
.ps-scene-content h3 {

    max-width:
        500px;
}


/* VISUAL */

.ps-scene-cloud
.ps-scene-visual {

    box-sizing:
        border-box;

    width:
        100%;

    min-width:
        0;

    min-height:
        600px;

    margin:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    transform:
        none;
}


/* CLOUD STAGE */

.ps-scene-cloud
.ps-cloud-stage {

    position:
        relative;

    flex:
        0 0 auto;

    width:
        560px;

    height:
        560px;

    max-width:
        100%;

    margin:
        0 auto;

    transform:
        none;

    transform-origin:
        center;
}



/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .ps-capability-scene.ps-scene-cloud
    > .ps-container.ps-scene-grid {

        width:
            calc(100% - 260px);

        max-width:
            1420px;
    }


    .ps-scene-cloud
    .ps-cloud-stage {

        width:
            590px;

        height:
            590px;
    }

}



/* =========================================================
   LAPTOP
========================================================= */

@media
(max-width: 1200px)
and
(min-width: 901px) {

    .ps-capability-scene.ps-scene-cloud
    > .ps-container.ps-scene-grid {

        width:
            calc(100% - 80px);

        grid-template-columns:
            minmax(300px, .82fr)
            minmax(450px, 1.18fr);

        gap:
            42px;
    }


    .ps-scene-cloud
    .ps-cloud-stage {

        width:
            470px;

        height:
            470px;
    }


    .ps-scene-cloud
    .ps-scene-visual {

        min-height:
            500px;
    }

}



/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 900px) {

    .ps-capability-scene.ps-scene-cloud {

        padding:
            90px 0;
    }


    .ps-capability-scene.ps-scene-cloud
    > .ps-container.ps-scene-grid {

        width:
            calc(100% - 56px);

        max-width:
            720px;

        grid-template-columns:
            minmax(0, 1fr);

        gap:
            50px;
    }


    .ps-scene-cloud
    .ps-scene-content {

        width:
            100%;

        max-width:
            620px;

        margin:
            0 auto;

        text-align:
            center;
    }


    .ps-scene-cloud
    .ps-scene-content h3,
    .ps-scene-cloud
    .ps-scene-content p {

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .ps-scene-cloud
    .ps-scene-tags {

        justify-content:
            center;
    }


    .ps-scene-cloud
    .ps-scene-visual {

        width:
            100%;

        min-height:
            500px;

        margin:
            0 auto;

        transform:
            none;
    }


    .ps-scene-cloud
    .ps-cloud-stage {

        width:
            min(
                500px,
                100%
            );

        height:
            min(
                500px,
                calc(100vw - 56px)
            );

        margin:
            0 auto;

        transform:
            none;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ps-capability-scene.ps-scene-cloud {

        padding:
            72px 0 85px;
    }


    .ps-capability-scene.ps-scene-cloud
    > .ps-container.ps-scene-grid {

        width:
            calc(100% - 36px);

        max-width:
            none;

        margin:
            0 auto;

        padding:
            0;

        grid-template-columns:
            minmax(0, 1fr);

        gap:
            36px;
    }


    .ps-scene-cloud
    .ps-scene-content {

        width:
            100%;

        max-width:
            none;

        margin:
            0;

        text-align:
            left;
    }


    .ps-scene-cloud
    .ps-scene-content h3 {

        max-width:
            100%;

        font-size:
            clamp(
                45px,
                14vw,
                60px
            );

        line-height:
            .96;
    }


    .ps-scene-cloud
    .ps-scene-content p {

        max-width:
            100%;

        margin-left:
            0;

        margin-right:
            0;
    }


    .ps-scene-cloud
    .ps-scene-tags {

        justify-content:
            flex-start;
    }


    .ps-scene-cloud
    .ps-scene-visual {

        width:
            100%;

        min-height:
            360px;

        height:
            auto;

        margin:
            0;

        transform:
            none;

        overflow:
            visible;
    }


    .ps-scene-cloud
    .ps-cloud-stage {

        width:
            min(
                350px,
                calc(100vw - 36px)
            );

        height:
            min(
                350px,
                calc(100vw - 36px)
            );

        max-width:
            100%;

        margin:
            0 auto;

        transform:
            none;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .ps-capability-scene.ps-scene-cloud
    > .ps-container.ps-scene-grid {

        width:
            calc(100% - 28px);
    }


    .ps-scene-cloud
    .ps-cloud-stage {

        width:
            min(
                315px,
                calc(100vw - 28px)
            );

        height:
            min(
                315px,
                calc(100vw - 28px)
            );
    }

}