/* ============================================================
   BRAND CONTACT
============================================================ */

.dmxBrandContact{

    position:relative;
    overflow:hidden;

    padding:
        clamp(110px,10vw,180px)
        0;

    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(0,217,220,.08),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(6,103,241,.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8fb 100%
        );

    color:var(--dmx-ink);

}


.dmxBrandContact::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:min(1500px,94%);
    height:1px;

    transform:translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8,38,77,.14),
            transparent
        );

}


.dmxBrandContact::after{

    content:"";

    position:absolute;

    top:130px;
    right:-320px;

    width:650px;
    height:650px;

    border:
        1px solid rgba(6,103,241,.07);

    border-radius:50%;

    box-shadow:
        0 0 0 80px rgba(6,103,241,.02),
        0 0 0 160px rgba(0,217,220,.015);

    pointer-events:none;

}


/* ============================================================
   SHELL
============================================================ */

.dmxBrandContactShell{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
        minmax(320px,.82fr)
        minmax(0,1.18fr);

    gap:
        clamp(40px,6vw,90px);

    align-items:start;

}


/* ============================================================
   INFORMATION
============================================================ */

.dmxBrandContactInfo{

    position:sticky;

    top:130px;

}


/* Eyebrow */

.dmxBrandContactEyebrow{

    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:
        clamp(26px,3vw,38px);

}


.dmxBrandContactEyebrow > span{

    position:relative;

    width:44px;
    height:1px;

    background:var(--dmx-blue);

}


.dmxBrandContactEyebrow > span::after{

    content:"";

    position:absolute;

    top:50%;
    right:0;

    width:6px;
    height:6px;

    border-radius:50%;

    background:var(--dmx-cyan);

    box-shadow:
        0 0 0 5px rgba(0,217,220,.12);

    transform:translateY(-50%);

}


.dmxBrandContactEyebrow small{

    color:var(--dmx-navy);

    font-size:11px;
    font-weight:850;

    letter-spacing:.16em;
    line-height:1.3;

    text-transform:uppercase;

}


/* Heading */

.dmxBrandContactInfo h2{

    max-width:690px;

    margin:0;

    color:var(--dmx-ink);

    font-size:
        clamp(42px,5vw,72px);

    font-weight:750;
    line-height:1;

    letter-spacing:
        clamp(-3.2px,-.055em,-1.5px);

}


.dmxBrandContactInfo h2 span{

    display:block;

    margin-top:10px;

    color:transparent;

    background:
        linear-gradient(
            105deg,
            var(--dmx-blue),
            #158fd7 52%,
            var(--dmx-cyan)
        );

    -webkit-background-clip:text;
    background-clip:text;

}


.dmxBrandContactDescription{

    max-width:610px;

    margin:
        clamp(24px,3vw,36px)
        0
        0;

    color:var(--dmx-muted);

    font-size:
        clamp(16px,1.4vw,19px);

    line-height:1.8;

}


/* ============================================================
   STEPS
============================================================ */

.dmxBrandContactSteps{

    display:flex;
    flex-direction:column;

    margin-top:
        clamp(40px,5vw,62px);

    border-top:
        1px solid rgba(8,38,77,.1);

}


.dmxBrandContactStep{

    display:grid;

    grid-template-columns:
        48px
        minmax(0,1fr);

    gap:18px;

    padding:
        24px
        0;

    border-bottom:
        1px solid rgba(8,38,77,.1);

}


.dmxBrandContactStepNumber{

    display:flex;
    align-items:center;
    justify-content:center;

    width:38px;
    height:38px;

    border:
        1px solid rgba(6,103,241,.15);

    border-radius:12px;

    background:
        rgba(6,103,241,.055);

    color:var(--dmx-blue);

    font-size:10px;
    font-weight:900;

    letter-spacing:.1em;

}


.dmxBrandContactStep h3{

    margin:
        0
        0
        6px;

    color:var(--dmx-navy);

    font-size:16px;
    font-weight:800;

    letter-spacing:-.02em;

}


.dmxBrandContactStep p{

    max-width:470px;

    margin:0;

    color:var(--dmx-muted);

    font-size:13px;
    line-height:1.65;

}


/* ============================================================
   DIRECT CONTACT
============================================================ */

.dmxBrandContactDirect{

    margin-top:
        clamp(35px,4vw,50px);

    padding:
        clamp(24px,3vw,32px);

    border:
        1px solid rgba(8,38,77,.09);

    border-radius:24px;

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 20px 50px rgba(15,51,88,.07);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

}


.dmxBrandContactDirectHeader{

    margin-bottom:22px;

}


