/* ============================================================
   BRAND IDENTITY CTA
============================================================ */

.dmxBrandIdentityCta{

    position:relative;
    overflow:hidden;

    padding:
        clamp(40px,6vw,80px)
        0
        clamp(110px,10vw,180px);

    background:
        linear-gradient(
            180deg,
            #f3f7fb 0%,
            #ffffff 100%
        );

}


/* ============================================================
   SHELL
============================================================ */

.dmxBrandIdentityCtaShell{

    position:relative;
    isolation:isolate;
    overflow:hidden;

    display:grid;

    grid-template-columns:
        minmax(340px,.85fr)
        minmax(0,1.15fr);

    min-height:
        clamp(590px,52vw,700px);

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        clamp(30px,4vw,52px);

    background:
        linear-gradient(
            125deg,
            #061d3a 0%,
            var(--dmx-navy) 46%,
            #064a86 100%
        );

    box-shadow:
        0 40px 110px rgba(8,38,77,.25);

}


.dmxBrandIdentityCtaShell::before{

    content:"";

    position:absolute;
    z-index:-1;

    width:620px;
    height:620px;

    top:-360px;
    right:-160px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(0,217,220,.24) 0%,
            rgba(6,103,241,.08) 42%,
            transparent 70%
        );

    pointer-events:none;

}


.dmxBrandIdentityCtaShell::after{

    content:"";

    position:absolute;
    z-index:-1;

    width:480px;
    height:480px;

    left:-280px;
    bottom:-280px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(198,255,47,.12),
            transparent 68%
        );

    pointer-events:none;

}


/* ============================================================
   VISUAL
============================================================ */

.dmxBrandIdentityCtaVisual{

    position:relative;
    overflow:hidden;

    min-height:100%;

    border-right:
        1px solid rgba(255,255,255,.1);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.01)
        );

}


/* Grid */

.dmxBrandIdentityCtaGrid{

    position:absolute;

    inset:0;

    opacity:.16;

    background-image:
        linear-gradient(
            rgba(255,255,255,.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.18) 1px,
            transparent 1px
        );

    background-size:34px 34px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 76%
        );

    -webkit-mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 76%
        );

}


/* Orbits */

.dmxBrandIdentityCtaOrbit{

    position:absolute;

    top:50%;
    left:50%;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius:50%;

    transform:
        translate(-50%,-50%);

}


.dmxBrandIdentityCtaOrbitOne{

    width:390px;
    height:390px;

}


.dmxBrandIdentityCtaOrbitTwo{

    width:270px;
    height:270px;

    border-color:
        rgba(0,217,220,.22);

}


.dmxBrandIdentityCtaOrbitOne::before,
.dmxBrandIdentityCtaOrbitTwo::before{

    content:"";

    position:absolute;

    width:9px;
    height:9px;

    border-radius:50%;

    background:var(--dmx-cyan);

    box-shadow:
        0 0 0 8px rgba(0,217,220,.08),
        0 0 24px rgba(0,217,220,.6);

}


.dmxBrandIdentityCtaOrbitOne::before{

    top:26%;
    right:6%;

}


.dmxBrandIdentityCtaOrbitTwo::before{

    bottom:13%;
    left:13%;

    background:var(--dmx-lime);

    box-shadow:
        0 0 0 8px rgba(198,255,47,.08),
        0 0 24px rgba(198,255,47,.45);

}


/* Brand mark */

.dmxBrandIdentityCtaMark{

    position:absolute;

    top:50%;
    left:50%;

    display:grid;

    grid-template-columns:
        repeat(2,54px);

    gap:10px;

    padding:30px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius:30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.045)
        );

    box-shadow:
        0 28px 70px rgba(0,0,0,.3),
        inset 0 1px 0 rgba(255,255,255,.15);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transform:
        translate(-50%,-50%)
        rotate(-5deg);

}


