/* =========================================================
   PRIMESCAPE INFOSOFT
   MAIN.CSS
========================================================= */


/* =========================================================
   DESIGN TOKENS
========================================================= */

:root {
    --ps-ink: #111a36;
    --ps-ink-soft: #27324f;
    --ps-muted: #6f7892;

    --ps-blue: #2869ef;
    --ps-purple: #7950ee;
    --ps-violet: #8b5cf6;
    --ps-pink: #e98ca3;
    --ps-peach: #f3a07d;

    --ps-green: #22a765;

    --ps-cream: #fbfaf7;
    --ps-lavender: #f5f1ff;
    --ps-mist: #f2f7ff;

    --ps-dark: #111a36;

    --ps-border:
        rgba(
            37,
            49,
            92,
            0.10
        );
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;

    scroll-behavior: smooth;

    overflow-x: hidden;
}

body {
    margin: 0;

    background:
        var(--ps-cream);

    color:
        var(--ps-ink);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    overflow-x: hidden;

    -webkit-font-smoothing:
        antialiased;
}

a {
    color: inherit;

    text-decoration: none;
}

img,
svg {
    max-width: 100%;
}

.ps-container,
.container {
    width:
        min(
            1280px,
            calc(
                100% -
                56px
            )
        );

    margin:
        0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 18px;
    left: 0;

    width: 100%;

    z-index: 10000;

    pointer-events: none;
}

body.admin-bar .site-header {
    top: 50px;
}

.header-inner {
    min-height: 74px;

    display: flex;

    align-items: center;

    gap: 30px;

    padding:
        7px 13px
        7px 18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.92
        );

    border-radius:
        22px;

    background:
        rgba(
            255,
            255,
            255,
            0.88
        );

    backdrop-filter:
        blur(22px);

    box-shadow:
        0 15px 55px
        rgba(
            30,
            38,
            80,
            0.08
        );

    pointer-events: auto;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    margin-right: auto;
}

.brand .custom-logo-link {
    display: flex;

    align-items: center;

    line-height: 0;
}

.brand img.custom-logo {
    display: block !important;

    width: auto !important;

    height: 58px !important;

    max-width:
        220px !important;

    max-height:
        58px !important;

    object-fit:
        contain !important;
}


/* =========================================================
   NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.desktop-nav a {
    position: relative;

    color:
        #17223d;

    font-size:
        13px;

    font-weight:
        650;

    white-space: nowrap;
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--ps-blue),
            var(--ps-purple),
            var(--ps-pink)
        );

    transform:
        scaleX(0);

    transition:
        transform
        0.25s ease;
}

.desktop-nav a:hover::after {
    transform:
        scaleX(1);
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    min-height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        0 20px;

    border-radius:
        13px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--ps-blue),
            var(--ps-purple),
            var(--ps-pink)
        );

    font-size:
        12px;

    font-weight:
        750;

    box-shadow:
        0 13px 34px
        rgba(
            103,
            74,
            222,
            0.20
        );
}

.mobile-menu-button,
.mobile-navigation {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.ps-cinematic-hero {
    position: relative;

    min-height:
        900px;

    overflow: hidden;

    padding:
        155px 0 90px;

    background:
        var(--ps-cream);
}

.ps-hero-ambient {
    position: absolute;

    inset: 0;

    pointer-events: none;
}

.ps-ambient-glow {
    position: absolute;

    border-radius: 50%;

    filter:
        blur(110px);
}

.glow-peach {
    width: 570px;
    height: 570px;

    left: -230px;
    top: 180px;

    background:
        rgba(
            246,
            183,
            151,
            0.30
        );
}

.glow-lavender {
    width: 650px;
    height: 650px;

    right: -230px;
    top: 70px;

    background:
        rgba(
            204,
            192,
            255,
            0.40
        );
}

.glow-blue {
    width: 500px;
    height: 500px;

    right: 25%;
    bottom: -250px;

    background:
        rgba(
            190,
            222,
            255,
            0.30
        );
}

.ps-hero-grid-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.45;

    background-image:

        linear-gradient(
            rgba(
                59,
                72,
                119,
                0.035
            )
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                59,
                72,
                119,
                0.035
            )
            1px,
            transparent 1px
        );

    background-size:
        60px 60px;
}


/* =========================================================
   HERO LAYOUT
========================================================= */