.dmxBrandContactDirectHeader small{

    display:block;

    margin-bottom:5px;

    color:var(--dmx-muted);

    font-size:10px;
    font-weight:800;

    letter-spacing:.12em;
    text-transform:uppercase;

}


.dmxBrandContactDirectHeader strong{

    color:var(--dmx-navy);

    font-size:17px;
    font-weight:750;

}


.dmxBrandContactDirectLinks{

    display:flex;
    flex-direction:column;
    gap:10px;

}


.dmxBrandContactDirectLink{

    display:flex;
    align-items:center;
    gap:14px;

    padding:14px;

    border:
        1px solid rgba(8,38,77,.08);

    border-radius:15px;

    background:white;

    color:inherit;

    text-decoration:none;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.dmxBrandContactDirectLink:hover{

    transform:translateX(5px);

    border-color:
        rgba(6,103,241,.2);

    box-shadow:
        0 12px 28px rgba(15,51,88,.08);

}


.dmxBrandContactDirectIcon{

    display:grid;
    place-items:center;

    flex:0 0 42px;

    width:42px;
    height:42px;

    border-radius:13px;

    background:
        linear-gradient(
            145deg,
            var(--dmx-navy),
            var(--dmx-blue)
        );

    color:white;

    font-size:14px;
    font-weight:900;

}


.dmxBrandContactDirectLink small{

    display:block;

    margin-bottom:3px;

    color:var(--dmx-muted);

    font-size:9px;
    font-weight:800;

    letter-spacing:.1em;
    text-transform:uppercase;

}


.dmxBrandContactDirectLink strong{

    color:var(--dmx-navy);

    font-size:13px;
    font-weight:750;

    overflow-wrap:anywhere;

}


/* ============================================================
   FORM PANEL
============================================================ */

.dmxBrandContactFormPanel{

    position:relative;
    overflow:hidden;

    border:
        1px solid rgba(8,38,77,.1);

    border-radius:
        clamp(28px,3vw,38px);

    background:
        rgba(255,255,255,.9);

    box-shadow:
        0 35px 100px rgba(15,51,88,.13);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

}


.dmxBrandContactFormPanel::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-170px;

    width:360px;
    height:360px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(0,217,220,.12),
            transparent 68%
        );

    pointer-events:none;

}


/* ============================================================
   FORM TOP
============================================================ */

.dmxBrandContactFormTop{

    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:25px;

    padding:
        clamp(28px,4vw,44px);

    border-bottom:
        1px solid rgba(8,38,77,.09);

    background:
        linear-gradient(
            135deg,
            rgba(8,38,77,.025),
            rgba(6,103,241,.035)
        );

}


.dmxBrandContactFormTop small{

    display:block;

    margin-bottom:6px;

    color:var(--dmx-blue);

    font-size:10px;
    font-weight:900;

    letter-spacing:.15em;
    text-transform:uppercase;

}


.dmxBrandContactFormTop h3{

    margin:0;

    color:var(--dmx-navy);

    font-size:
        clamp(25px,2.4vw,34px);

    font-weight:750;
    line-height:1.1;

    letter-spacing:-.035em;

}


.dmxBrandContactFormStatus{

    display:inline-flex;
    align-items:center;
    gap:9px;

    padding:
        9px
        12px;

    border:
        1px solid rgba(0,217,220,.18);

    border-radius:100px;

    background:
        rgba(0,217,220,.07);

    color:#087f88;

    font-size:9px;
    font-weight:850;

    letter-spacing:.07em;
    line-height:1.25;

    text-transform:uppercase;

}


.dmxBrandContactFormStatus::before{

    content:"";

    flex:0 0 7px;

    width:7px;
    height:7px;

    border-radius:50%;

    background:var(--dmx-cyan);

    box-shadow:
        0 0 0 4px rgba(0,217,220,.1);

}


/* ============================================================
   FORM
============================================================ */

.dmxBrandContactForm{

    position:relative;
    z-index:2;

    padding:
        clamp(28px,4vw,46px);

}


.dmxBrandContactFormSection{

    padding:
        0
        0
        clamp(34px,4vw,48px);

    margin-bottom:
        clamp(34px,4vw,48px);

    border-bottom:
        1px solid rgba(8,38,77,.09);

}


.dmxBrandContactFormSection:last-of-type{

    margin-bottom:0;

}


/* Section title */

.dmxBrandContactFormSectionTitle{

    display:flex;
    align-items:flex-start;
    gap:15px;

    margin-bottom:25px;

}