.dmxBrandIdentityCtaMark span{

    width:54px;
    height:54px;

    border-radius:14px;

    background:
        linear-gradient(
            145deg,
            var(--dmx-blue),
            var(--dmx-cyan)
        );

    box-shadow:
        0 12px 28px rgba(0,217,220,.15);

}


.dmxBrandIdentityCtaMark span:nth-child(2),
.dmxBrandIdentityCtaMark span:nth-child(3){

    background:var(--dmx-lime);

    box-shadow:
        0 12px 28px rgba(198,255,47,.12);

}


/* Floating cards */

.dmxBrandIdentityCtaCard{

    position:absolute;
    z-index:3;

    min-width:145px;

    padding:
        16px
        18px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius:17px;

    background:
        rgba(255,255,255,.1);

    box-shadow:
        0 18px 45px rgba(0,0,0,.2);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

}


.dmxBrandIdentityCtaCard small{

    display:block;

    margin-bottom:5px;

    color:rgba(255,255,255,.52);

    font-size:9px;
    font-weight:800;

    letter-spacing:.14em;
    line-height:1;

    text-transform:uppercase;

}


.dmxBrandIdentityCtaCard strong{

    color:white;

    font-size:14px;
    font-weight:750;

    letter-spacing:-.01em;

}


.dmxBrandIdentityCtaCardOne{

    top:13%;
    left:8%;

    transform:rotate(-4deg);

}


.dmxBrandIdentityCtaCardTwo{

    right:5%;
    top:23%;

    transform:rotate(5deg);

}


.dmxBrandIdentityCtaCardThree{

    left:11%;
    bottom:12%;

    transform:rotate(3deg);

}


/* Decorative connector lines */

.dmxBrandIdentityCtaCard::after{

    content:"";

    position:absolute;

    width:54px;
    height:1px;

    background:
        linear-gradient(
            90deg,
            rgba(0,217,220,.65),
            transparent
        );

}


.dmxBrandIdentityCtaCardOne::after{

    top:50%;
    right:-54px;

}


.dmxBrandIdentityCtaCardTwo::after{

    top:50%;
    left:-54px;

    transform:rotate(180deg);

}


.dmxBrandIdentityCtaCardThree::after{

    top:50%;
    right:-54px;

}


/* ============================================================
   CONTENT
============================================================ */

.dmxBrandIdentityCtaContent{

    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:
        clamp(50px,6vw,92px)
        clamp(38px,6vw,90px);

}


/* Eyebrow */

.dmxBrandIdentityCtaEyebrow{

    display:flex;
    align-items:center;
    gap:13px;

    margin-bottom:
        clamp(24px,3vw,38px);

}


.dmxBrandIdentityCtaEyebrow > span{

    position:relative;

    width:38px;
    height:1px;

    background:var(--dmx-cyan);

}


.dmxBrandIdentityCtaEyebrow > span::after{

    content:"";

    position:absolute;

    top:50%;
    right:0;

    width:6px;
    height:6px;

    border-radius:50%;

    background:var(--dmx-lime);

    box-shadow:
        0 0 0 5px rgba(198,255,47,.1);

    transform:translateY(-50%);

}


.dmxBrandIdentityCtaEyebrow small{

    color:var(--dmx-cyan);

    font-size:11px;
    font-weight:850;

    letter-spacing:.15em;
    line-height:1.3;

    text-transform:uppercase;

}


/* Heading */

.dmxBrandIdentityCtaContent h2{

    max-width:780px;

    margin:0;

    color:white;

    font-size:
        clamp(40px,4.7vw,68px);

    font-weight:750;
    line-height:1.02;

    letter-spacing:
        clamp(-3px,-.05em,-1.4px);

}


.dmxBrandIdentityCtaContent h2 span{

    display:block;

    margin-top:8px;

    color:transparent;

    background:
        linear-gradient(
            100deg,
            var(--dmx-cyan) 0%,
            #71e7ff 45%,
            var(--dmx-lime) 100%
        );

    -webkit-background-clip:text;
    background-clip:text;

}