.ps-hero-layout {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 0.90fr)
        minmax(0, 1.10fr);

    gap: 55px;

    align-items: center;
}

.ps-hero-copy {
    position: relative;

    z-index: 10;

    min-width: 0;
}


/* =========================================================
   HERO TEXT
========================================================= */

.ps-hero-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    padding:
        8px 13px;

    border:
        1px solid
        rgba(
            97,
            75,
            213,
            0.12
        );

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            0.72
        );

    color:
        #545095;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        1.4px;
}

.ps-hero-kicker > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--ps-blue);
}

.ps-main-heading {
    margin: 0;

    max-width:
        640px;

    line-height:
        0.88;

    letter-spacing:
        -5px;
}

.ps-main-heading span {
    display: block;

    color:
        var(--ps-ink);

    font-size:
        clamp(
            66px,
            6.5vw,
            104px
        );

    font-weight:
        850;
}

.ps-main-heading strong {
    display: block;

    margin-top: 10px;

    font-size:
        clamp(
            67px,
            6.6vw,
            106px
        );

    font-weight:
        850;

    background:
        linear-gradient(
            100deg,
            #2869ef,
            #7950ee 45%,
            #e98ca3 75%,
            #f0a078
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.ps-hero-text {
    max-width:
        610px;

    margin:
        30px 0;

    color:
        var(--ps-muted);

    font-size:
        17px;

    line-height:
        1.72;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.ps-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.ps-primary-button,
.ps-secondary-button {
    min-height:
        54px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap: 12px;

    padding:
        0 24px;

    border-radius:
        13px;

    font-size:
        13px;

    font-weight:
        750;

    transition:
        transform
        0.3s ease;
}

.ps-primary-button {
    color: white;

    background:
        linear-gradient(
            135deg,
            #2869ef,
            #7950ee,
            #ea8c9f
        );

    box-shadow:
        0 18px 45px
        rgba(
            103,
            74,
            222,
            0.23
        );
}

.ps-primary-button:hover,
.ps-secondary-button:hover {
    transform:
        translateY(-3px);
}

.ps-secondary-button {
    border:
        1px solid
        rgba(
            45,
            58,
            111,
            0.16
        );

    background:
        rgba(
            255,
            255,
            255,
            0.66
        );
}

.ps-hero-capabilities {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}

.ps-hero-capabilities span {
    padding:
        8px 11px;

    border:
        1px solid
        rgba(
            51,
            63,
            109,
            0.09
        );

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            0.64
        );

    color:
        #59647f;

    font-size:
        9px;

    font-weight:
        750;
}


/* =========================================================
   HERO STAGE
========================================================= */

.ps-tech-stage {
    position: relative;

    min-height:
        620px;

    perspective:
        1500px;

    transform-style:
        preserve-3d;
}

.ps-stage-light {
    position: absolute;

    left: 50%;
    top: 48%;

    width: 600px;
    height: 440px;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(
                255,
                255,
                255,
                0.86
            ),
            rgba(
                207,
                198,
                255,
                0.24
            )
            48%,
            transparent 72%
        );

    filter:
        blur(12px);
}

.ps-digital-floor {
    position: absolute;

    left: 50%;
    bottom: 48px;

    width: 600px;
    height: 140px;

    transform:
        translateX(-50%)
        rotateX(70deg);

    border-radius:
        50%;

    background:
        radial-gradient(
            ellipse,
            rgba(
                121,
                80,
                238,
                0.19
            ),
            rgba(
                40,
                105,
                239,
                0.08
            )
            40%,
            transparent 70%
        );
}

.ps-layer {
    position: absolute;

    will-change:
        transform;
}


/* =========================================================
   LAPTOP
========================================================= */

.ps-laptop {
    left: 50%;
    top: 50%;

    width: 540px;

    transform:
        translate(
            -50%,
            -46%
        )
        rotateY(-7deg)
        rotateX(3deg);

    z-index: 10;
}

.ps-laptop-screen {
    overflow: hidden;

    border:
        5px solid
        #10182d;

    border-radius:
        18px
        18px
        12px
        12px;

    background:
        #111b3a;

    box-shadow:
        0 55px 100px
        rgba(
            35,
            43,
            90,
            0.26
        );
}

.ps-browser-bar {
    height: 42px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding:
        0 13px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );
}