.dmxBrandContactFormSectionTitle > span{

    display:grid;
    place-items:center;

    flex:0 0 33px;

    width:33px;
    height:33px;

    border-radius:10px;

    background:var(--dmx-navy);
    color:white;

    font-size:9px;
    font-weight:900;

    letter-spacing:.1em;

}


.dmxBrandContactFormSectionTitle small{

    display:block;

    margin-bottom:3px;

    color:var(--dmx-muted);

    font-size:9px;
    font-weight:850;

    letter-spacing:.12em;
    text-transform:uppercase;

}


.dmxBrandContactFormSectionTitle strong{

    color:var(--dmx-navy);

    font-size:16px;
    font-weight:800;

}


/* ============================================================
   GRID AND FIELDS
============================================================ */

.dmxBrandContactFormGrid{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:18px;

}


.dmxBrandContactField{

    min-width:0;

}


.dmxBrandContactField label{

    display:block;

    margin-bottom:9px;

    color:#2e4054;

    font-size:11px;
    font-weight:800;

}


.dmxBrandContactField input,
.dmxBrandContactField select,
.dmxBrandContactField textarea{

    width:100%;

    border:
        1px solid rgba(8,38,77,.12);

    border-radius:14px;

    outline:none;

    background:#f9fbfc;
    color:var(--dmx-ink);

    font:inherit;

    font-size:14px;
    font-weight:550;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}


.dmxBrandContactField input,
.dmxBrandContactField select{

    height:54px;

    padding:
        0
        16px;

}


.dmxBrandContactField textarea{

    min-height:155px;

    padding:16px;

    line-height:1.65;

    resize:vertical;

}


.dmxBrandContactField input::placeholder,
.dmxBrandContactField textarea::placeholder{

    color:#94a1ae;

    opacity:1;

}


.dmxBrandContactField input:hover,
.dmxBrandContactField select:hover,
.dmxBrandContactField textarea:hover{

    border-color:
        rgba(6,103,241,.22);

    background:white;

}


.dmxBrandContactField input:focus,
.dmxBrandContactField select:focus,
.dmxBrandContactField textarea:focus{

    border-color:var(--dmx-blue);

    background:white;

    box-shadow:
        0 0 0 4px rgba(6,103,241,.08);

}


/* Select */

.dmxBrandContactSelect{

    position:relative;

}


.dmxBrandContactSelect::after{

    content:"";

    position:absolute;

    top:50%;
    right:19px;

    width:7px;
    height:7px;

    border:
        solid var(--dmx-navy);

    border-width:
        0 1.5px 1.5px 0;

    transform:
        translateY(-70%)
        rotate(45deg);

    pointer-events:none;

}


.dmxBrandContactSelect select{

    appearance:none;
    -webkit-appearance:none;

    padding-right:48px;

    cursor:pointer;

}


/* ============================================================
   BRAND STAGE OPTIONS
============================================================ */

.dmxBrandContactOptions{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:12px;

    margin:0;
    padding:0;

    border:0;

}


.dmxBrandContactOption{

    position:relative;

    cursor:pointer;

}


.dmxBrandContactOption > input{

    position:absolute;

    width:1px;
    height:1px;

    opacity:0;
    pointer-events:none;

}