/* Paragraph */

.dmxBrandIdentityCtaContent > p{

    max-width:680px;

    margin:
        clamp(24px,3vw,34px)
        0
        0;

    color:rgba(255,255,255,.68);

    font-size:
        clamp(16px,1.4vw,19px);

    line-height:1.8;

}


/* ============================================================
   ACTIONS
============================================================ */

.dmxBrandIdentityCtaActions{

    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-top:
        clamp(30px,4vw,44px);

}


.dmxBrandIdentityCtaPrimary,
.dmxBrandIdentityCtaSecondary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:13px;

    min-height:58px;

    padding:
        0
        24px;

    border-radius:16px;

    font-size:13px;
    font-weight:850;

    text-decoration:none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.dmxBrandIdentityCtaPrimary{

    background:var(--dmx-lime);
    color:#132200;

    box-shadow:
        0 16px 36px rgba(198,255,47,.18);

}


.dmxBrandIdentityCtaPrimary span{

    display:grid;
    place-items:center;

    width:27px;
    height:27px;

    border-radius:50%;

    background:rgba(19,34,0,.1);

    font-size:16px;

    transition:
        transform .3s ease;

}


.dmxBrandIdentityCtaPrimary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 23px 46px rgba(198,255,47,.24);

}


.dmxBrandIdentityCtaPrimary:hover span{

    transform:rotate(45deg);

}


.dmxBrandIdentityCtaSecondary{

    border:
        1px solid rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.06);

    color:white;

}


.dmxBrandIdentityCtaSecondary:hover{

    transform:translateY(-4px);

    border-color:
        rgba(0,217,220,.42);

    background:
        rgba(255,255,255,.1);

}


/* ============================================================
   TRUST
============================================================ */

.dmxBrandIdentityCtaTrust{

    display:flex;
    flex-wrap:wrap;
    gap:
        14px
        28px;

    margin-top:
        clamp(30px,4vw,44px);

    padding-top:28px;

    border-top:
        1px solid rgba(255,255,255,.1);

}


.dmxBrandIdentityCtaTrust div{

    display:flex;
    align-items:center;
    gap:10px;

}


.dmxBrandIdentityCtaTrust div > span{

    position:relative;

    flex:0 0 17px;

    width:17px;
    height:17px;

    border:
        1px solid rgba(0,217,220,.4);

    border-radius:50%;

    background:
        rgba(0,217,220,.08);

}


.dmxBrandIdentityCtaTrust div > span::before{

    content:"";

    position:absolute;

    left:5px;
    top:3px;

    width:4px;
    height:7px;

    border:
        solid var(--dmx-cyan);

    border-width:
        0 1.5px 1.5px 0;

    transform:rotate(45deg);

}


.dmxBrandIdentityCtaTrust small{

    color:rgba(255,255,255,.58);

    font-size:11px;
    font-weight:650;
    line-height:1.4;

}


/* ============================================================
   HOVER VISUAL
============================================================ */

@media (hover:hover){

    .dmxBrandIdentityCtaShell:hover
    .dmxBrandIdentityCtaMark{

        transform:
            translate(-50%,-50%)
            rotate(0deg)
            scale(1.03);

    }


    .dmxBrandIdentityCtaMark{

        transition:
            transform .7s cubic-bezier(.2,.8,.2,1);

    }


    .dmxBrandIdentityCtaCard{

        transition:
            transform .6s cubic-bezier(.2,.8,.2,1),
            background .3s ease;

    }


    .dmxBrandIdentityCtaShell:hover
    .dmxBrandIdentityCtaCardOne{

        transform:
            translate(-5px,-8px)
            rotate(-6deg);

    }


    .dmxBrandIdentityCtaShell:hover
    .dmxBrandIdentityCtaCardTwo{

        transform:
            translate(6px,-7px)
            rotate(7deg);

    }


    .dmxBrandIdentityCtaShell:hover
    .dmxBrandIdentityCtaCardThree{

        transform:
            translate(-4px,7px)
            rotate(5deg);

    }

}