.ps-browser-buttons {
    display: flex;

    gap: 5px;
}

.ps-browser-buttons span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.28
        );
}

.ps-browser-address {
    flex: 1;

    padding:
        6px 12px;

    border-radius: 7px;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );

    font-size: 8px;
}

.ps-product-screen {
    min-height:
        320px;

    display: grid;

    grid-template-columns:
        50px 1fr;
}

.ps-product-sidebar {
    display: flex;

    flex-direction:
        column;

    align-items:
        center;

    gap: 20px;

    padding-top:
        17px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );
}

.ps-product-symbol {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;

    justify-content:
        center;

    border-radius:
        8px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #2869ef,
            #7950ee
        );

    font-size:
        8px;

    font-weight:
        800;
}

.ps-product-sidebar i {
    width: 20px;
    height: 5px;

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );
}

.ps-product-main {
    padding: 28px;
}

.ps-product-small {
    color:
        #808cac;

    font-size:
        8px;

    font-weight:
        750;

    letter-spacing:
        1.3px;
}

.ps-product-main h3 {
    max-width:
        360px;

    margin:
        9px 0 21px;

    color: white;

    font-size:
        27px;

    line-height:
        1.05;

    letter-spacing:
        -1px;
}

.ps-product-modules {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 9px;
}

.ps-product-modules > div {
    padding: 13px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    border-radius:
        10px;

    background:
        rgba(
            255,
            255,
            255,
            0.035
        );
}

.ps-product-modules small {
    display: block;

    color:
        #6f7b9a;

    font-size:
        7px;
}

.ps-product-modules strong {
    display: block;

    margin-top:
        5px;

    color: white;

    font-size:
        12px;
}

.ps-product-wave {
    height: 125px;

    margin-top:
        15px;

    padding: 10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

    border-radius:
        12px;
}

.ps-product-wave svg {
    width: 100%;
    height: 100%;
}

.ps-laptop-base {
    width: 600px;
    height: 24px;

    margin-left:
        -30px;

    border-radius:
        5px 5px
        35px 35px;

    background:
        linear-gradient(
            #d8dbe4,
            #8b91a1
        );
}


/* =========================================================
   HERO SIDE PANELS
========================================================= */

.ps-code-panel {
    left: 5%;
    top: 18%;

    width: 240px;
    height: 180px;

    padding: 15px;

    border-radius:
        15px;

    background:
        rgba(
            20,
            27,
            56,
            0.92
        );

    transform:
        rotateY(15deg)
        rotateZ(-5deg);

    z-index: 3;
}

.ps-panel-top {
    display: flex;

    gap: 5px;

    margin-bottom:
        18px;
}

.ps-panel-top span {
    width: 6px;
    height: 6px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.35
        );
}

.ps-code-lines {
    display: flex;

    flex-direction:
        column;

    gap: 11px;
}

.ps-code-lines i {
    width: 80%;
    height: 5px;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            #4f8cff,
            rgba(
                123,
                92,
                246,
                0.4
            )
        );
}

.ps-code-lines .code-short {
    width: 42%;
}

.ps-code-lines .code-medium {
    width: 62%;
}