.dmxBrandContactOptionControl{

    display:flex;
    flex-direction:column;
    gap:18px;

    height:100%;

    min-height:150px;

    padding:18px;

    border:
        1px solid rgba(8,38,77,.1);

    border-radius:17px;

    background:#f9fbfc;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


.dmxBrandContactOption:hover
.dmxBrandContactOptionControl{

    transform:translateY(-3px);

    border-color:
        rgba(6,103,241,.2);

    background:white;

    box-shadow:
        0 14px 30px rgba(15,51,88,.07);

}


.dmxBrandContactOptionIcon{

    display:grid;
    place-items:center;

    width:39px;
    height:39px;

    border-radius:12px;

    background:
        rgba(6,103,241,.08);

    color:var(--dmx-blue);

    font-size:17px;
    font-weight:800;

}


.dmxBrandContactOptionControl strong{

    display:block;

    margin-bottom:5px;

    color:var(--dmx-navy);

    font-size:13px;
    font-weight:800;

}


.dmxBrandContactOptionControl small{

    display:block;

    color:var(--dmx-muted);

    font-size:11px;
    line-height:1.5;

}


.dmxBrandContactOption > input:checked
+ .dmxBrandContactOptionControl{

    border-color:var(--dmx-blue);

    background:
        linear-gradient(
            145deg,
            rgba(6,103,241,.075),
            rgba(0,217,220,.055)
        );

    box-shadow:
        0 0 0 3px rgba(6,103,241,.07);

}


.dmxBrandContactOption > input:checked
+ .dmxBrandContactOptionControl
.dmxBrandContactOptionIcon{

    background:var(--dmx-blue);
    color:white;

}


.dmxBrandContactOption > input:focus-visible
+ .dmxBrandContactOptionControl{

    outline:
        3px solid rgba(6,103,241,.2);

    outline-offset:3px;

}


/* ============================================================
   CHECKBOX SERVICES
============================================================ */

.dmxBrandContactChecks{

    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:11px;

    margin:0;
    padding:0;

    border:0;

}


.dmxBrandContactCheck{

    position:relative;

    cursor:pointer;

}


.dmxBrandContactCheck > input{

    position:absolute;

    width:1px;
    height:1px;

    opacity:0;
    pointer-events:none;

}


.dmxBrandContactCheck > span{

    position:relative;

    display:flex;
    align-items:center;

    min-height:51px;

    padding:
        12px
        15px
        12px
        45px;

    border:
        1px solid rgba(8,38,77,.1);

    border-radius:13px;

    background:#f9fbfc;

    color:#33465a;

    font-size:12px;
    font-weight:700;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;

}


.dmxBrandContactCheck > span::before{

    content:"";

    position:absolute;

    left:15px;
    top:50%;

    width:18px;
    height:18px;

    border:
        1px solid rgba(8,38,77,.2);

    border-radius:6px;

    background:white;

    transform:translateY(-50%);

    transition:
        background .25s ease,
        border-color .25s ease;

}


.dmxBrandContactCheck > span::after{

    content:"";

    position:absolute;

    left:21px;
    top:50%;

    width:5px;
    height:9px;

    border:
        solid white;

    border-width:
        0 2px 2px 0;

    opacity:0;

    transform:
        translateY(-61%)
        rotate(45deg);

}


.dmxBrandContactCheck:hover > span{

    transform:translateY(-2px);

    border-color:
        rgba(6,103,241,.2);

    background:white;

}


.dmxBrandContactCheck > input:checked + span{

    border-color:
        rgba(6,103,241,.3);

    background:
        rgba(6,103,241,.055);

    color:var(--dmx-navy);

}


.dmxBrandContactCheck > input:checked
+ span::before{

    border-color:var(--dmx-blue);
    background:var(--dmx-blue);

}


.dmxBrandContactCheck > input:checked
+ span::after{

    opacity:1;

}


.dmxBrandContactCheck > input:focus-visible + span{

    outline:
        3px solid rgba(6,103,241,.18);

    outline-offset:2px;

}


/* ============================================================
   SUBMIT
============================================================ */

.dmxBrandContactSubmit{

    padding-top:
        clamp(5px,2vw,16px);

}


.dmxBrandContactPrivacy{

    position:relative;

    display:grid;

    grid-template-columns:
        20px
        minmax(0,1fr);

    gap:12px;

    align-items:start;

    color:var(--dmx-muted);

    font-size:11px;
    line-height:1.55;

    cursor:pointer;

}


.dmxBrandContactPrivacy > input{

    position:absolute;

    width:1px;
    height:1px;

    opacity:0;
    pointer-events:none;

}


.dmxBrandContactPrivacyControl{

    position:relative;

    width:20px;
    height:20px;

    border:
        1px solid rgba(8,38,77,.2);

    border-radius:6px;

    background:white;

    transition:
        border-color .25s ease,
        background .25s ease;

}


.dmxBrandContactPrivacyControl::after{

    content:"";

    position:absolute;

    left:6px;
    top:3px;

    width:5px;
    height:9px;

    border:
        solid white;

    border-width:
        0 2px 2px 0;

    opacity:0;

    transform:rotate(45deg);

}


.dmxBrandContactPrivacy
> input:checked
+ .dmxBrandContactPrivacyControl{

    border-color:var(--dmx-blue);
    background:var(--dmx-blue);

}


.dmxBrandContactPrivacy
> input:checked
+ .dmxBrandContactPrivacyControl::after{

    opacity:1;

}


.dmxBrandContactPrivacy
> input:focus-visible
+ .dmxBrandContactPrivacyControl{

    outline:
        3px solid rgba(6,103,241,.2);

    outline-offset:2px;

}


.dmxBrandContactSubmitButton{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;

    width:100%;
    min-height:64px;

    margin-top:24px;

    padding:
        0
        13px
        0
        24px;

    border:0;
    border-radius:17px;

    background:
        linear-gradient(
            110deg,
            var(--dmx-navy),
            var(--dmx-blue)
        );

    color:white;

    font:inherit;

    font-size:13px;
    font-weight:850;

    cursor:pointer;

    box-shadow:
        0 18px 38px rgba(6,103,241,.2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.dmxBrandContactSubmitButton:hover{

    transform:translateY(-4px);

    box-shadow:
        0 24px 50px rgba(6,103,241,.28);

}


.dmxBrandContactSubmitButton:focus-visible{

    outline:
        3px solid rgba(6,103,241,.25);

    outline-offset:4px;

}


.dmxBrandContactSubmitArrow{

    display:grid;
    place-items:center;

    width:39px;
    height:39px;

    border-radius:12px;

    background:
        rgba(255,255,255,.13);

    font-size:18px;

    transition:
        transform .3s ease,
        background .3s ease;

}


.dmxBrandContactSubmitButton:hover
.dmxBrandContactSubmitArrow{

    transform:rotate(45deg);

    background:
        rgba(255,255,255,.2);

}


.dmxBrandContactSubmitNote{

    margin:
        14px
        0
        0;

    color:#8795a3;

    font-size:10px;
    line-height:1.55;
    text-align:center;

}


/* ============================================================
   SCREEN READER
============================================================ */

.sr-only{

    position:absolute !important;

    width:1px !important;
    height:1px !important;

    padding:0 !important;
    margin:-1px !important;

    overflow:hidden !important;

    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;

    border:0 !important;

}


/* ============================================================
   RESPONSIVE — 1100PX
============================================================ */

@media (max-width:1100px){

    .dmxBrandContactShell{

        grid-template-columns:
            minmax(300px,.75fr)
            minmax(0,1.25fr);

        gap:45px;

    }


    .dmxBrandContactInfo{

        top:110px;

    }


    .dmxBrandContactOptions{

        grid-template-columns:1fr;

    }


    .dmxBrandContactOptionControl{

        min-height:auto;

        flex-direction:row;
        align-items:center;

    }

}


/* ============================================================
   RESPONSIVE — 900PX
============================================================ */

@media (max-width:900px){

    .dmxBrandContactShell{

        grid-template-columns:1fr;

        gap:55px;

    }


    .dmxBrandContactInfo{

        position:relative;
        top:auto;

    }


    .dmxBrandContactInfo h2{

        max-width:760px;

    }


    .dmxBrandContactDescription{

        max-width:700px;

    }


    .dmxBrandContactSteps{

        display:grid;

        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap:15px;

        border-top:0;

    }


    .dmxBrandContactStep{

        grid-template-columns:1fr;

        padding:22px;

        border:
            1px solid rgba(8,38,77,.09);

        border-radius:18px;

        background:rgba(255,255,255,.65);

    }


    .dmxBrandContactDirect{

        max-width:700px;

    }

}


/* ============================================================
   RESPONSIVE — 680PX
============================================================ */

@media (max-width:680px){

    .dmxBrandContact{

        padding:
            95px
            0;

    }


    .dmxBrandContactSteps{

        grid-template-columns:1fr;

    }


    .dmxBrandContactStep{

        grid-template-columns:
            44px
            minmax(0,1fr);

    }


    .dmxBrandContactFormTop{

        align-items:flex-start;
        flex-direction:column;

    }


    .dmxBrandContactFormGrid,
    .dmxBrandContactChecks{

        grid-template-columns:1fr;

    }


    .dmxBrandContactFormStatus{

        white-space:normal;

    }

}


/* ============================================================
   RESPONSIVE — 480PX
============================================================ */

@media (max-width:480px){

    .dmxBrandContactInfo h2{

        font-size:
            clamp(39px,12vw,54px);

    }


    .dmxBrandContactDirect{

        padding:20px;

        border-radius:20px;

    }


    .dmxBrandContactDirectLink{

        align-items:flex-start;

    }


    .dmxBrandContactFormPanel{

        border-radius:25px;

    }


    .dmxBrandContactFormTop,
    .dmxBrandContactForm{

        padding:
            25px
            20px;

    }


    .dmxBrandContactFormSectionTitle{

        gap:11px;

    }


    .dmxBrandContactOptionControl{

        padding:15px;

    }


    .dmxBrandContactSubmitButton{

        padding-left:19px;

    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion:reduce){

    .dmxBrandContactDirectLink,
    .dmxBrandContactField input,
    .dmxBrandContactField select,
    .dmxBrandContactField textarea,
    .dmxBrandContactOptionControl,
    .dmxBrandContactCheck > span,
    .dmxBrandContactSubmitButton,
    .dmxBrandContactSubmitArrow{

        transition:none;

    }

}