/* ============================================================
   RESPONSIVE — 1050PX
============================================================ */

@media (max-width:1050px){

    .dmxBrandIdentityCtaShell{

        grid-template-columns:
            minmax(300px,.8fr)
            minmax(0,1.2fr);

    }


    .dmxBrandIdentityCtaContent{

        padding:
            65px
            45px;

    }


    .dmxBrandIdentityCtaOrbitOne{

        width:330px;
        height:330px;

    }


    .dmxBrandIdentityCtaOrbitTwo{

        width:225px;
        height:225px;

    }


    .dmxBrandIdentityCtaMark{

        grid-template-columns:
            repeat(2,45px);

        padding:25px;

    }


    .dmxBrandIdentityCtaMark span{

        width:45px;
        height:45px;

    }

}


/* ============================================================
   RESPONSIVE — 850PX
============================================================ */

@media (max-width:850px){

    .dmxBrandIdentityCtaShell{

        grid-template-columns:1fr;

    }


    .dmxBrandIdentityCtaVisual{

        min-height:430px;

        border-right:0;

        border-bottom:
            1px solid rgba(255,255,255,.1);

    }


    .dmxBrandIdentityCtaContent{

        padding:
            clamp(45px,8vw,70px)
            clamp(28px,7vw,58px);

    }


    .dmxBrandIdentityCtaOrbitOne{

        width:370px;
        height:370px;

    }


    .dmxBrandIdentityCtaOrbitTwo{

        width:250px;
        height:250px;

    }

}


/* ============================================================
   RESPONSIVE — 560PX
============================================================ */

@media (max-width:560px){

    .dmxBrandIdentityCta{

        padding:
            30px
            0
            100px;

    }


    .dmxBrandIdentityCtaShell{

        border-radius:28px;

    }


    .dmxBrandIdentityCtaVisual{

        min-height:350px;

    }


    .dmxBrandIdentityCtaOrbitOne{

        width:290px;
        height:290px;

    }


    .dmxBrandIdentityCtaOrbitTwo{

        width:190px;
        height:190px;

    }


    .dmxBrandIdentityCtaMark{

        grid-template-columns:
            repeat(2,40px);

        gap:8px;

        padding:21px;

        border-radius:23px;

    }


    .dmxBrandIdentityCtaMark span{

        width:40px;
        height:40px;

        border-radius:11px;

    }


    .dmxBrandIdentityCtaCard{

        min-width:118px;

        padding:
            13px
            14px;

    }


    .dmxBrandIdentityCtaCard strong{

        font-size:12px;

    }


    .dmxBrandIdentityCtaCardOne{

        top:8%;
        left:5%;

    }


    .dmxBrandIdentityCtaCardTwo{

        top:13%;
        right:4%;

    }


    .dmxBrandIdentityCtaCardThree{

        left:7%;
        bottom:7%;

    }


    .dmxBrandIdentityCtaCard::after{

        display:none;

    }


    .dmxBrandIdentityCtaContent{

        padding:
            45px
            24px;

    }


    .dmxBrandIdentityCtaContent h2{

        font-size:
            clamp(38px,11vw,53px);

    }


    .dmxBrandIdentityCtaActions{

        flex-direction:column;

    }


    .dmxBrandIdentityCtaPrimary,
    .dmxBrandIdentityCtaSecondary{

        width:100%;

    }


    .dmxBrandIdentityCtaTrust{

        flex-direction:column;

        gap:14px;

    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion:reduce){

    .dmxBrandIdentityCtaMark,
    .dmxBrandIdentityCtaCard,
    .dmxBrandIdentityCtaPrimary,
    .dmxBrandIdentityCtaPrimary span,
    .dmxBrandIdentityCtaSecondary{

        transition:none;

    }

}