.ps-web-panel {
    right: 1%;
    top: 16%;

    width: 210px;

    padding: 23px;

    border-radius:
        17px;

    background:
        rgba(
            255,
            255,
            255,
            0.80
        );

    backdrop-filter:
        blur(18px);

    transform:
        rotateY(-12deg)
        rotateZ(5deg);

    z-index: 14;
}

.ps-visual-label {
    color:
        var(--ps-purple);

    font-size:
        8px;

    font-weight:
        850;
}

.ps-web-panel strong {
    display: block;

    margin-top: 8px;

    font-size:
        20px;
}

.ps-web-lines {
    display: flex;

    gap: 6px;

    margin-top:
        20px;
}

.ps-web-lines i {
    width: 55px;
    height: 5px;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            #2869ef,
            #7950ee
        );
}


/* =========================================================
   MOBILE DEVICE
========================================================= */

.ps-mobile-device {
    right: 7%;

    bottom: 45px;

    width: 125px;
    height: 255px;

    padding:
        42px 14px
        17px;

    border:
        4px solid
        #11182d;

    border-radius:
        28px;

    color: white;

    background:
        linear-gradient(
            160deg,
            #182759,
            #54369b,
            #8853d9
        );

    transform:
        rotateZ(7deg);

    z-index: 16;
}

.ps-mobile-notch {
    position: absolute;

    left: 50%;
    top: 8px;

    width: 48px;
    height: 12px;

    transform:
        translateX(-50%);

    background:
        #0c1223;

    border-radius:
        0 0 9px 9px;
}

.ps-mobile-caption {
    color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    font-size:
        7px;
}

.ps-mobile-device strong {
    display: block;

    margin-top: 8px;

    font-size:
        17px;

    line-height:
        1.12;
}

.ps-mobile-ui {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

    margin-top:
        30px;
}

.ps-mobile-ui span {
    height: 31px;

    border-radius:
        8px;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );
}


/* =========================================================
   HERO SMALL OBJECTS
========================================================= */

.ps-ai-object,
.ps-cloud-object,
.ps-security-object {
    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        11px 13px;

    border-radius:
        14px;

    background:
        rgba(
            255,
            255,
            255,
            0.78
        );

    backdrop-filter:
        blur(15px);

    z-index: 20;
}

.ps-ai-object {
    right: 8%;
    top: 3%;
}

.ps-cloud-object {
    left: 5%;
    bottom: 16%;
}

.ps-security-object {
    right: -2%;
    top: 48%;
}

.ps-ai-object > span,
.ps-cloud-object > span,
.ps-security-object > span {
    width: 33px;
    height: 33px;

    display: flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        10px;

    background:
        #f1edff;

    color:
        var(--ps-purple);

    font-size:
        9px;

    font-weight:
        850;
}

.ps-ai-object strong,
.ps-cloud-object strong,
.ps-security-object strong {
    display: block;

    font-size:
        10px;
}

.ps-ai-object small,
.ps-cloud-object small,
.ps-security-object small {
    display: block;

    color:
        #7f889e;

    font-size:
        7px;
}

.ps-stage-connections {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.ps-stage-connections path {
    fill: none;

    stroke:
        rgba(
            110,
            87,
            220,
            0.24
        );

    stroke-width:
        1.2;

    stroke-dasharray:
        8 10;
}

.ps-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 22px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 11px;

    font-size:
        8px;

    font-weight:
        800;
}


/* =========================================================
   BUILD STORY
========================================================= */

.ps-build-story {
    position: relative;

    background:
        #fbfaf8;
}


/* =========================================================
   STORY INTRO
========================================================= */

.ps-story-intro {
    padding:
        95px 0 75px;

    text-align: center;
}

.ps-kicker {
    display: block;

    margin-bottom:
        14px;

    color:
        var(--ps-purple);

    font-size:
        10px;

    font-weight:
        850;

    letter-spacing:
        2px;
}

.ps-story-intro h2 {
    max-width:
        850px;

    margin:
        0 auto;

    font-size:
        clamp(
            50px,
            5.4vw,
            80px
        );

    line-height:
        0.98;

    letter-spacing:
        -4px;
}

.ps-story-intro p {
    max-width:
        650px;

    margin:
        22px auto 0;

    color:
        var(--ps-muted);

    font-size:
        16px;

    line-height:
        1.7;
}


/* =========================================================
   STORY EXPERIENCE
========================================================= */

.ps-story-experience {
    position: relative;

    padding:
        0 0 80px;

    background:

        radial-gradient(
            circle at 80% 30%,
            rgba(
                217,
                209,
                255,
                0.33
            ),
            transparent 32%
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(
                252,
                220,
                201,
                0.34
            ),
            transparent 34%
        ),

        #fbfaf8;
}

.ps-story-experience-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.80fr)
        minmax(0, 1.20fr);

    gap: 75px;

    align-items:
        start;
}


/* =========================================================
   REAL STORY STEPS
========================================================= */

.ps-story-steps {
    position: relative;
}

.ps-story-step {
    min-height:
        72vh;

    display: flex;

    align-items:
        center;

    position: relative;

    opacity: 0.36;

    transform:
        translateX(-10px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.ps-story-step:first-child {
    min-height:
        65vh;
}

.ps-story-step:last-child {
    min-height:
        68vh;
}

.ps-story-step.is-active {
    opacity: 1;

    transform:
        translateX(0);
}

.ps-story-step.is-before {
    opacity: 0.24;
}

.ps-story-step.is-after {
    opacity: 0.34;
}

.ps-story-step-inner {
    max-width:
        500px;
}

.ps-story-number {
    display:
        inline-block;

    margin-bottom:
        15px;

    color:
        var(--ps-purple);

    font-size:
        10px;

    font-weight:
        850;

    letter-spacing:
        1.8px;
}

.ps-story-step h3 {
    margin:
        0 0 21px;

    font-size:
        clamp(
            48px,
            4.7vw,
            72px
        );

    line-height:
        0.98;

    letter-spacing:
        -3px;
}

.ps-story-step p {
    max-width:
        470px;

    margin: 0;

    color:
        var(--ps-muted);

    font-size:
        16px;

    line-height:
        1.75;
}

.ps-story-step-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top:
        25px;
}

.ps-story-step-tags span {
    padding:
        8px 11px;

    border:
        1px solid
        var(--ps-border);

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            0.72
        );

    color:
        #68738d;

    font-size:
        9px;

    font-weight:
        750;
}


/* =========================================================
   STICKY VISUAL COLUMN
========================================================= */

.ps-story-visual-column {
    position: relative;

    min-height:
        100%;
}

.ps-story-visual-sticky {
    position: sticky;

    top: 135px;

    width: 100%;

    min-height:
        calc(
            100vh -
            170px
        );

    display: flex;

    flex-direction:
        column;

    justify-content:
        center;
}


/* =========================================================
   STORY PROGRESS
========================================================= */

.ps-story-progress {
    display: flex;

    align-items: center;

    justify-content:
        center;

    gap: 24px;

    margin-bottom:
        28px;
}

.ps-story-progress span {
    position: relative;

    color:
        #a3a8b7;

    font-size:
        8px;

    font-weight:
        850;

    letter-spacing:
        1.2px;

    transition:
        color
        0.3s ease;
}

.ps-story-progress span::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            var(--ps-blue),
            var(--ps-purple),
            var(--ps-pink)
        );

    transition:
        width
        0.3s ease;
}

.ps-story-progress span.active {
    color:
        var(--ps-purple);
}

.ps-story-progress span.active::after {
    width: 100%;
}


/* =========================================================
   STORY VISUAL
========================================================= */

.ps-story-visual {
    position: relative;

    width: 100%;

    min-height:
        580px;
}

.ps-story-state {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transform:
        translateY(28px)
        scale(0.965);

    pointer-events: none;

    transition:
        opacity
        0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        transform
        0.65s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.ps-story-state.active {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;

    z-index: 5;
}

.ps-story-state.before {
    opacity: 0;

    transform:
        translateY(-25px)
        scale(1.015);
}

.ps-story-state.after {
    opacity: 0;

    transform:
        translateY(32px)
        scale(0.965);
}


/* =========================================================
   IDEA VISUAL
========================================================= */

.ps-idea-scene {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.ps-idea-orb {
    position: relative;

    width: 285px;
    height: 285px;

    display: flex;

    flex-direction:
        column;

    align-items: center;

    justify-content:
        center;

    overflow: hidden;

    border-radius:
        43% 57% 50% 50% /
        48% 45% 55% 52%;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #ece7ff
        );

    box-shadow:
        0 40px 100px
        rgba(
            94,
            74,
            190,
            0.20
        );

    z-index: 3;
}

.ps-idea-orb::before {
    content: "";

    position: absolute;

    inset: 35px;

    border-radius:
        inherit;

    background:

        radial-gradient(
            circle at 20% 20%,
            rgba(
                77,
                145,
                255,
                0.35
            ),
            transparent 48%
        ),

        radial-gradient(
            circle at 80% 80%,
            rgba(
                240,
                157,
                133,
                0.38
            ),
            transparent 48%
        );
}

.ps-idea-orb span,
.ps-idea-orb strong {
    position: relative;

    z-index: 4;
}

.ps-idea-orb span {
    font-size:
        10px;

    letter-spacing:
        2px;

    color:
        #747e98;
}

.ps-idea-orb strong {
    margin-top: 5px;

    font-size:
        50px;

    letter-spacing:
        -3px;
}

.idea-ring {
    position: absolute;

    border:
        1px solid
        rgba(
            110,
            84,
            220,
            0.16
        );

    border-radius: 50%;
}

.ring-a {
    width: 420px;
    height: 420px;
}

.ring-b {
    width: 540px;
    height: 335px;
}

.ring-c {
    width: 350px;
    height: 520px;

    transform:
        rotate(35deg);
}

.idea-particle {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--ps-purple);

    box-shadow:
        0 0 20px
        rgba(
            121,
            80,
            238,
            0.55
        );
}

.idea-particle.p1 {
    left: 22%;
    top: 24%;
}

.idea-particle.p2 {
    right: 18%;
    top: 38%;
}

.idea-particle.p3 {
    left: 28%;
    bottom: 20%;
}


/* =========================================================
   DESIGN VISUAL
========================================================= */

.ps-design-scene {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content:
        center;
}

.ps-wireframe {
    position: absolute;

    width: 400px;
    height: 255px;

    padding: 20px;

    border:
        1px solid
        rgba(
            48,
            61,
            109,
            0.12
        );

    border-radius:
        19px;

    background:
        rgba(
            255,
            255,
            255,
            0.82
        );

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 28px 60px
        rgba(
            44,
            50,
            95,
            0.10
        );
}

.wire-one {
    transform:
        translate(
            -85px,
            -45px
        )
        rotate(-8deg);
}

.wire-two {
    transform:
        translate(
            15px,
            0
        )
        rotate(2deg);

    z-index: 3;
}

.wire-three {
    transform:
        translate(
            95px,
            52px
        )
        rotate(8deg);
}

.ps-wire-top {
    display: flex;

    gap: 5px;

    margin-bottom:
        23px;
}

.ps-wire-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #c7ccda;
}

.ps-wire-title {
    width: 42%;
    height: 16px;

    margin-bottom:
        22px;

    border-radius:
        6px;

    background:
        linear-gradient(
            90deg,
            #bdd1ff,
            #ded1ff
        );
}

.ps-wire-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap: 9px;

    margin-bottom:
        20px;
}

.ps-wire-grid.two {
    grid-template-columns:
        repeat(
            2,
            1fr
        );
}

.ps-wire-grid i {
    height: 55px;

    border-radius:
        9px;

    background:
        rgba(
            94,
            107,
            157,
            0.08
        );
}

.ps-wire-large-block {
    height: 85px;

    margin-bottom:
        20px;

    border-radius:
        9px;

    background:
        rgba(
            94,
            107,
            157,
            0.08
        );
}

.ps-wire-line {
    width: 90%;
    height: 9px;

    margin-top: 10px;

    border-radius:
        999px;

    background:
        rgba(
            94,
            107,
            157,
            0.08
        );
}

.ps-wire-line.short {
    width: 60%;
}


/* =========================================================
   ENGINEERING VISUAL
========================================================= */

.ps-engineering-scene {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content:
        center;
}

.ps-engineering-window {
    width: 600px;

    overflow: hidden;

    border-radius:
        21px;

    background:
        #111a37;

    box-shadow:
        0 45px 95px
        rgba(
            34,
            39,
            82,
            0.28
        );
}

.ps-engineering-top {
    height: 46px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        0 15px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );
}

.ps-engineering-top > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.30
        );
}

.ps-engineering-top small {
    margin-left: auto;

    color:
        rgba(
            255,
            255,
            255,
            0.28
        );

    font-size:
        7px;

    letter-spacing:
        1px;
}

.ps-engineering-body {
    min-height:
        350px;

    display: grid;

    grid-template-columns:
        0.72fr
        1.28fr;
}

.ps-code-column {
    padding:
        28px 20px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );
}

.code-row {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom:
        16px;
}

.code-row b {
    width: 17px;
    height: 6px;

    border-radius:
        999px;

    background:
        #8071ff;
}

.code-row i {
    flex: 1;

    height: 6px;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            #4082f8,
            rgba(
                123,
                80,
                238,
                0.38
            )
        );
}

.code-row.medium i {
    max-width: 80%;
}

.code-row.short i {
    max-width: 55%;
}

.ps-system-map {
    position: relative;
}

.ps-system-map svg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.ps-system-map path {
    fill: none;

    stroke:
        rgba(
            139,
            92,
            246,
            0.34
        );

    stroke-width:
        2;
}

.ps-system-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content:
        center;

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius:
        13px;

    background:
        linear-gradient(
            135deg,
            #2869ef,
            #7950ee
        );

    color: white;

    font-size:
        10px;

    font-weight:
        850;

    z-index: 5;
}

.map-node {
    position: absolute;

    width: 15px;
    height: 15px;

    border-radius: 50%;

    background:
        var(--ps-purple);

    box-shadow:
        0 0 18px
        rgba(
            121,
            80,
            238,
            0.55
        );

    z-index: 5;
}

.n1 {
    left: 16%;
    top: 47%;
}

.n2 {
    left: 48%;
    top: 20%;
}

.n3 {
    right: 14%;
    top: 47%;
}

.n4 {
    left: 48%;
    bottom: 16%;
}

.ps-engineering-chip {
    position: absolute;

    padding:
        10px 13px;

    border-radius:
        12px;

    background:
        rgba(
            255,
            255,
            255,
            0.88
        );

    box-shadow:
        0 17px 40px
        rgba(
            42,
            47,
            93,
            0.12
        );
}

.ps-engineering-chip strong {
    display: block;

    color:
        var(--ps-purple);

    font-size:
        9px;
}

.ps-engineering-chip small {
    display: block;

    color:
        #7d869e;

    font-size:
        7px;
}

.chip-api {
    left: 2%;
    top: 21%;
}

.chip-sec {
    right: 0;
    top: 28%;
}

.chip-cloud {
    right: 8%;
    bottom: 15%;
}


/* =========================================================
   PRODUCT VISUAL
========================================================= */

.ps-product-scene {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content:
        center;
}

.ps-final-browser {
    width: 610px;

    overflow: hidden;

    border-radius:
        23px;

    background:
        rgba(
            255,
            255,
            255,
            0.92
        );

    box-shadow:
        0 45px 100px
        rgba(
            53,
            55,
            101,
            0.16
        );
}

.ps-final-browser-top {
    height: 47px;

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        0 16px;

    border-bottom:
        1px solid
        var(--ps-border);
}

.ps-final-browser-top > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #b8bfce;
}

.ps-final-address {
    flex: 1;

    max-width:
        250px;

    margin-left: 12px;

    padding:
        6px 10px;

    border-radius:
        7px;

    background:
        #f3f4f8;

    color:
        #979eaf;

    font-size:
        7px;
}

.ps-final-browser-content {
    min-height:
        380px;

    display: flex;

    flex-direction:
        column;

    align-items: center;

    justify-content:
        center;

    padding: 40px;

    text-align:
        center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(
                216,
                208,
                255,
                0.44
            ),
            transparent 57%
        );
}

.ps-final-browser-content small {
    color:
        var(--ps-purple);

    font-size:
        9px;

    font-weight:
        850;

    letter-spacing:
        1.7px;
}

.ps-final-browser-content h4 {
    margin:
        13px 0 15px;

    font-size:
        54px;

    line-height:
        0.92;

    letter-spacing:
        -3px;
}

.ps-final-browser-content p {
    margin:
        0 0 22px;

    color:
        var(--ps-muted);

    font-size:
        12px;
}

.ps-final-modules {
    display: flex;

    flex-wrap: wrap;

    justify-content:
        center;

    gap: 8px;
}

.ps-final-modules span {
    padding:
        8px 12px;

    border:
        1px solid
        var(--ps-border);

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            0.75
        );

    font-size:
        8px;

    font-weight:
        750;
}

.ps-product-success {
    position: absolute;

    right: 2%;
    bottom: 13%;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 14px;

    border-radius:
        13px;

    background:
        rgba(
            255,
            255,
            255,
            0.90
        );

    box-shadow:
        0 18px 40px
        rgba(
            42,
            47,
            93,
            0.12
        );
}

.ps-product-success > span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content:
        center;

    border-radius: 50%;

    background:
        #e2f8ee;

    color:
        #1da96a;

    font-weight:
        900;
}

.ps-product-success strong {
    display: block;

    font-size:
        9px;
}

.ps-product-success small {
    display: block;

    color:
        #7d869e;

    font-size:
        7px;
}


/* =========================================================
   TEMPORARY NEXT SECTION
========================================================= */

.ps-next-placeholder {
    padding:
        80px 0;

    text-align: center;

    background:
        white;
}

.ps-next-placeholder h2 {
    max-width:
        760px;

    margin:
        0 auto;

    font-size:
        clamp(
            42px,
            4.3vw,
            62px
        );

    line-height:
        0.98;

    letter-spacing:
        -3px;
}

.ps-next-placeholder p {
    max-width:
        650px;

    margin:
        20px auto 0;

    color:
        var(--ps-muted);

    line-height:
        1.65;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        75px 0 30px;

    background:
        #10182f;

    color: white;
}

.footer-top {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;
}

.footer-brand {
    display: inline-block;

    margin-bottom:
        15px;

    font-size:
        20px;

    font-weight:
        800;
}

.footer-brand span {
    color:
        #71c7ff;
}

.footer-company p {
    max-width:
        350px;

    color:
        #99a5be;

    font-size:
        12px;

    line-height:
        1.7;
}

.footer-status {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top:
        18px;

    color:
        #a4aec3;

    font-size:
        10px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #34d399;
}

.footer-column {
    display: flex;

    flex-direction:
        column;

    gap: 10px;
}

.footer-column h3 {
    margin:
        0 0 9px;

    font-size:
        12px;
}

.footer-column a {
    color:
        #909cb5;

    font-size:
        11px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content:
        space-between;

    margin-top:
        55px;

    padding-top:
        24px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    color:
        #758099;

    font-size:
        10px;
}

.footer-bottom p {
    margin: 0;
}