/* ============================================================
   DGxOne Beta 1 — Identity Portal
   Scope: .dgx-signup-page only
   ============================================================ */

.dgx-signup-page {
    --signup-bg: #061019;
    --signup-bg-deep: #03090f;

    --signup-panel:
        rgba(6, 17, 27, 0.91);

    --signup-panel-solid:
        #07131e;

    --signup-line:
        rgba(136, 183, 203, 0.15);

    --signup-line-strong:
        rgba(136, 183, 203, 0.34);

    --signup-text:
        #f2f7fa;

    --signup-muted:
        #9babb5;

    --signup-soft:
        #6f818d;

    --signup-frost:
        #88b7cb;

    --signup-frost-strong:
        #a8cedd;

    margin: 0;

    min-height: 100vh;

    color: var(--signup-text);

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(36, 126, 180, 0.12),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            var(--signup-bg) 0%,
            var(--signup-bg-deep) 100%
        );

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}


.dgx-signup-page::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(121, 216, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(121, 216, 255, 0.022) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 82%,
            transparent
        );
}


.dgx-signup-shell {
    position: relative;

    min-height: 100vh;

    display: grid;

    grid-template-rows:
        auto
        1fr
        auto;

    isolation: isolate;
}


/* ------------------------------------------------------------
   Atmosphere
   ------------------------------------------------------------ */

.dgx-signup-atmosphere {
    position: fixed;
    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}


.dgx-signup-glow {
    position: absolute;

    width: 720px;
    height: 720px;

    left: 50%;
    top: 53%;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(66, 183, 242, 0.13),
            rgba(22, 95, 139, 0.055) 38%,
            transparent 70%
        );

    filter: blur(12px);

    animation:
        dgxSignupGlow
        8s
        ease-in-out
        infinite;
}


.dgx-signup-mist {
    position: absolute;

    display: block;

    border-radius: 50%;

    opacity: 0.32;

    filter: blur(90px);

    background:
        rgba(70, 178, 231, 0.12);

    will-change:
        transform,
        opacity;
}


.dgx-signup-mist.mist-one {
    width: 620px;
    height: 250px;

    left: 7%;
    bottom: 7%;

    animation:
        dgxSignupMistOne
        18s
        ease-in-out
        infinite alternate;
}


.dgx-signup-mist.mist-two {
    width: 700px;
    height: 280px;

    right: 2%;
    bottom: 3%;

    opacity: 0.24;

    animation:
        dgxSignupMistTwo
        21s
        ease-in-out
        infinite alternate;
}


.dgx-signup-mist.mist-three {
    width: 420px;
    height: 420px;

    left: 50%;
    top: 24%;

    transform:
        translateX(-50%);

    opacity: 0.16;

    animation:
        dgxSignupMistThree
        15s
        ease-in-out
        infinite alternate;
}


/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */

.dgx-signup-nav {
    min-height: 78px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 28px;

    padding:
        0 clamp(24px, 6vw, 92px);

    border-bottom:
        1px solid
        rgba(121, 216, 255, 0.09);

    background:
        rgba(3, 10, 16, 0.76);

    backdrop-filter:
        blur(22px);
}


.dgx-signup-brand {
    justify-self: start;

    display: inline-flex;

    align-items: center;

    gap: 12px;
}


.dgx-signup-brand-mark {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;
}


.dgx-signup-brand-mark img {
    width: 100%;
    height: 100%;
}


.dgx-signup-brand-copy {
    display: grid;

    gap: 2px;
}


.dgx-signup-brand-copy strong {
    color:
        var(--signup-text);

    font-size: 15px;
    font-weight: 690;

    letter-spacing: 0.02em;
}


.dgx-signup-brand-copy small {
    color:
        var(--signup-soft);

    font-size: 9px;
    font-weight: 650;

    letter-spacing: 0.17em;
}


.dgx-signup-nav-links {
    display: flex;

    align-items: center;

    gap: 30px;
}


.dgx-signup-nav-links a {
    color:
        var(--signup-muted);

    font-size: 13px;
    font-weight: 570;

    transition:
        color 160ms ease;
}


.dgx-signup-nav-links a:hover {
    color:
        var(--signup-text);
}


.dgx-signup-signin {
    justify-self: end;

    min-height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        0 18px;

    border:
        1px solid
        rgba(121, 216, 255, 0.22);

    border-radius: 9px;

    color:
        var(--signup-text);

    background:
        rgba(121, 216, 255, 0.035);

    font-size: 13px;
    font-weight: 620;

    transition:
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}


.dgx-signup-signin:hover {
    border-color:
        rgba(121, 216, 255, 0.45);

    background:
        rgba(121, 216, 255, 0.07);

    transform:
        translateY(-1px);
}


/* ------------------------------------------------------------
   Main
   ------------------------------------------------------------ */

.dgx-signup-main {
    display: grid;

    place-items: center;

    padding:
        46px 24px 34px;
}


.dgx-signup-card {
    position: relative;

    width:
        min(680px, 100%);

    padding:
        48px 52px 42px;

    overflow: hidden;

    border:
        1px solid
        var(--signup-line-strong);

    border-radius:
        24px;

    background:
        linear-gradient(
            180deg,
            rgba(9, 25, 38, 0.95),
            rgba(4, 13, 22, 0.97)
        );

    box-shadow:
        0 38px 110px
            rgba(0, 0, 0, 0.50),
        0 0 80px
            rgba(63, 177, 232, 0.075);

    backdrop-filter:
        blur(24px);

    animation:
        dgxSignupCardEnter
        520ms
        cubic-bezier(.2, .8, .2, 1)
        both;
}


.dgx-signup-card::before {
    content: "";

    position: absolute;

    left: 17%;
    right: 17%;
    top: -1px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(121, 216, 255, 0.95),
            transparent
        );

    box-shadow:
        0 0 18px
        rgba(121, 216, 255, 0.46);
}


.dgx-signup-core {
    width: 58px;
    height: 58px;

    margin:
        0 auto 19px;

    display: grid;

    place-items: center;

    filter:
        drop-shadow(
            0 0 18px
            rgba(121, 216, 255, 0.24)
        );
}


.dgx-signup-core img {
    width: 100%;
    height: 100%;
}


.dgx-signup-eyebrow {
    margin:
        0 0 13px;

    color:
        var(--signup-frost);

    font-size:
        11px;

    font-weight:
        720;

    letter-spacing:
        0.17em;

    text-align:
        center;
}


.dgx-signup-card h1 {
    margin:
        0;

    color:
        var(--signup-text);

    font-size:
        clamp(
            38px,
            5vw,
            52px
        );

    font-weight:
        720;

    line-height:
        1.04;

    letter-spacing:
        -0.045em;

    text-align:
        center;
}


.dgx-signup-intro {
    margin:
        19px auto 0;

    color:
        var(--signup-muted);

    font-size:
        17px;

    line-height:
        1.55;

    text-align:
        center;
}


.dgx-signup-principles {
    display: flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px 24px;

    margin:
        30px 0 33px;

    padding:
        19px 0;

    border-top:
        1px solid
        rgba(121, 216, 255, 0.08);

    border-bottom:
        1px solid
        rgba(121, 216, 255, 0.08);
}


.dgx-signup-principles span {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    color:
        #aab8c0;

    font-size:
        12px;

    font-weight:
        560;
}


.dgx-signup-principles i {
    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        var(--signup-frost);

    box-shadow:
        0 0 10px
        rgba(121, 216, 255, 0.46);
}


/* ------------------------------------------------------------
   Form
   ------------------------------------------------------------ */

.dgx-signup-form {
    display:
        grid;

    gap:
        20px;
}


.dgx-signup-field {
    display:
        grid;

    gap:
        9px;
}


.dgx-signup-field label {
    color:
        #c4d0d6;

    font-size:
        14px;

    font-weight:
        610;

    line-height:
        1.3;
}


.dgx-signup-field input {
    width:
        100%;

    min-height:
        58px;

    padding:
        0 17px;

    border:
        1px solid
        rgba(121, 216, 255, 0.18);

    border-radius:
        10px;

    outline:
        none;

    color:
        var(--signup-text);

    background:
        rgba(1, 8, 14, 0.71);

    font-size:
        16px;

    font-weight:
        500;

    caret-color:
        var(--signup-frost);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.02);

    transition:
        border-color 170ms ease,
        box-shadow 170ms ease,
        background 170ms ease;
}


.dgx-signup-field input::placeholder {
    color:
        #60737f;
}


.dgx-signup-field input:focus {
    border-color:
        rgba(121, 216, 255, 0.62);

    background:
        rgba(2, 11, 18, 0.88);

    box-shadow:
        0 0 0 3px
            rgba(121, 216, 255, 0.055),
        0 0 24px
            rgba(121, 216, 255, 0.09);
}


.dgx-signup-submit {
    min-height:
        60px;

    margin-top:
        5px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        18px;

    padding:
        0 22px;

    border:
        1px solid
        rgba(133, 224, 255, 0.68);

    border-radius:
        10px;

    color:
        #04101a;

    background:
        linear-gradient(
            135deg,
            #9ae6ff 0%,
            #67d4ff 42%,
            #42bafa 100%
        );

    box-shadow:
        0 16px 38px
            rgba(54, 173, 230, 0.22);

    font-size:
        16px;

    font-weight:
        720;

    cursor:
        pointer;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease;
}


.dgx-signup-submit svg {
    width:
        22px;

    height:
        22px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.dgx-signup-submit:hover {
    transform:
        translateY(-1px);

    filter:
        brightness(1.04);

    box-shadow:
        0 19px 44px
            rgba(54, 173, 230, 0.30);
}


.dgx-signup-submit:active {
    transform:
        translateY(0);
}


.dgx-signup-submit:disabled {
    opacity:
        0.58;

    cursor:
        wait;

    transform:
        none;
}


/* ------------------------------------------------------------
   Assurance
   ------------------------------------------------------------ */

.dgx-signup-assurance {
    margin-top:
        26px;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(121, 216, 255, 0.10);

    border-radius:
        11px;

    background:
        rgba(121, 216, 255, 0.025);
}


.dgx-signup-assurance strong {
    display:
        block;

    margin-bottom:
        7px;

    color:
        #c7d5dc;

    font-size:
        13px;

    font-weight:
        650;
}


.dgx-signup-assurance p {
    margin:
        0;

    color:
        #8497a2;

    font-size:
        12.5px;

    line-height:
        1.55;
}


.dgx-signup-existing {
    margin:
        24px 0 0;

    color:
        var(--signup-soft);

    font-size:
        13px;

    text-align:
        center;
}


.dgx-signup-existing a {
    margin-left:
        4px;

    color:
        #bbddeb;

    font-weight:
        620;
}


.dgx-signup-existing a:hover {
    color:
        var(--signup-frost);
}


/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.dgx-signup-footer {
    min-height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        22px;

    padding:
        0 clamp(24px, 6vw, 92px);

    color:
        #526874;

    font-size:
        11px;

    letter-spacing:
        0.04em;
}


.dgx-signup-footer nav {
    display:
        flex;

    gap:
        22px;
}


.dgx-signup-footer a:hover {
    color:
        #9ec6d8;
}


/* ------------------------------------------------------------
   Motion
   ------------------------------------------------------------ */

@keyframes dgxSignupCardEnter {
    from {
        opacity:
            0;

        transform:
            translateY(14px)
            scale(0.992);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes dgxSignupGlow {
    0%,
    100% {
        opacity:
            0.62;

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

    50% {
        opacity:
            1;

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


@keyframes dgxSignupMistOne {
    from {
        transform:
            translate3d(-5%, 8%, 0)
            scale(0.92);

        opacity:
            0.20;
    }

    to {
        transform:
            translate3d(12%, -4%, 0)
            scale(1.08);

        opacity:
            0.36;
    }
}


@keyframes dgxSignupMistTwo {
    from {
        transform:
            translate3d(10%, 4%, 0)
            scale(1);
    }

    to {
        transform:
            translate3d(-12%, -8%, 0)
            scale(1.12);
    }
}


@keyframes dgxSignupMistThree {
    from {
        transform:
            translateX(-50%)
            translateY(-4%)
            scale(0.9);
    }

    to {
        transform:
            translateX(-50%)
            translateY(9%)
            scale(1.1);
    }
}


/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 760px) {

    .dgx-signup-nav {
        grid-template-columns:
            1fr
            auto;

        min-height:
            70px;

        padding:
            0 18px;
    }


    .dgx-signup-nav-links {
        display:
            none;
    }


    .dgx-signup-main {
        padding:
            28px 16px;
    }


    .dgx-signup-card {
        padding:
            38px 24px 32px;

        border-radius:
            18px;
    }


    .dgx-signup-card h1 {
        font-size:
            38px;
    }


    .dgx-signup-principles {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding-left:
            6px;
    }


    .dgx-signup-footer {
        min-height:
            72px;

        flex-direction:
            column;

        justify-content:
            center;

        gap:
            8px;

        padding:
            14px 20px;
    }
}


@media (prefers-reduced-motion: reduce) {

    .dgx-signup-card,
    .dgx-signup-glow,
    .dgx-signup-mist {
        animation:
            none !important;
    }
}

/* End DGxOne Identity Portal */


/* ============================================================
   DGxOne Private Beta Invitation
   v26.5J
   ============================================================ */

.dgx-invitation-card {
    width:
        min(700px, 100%);
}


.dgx-invitation-status {
    width:
        fit-content;

    margin:
        0 auto 24px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        8px 12px;

    border:
        1px solid
        rgba(121, 216, 255, 0.18);

    border-radius:
        999px;

    color:
        #9bdfff;

    background:
        rgba(121, 216, 255, 0.045);

    font-size:
        10px;

    font-weight:
        760;

    letter-spacing:
        0.16em;
}


.dgx-invitation-status-dot {
    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--signup-frost);

    box-shadow:
        0 0 12px
        rgba(121, 216, 255, 0.82);
}


.dgx-invitation-core {
    position:
        relative;

    width:
        58px;

    height:
        58px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(121, 216, 255, 0.30);

    border-radius:
        17px;

    background:
        linear-gradient(
            145deg,
            rgba(121, 216, 255, 0.13),
            rgba(121, 216, 255, 0.025)
        );

    box-shadow:
        inset 0 1px 0
            rgba(255, 255, 255, 0.07),
        0 0 34px
            rgba(72, 189, 244, 0.13);

    transform:
        rotate(45deg);
}


.dgx-invitation-core span {
    position:
        absolute;

    border-radius:
        50%;

    background:
        var(--signup-frost);

    box-shadow:
        0 0 11px
        rgba(121, 216, 255, 0.8);
}


.dgx-invitation-core span:nth-child(1) {
    width:
        9px;

    height:
        9px;

    left:
        14px;

    top:
        14px;
}


.dgx-invitation-core span:nth-child(2) {
    width:
        6px;

    height:
        6px;

    right:
        13px;

    top:
        17px;
}


.dgx-invitation-core span:nth-child(3) {
    width:
        7px;

    height:
        7px;

    left:
        25px;

    bottom:
        12px;
}


.dgx-invitation-recipient {
    margin:
        28px 0 4px;

    padding:
        17px 18px;

    display:
        grid;

    gap:
        6px;

    border:
        1px solid
        rgba(121, 216, 255, 0.15);

    border-radius:
        11px;

    background:
        rgba(121, 216, 255, 0.035);

    text-align:
        center;
}


.dgx-invitation-recipient-label {
    color:
        #678491;

    font-size:
        9px;

    font-weight:
        730;

    letter-spacing:
        0.16em;
}


.dgx-invitation-recipient strong {
    color:
        #d8edf5;

    font-size:
        15px;

    font-weight:
        650;

    overflow-wrap:
        anywhere;
}


.dgx-invitation-lock {
    color:
        #76909c;

    font-size:
        11px;
}


.dgx-signup-field input[readonly] {
    color:
        #a9c6d2;

    border-color:
        rgba(121, 216, 255, 0.11);

    background:
        rgba(121, 216, 255, 0.025);

    cursor:
        default;
}


.dgx-invitation-invalid {
    margin:
        28px 0 8px;

    padding:
        22px;

    border:
        1px solid
        rgba(255, 180, 120, 0.18);

    border-radius:
        12px;

    background:
        rgba(255, 150, 90, 0.035);

    text-align:
        center;
}


.dgx-invitation-invalid strong {
    display:
        block;

    color:
        #e9d5c5;

    font-size:
        15px;

    margin-bottom:
        8px;
}


.dgx-invitation-invalid p {
    margin:
        0;

    color:
        #9c8d82;

    font-size:
        13px;

    line-height:
        1.55;
}


.dgx-invitation-invalid a {
    display:
        inline-block;

    margin-top:
        16px;

    color:
        var(--signup-frost);

    font-size:
        13px;

    font-weight:
        620;
}


.dgx-verification-form {
    margin-top:
        28px;
}


.dgx-verification-heading {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-bottom:
        4px;

    padding:
        15px 17px;

    border:
        1px solid
        rgba(121, 216, 255, 0.12);

    border-radius:
        11px;

    background:
        rgba(121, 216, 255, 0.03);
}


.dgx-verification-mark {
    flex:
        0 0 auto;

    width:
        34px;

    height:
        34px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(121, 216, 255, 0.26);

    border-radius:
        50%;

    color:
        var(--signup-frost);

    background:
        rgba(121, 216, 255, 0.055);

    font-size:
        14px;

    font-weight:
        800;
}


.dgx-verification-heading strong {
    display:
        block;

    color:
        #d4e4eb;

    font-size:
        13px;
}


.dgx-verification-heading p {
    margin:
        4px 0 0;

    color:
        #78909b;

    font-size:
        12px;

    line-height:
        1.45;
}


.dgx-signup-status {
    min-height:
        20px;

    margin:
        17px 0 0;

    color:
        #91a8b3;

    font-size:
        12px;

    line-height:
        1.45;

    text-align:
        center;
}


/* Keep native hidden semantics authoritative. */
.dgx-signup-page [hidden] {
    display:
        none !important;
}


@media (max-width: 760px) {

    .dgx-invitation-status {
        margin-bottom:
            20px;
    }


    .dgx-invitation-recipient {
        margin-top:
            24px;
    }
}

/* End Private Beta Invitation */

/* ============================================================
   DGxOne Premium Private Access
   Phase 26.6D-2B
   ============================================================ */

.dgx-private-access-state {
    margin-top: 30px;
}

.dgx-private-access-command {
    position: relative;

    padding: 24px;

    overflow: hidden;

    border:
        1px solid
        rgba(139, 220, 255, 0.15);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 34, 46, 0.72),
            rgba(3, 11, 17, 0.86)
        );

    box-shadow:
        inset 0 1px 0
            rgba(255, 255, 255, 0.035),
        0 20px 55px
            rgba(0, 0, 0, 0.22);
}

.dgx-private-access-command::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -65px;
    top: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(121, 216, 255, 0.13),
            transparent 70%
        );

    pointer-events: none;
}

.dgx-private-access-command-label {
    display: block;

    margin-bottom: 13px;

    color: #7896a4;

    font-size: 9px;

    font-weight: 760;

    letter-spacing: 0.18em;
}

.dgx-private-access-button {
    position: relative;

    min-height: 60px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 21px;

    overflow: hidden;

    isolation: isolate;

    border:
        1px solid
        rgba(190, 220, 232, 0.62);

    border-radius: 11px;

    color: #07141b;

    background:
        linear-gradient(
            112deg,
            #a9cedd 0%,
            #8ab8cb 38%,
            #709fb5 69%,
            #5f8da4 100%
        );

    box-shadow:
        0 18px 42px
            rgba(67, 115, 139, 0.21),
        inset 0 1px 0
            rgba(235, 248, 252, 0.72),
        inset 0 -1px 0
            rgba(31, 68, 86, 0.18);

    font-size: 15px;

    font-weight: 750;

    letter-spacing: -0.01em;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease,
        border-color 160ms ease;
}

.dgx-private-access-button > * {
    position: relative;
    z-index: 2;
}

.dgx-private-access-button::before {
    content: "";

    position: absolute;

    z-index: 1;

    top: -40%;
    bottom: -40%;

    left: -32%;

    width: 18%;

    transform:
        skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240, 250, 253, 0.08) 20%,
            rgba(248, 253, 255, 0.58) 50%,
            rgba(218, 238, 246, 0.12) 80%,
            transparent
        );

    filter: blur(3px);

    opacity: 0;

    pointer-events: none;

    animation:
        dgxFrostPearlSweep
        5.4s
        cubic-bezier(.24, .62, .28, 1)
        infinite;
}

.dgx-private-access-button svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dgx-private-access-button:hover {
    transform: translateY(-1px);

    filter:
        brightness(1.035)
        saturate(0.96);

    border-color:
        rgba(214, 235, 243, 0.78);

    box-shadow:
        0 22px 52px
            rgba(69, 119, 144, 0.31),
        inset 0 1px 0
            rgba(243, 251, 253, 0.78),
        inset 0 -1px 0
            rgba(31, 68, 86, 0.15);
}

.dgx-private-access-command p {
    margin: 17px 3px 0;

    color: #78909c;

    font-size: 12.5px;

    line-height: 1.6;
}

.dgx-private-access-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 9px 19px;

    margin-top: 18px;

    color: #607b87;

    font-size: 9px;

    font-weight: 720;

    letter-spacing: 0.12em;
}

.dgx-private-access-trust span {
    position: relative;
}

.dgx-private-access-trust span + span::before {
    content: "";

    position: absolute;

    width: 3px;
    height: 3px;

    left: -11px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(121, 216, 255, 0.55);
}

/*
   Invitation mode gains slightly stronger hierarchy without
   altering the security or form behavior.
*/

.dgx-invitation-recipient:not([hidden]) {
    box-shadow:
        inset 0 1px 0
            rgba(255, 255, 255, 0.025),
        0 16px 42px
            rgba(0, 0, 0, 0.12);
}

.dgx-invitation-recipient:not([hidden]) strong {
    color: #e5f5fb;

    font-size: 16px;
}

@media (max-width: 760px) {

    .dgx-private-access-command {
        padding: 19px;
    }

    .dgx-private-access-trust {
        flex-direction: column;

        gap: 8px;
    }

    .dgx-private-access-trust span + span::before {
        display: none;
    }
}



/* ------------------------------------------------------------
   DGxOne Frost Blue identity
   ------------------------------------------------------------ */

.dgx-invitation-status {
    color: #a9cedd;

    border-color:
        rgba(136, 183, 203, 0.21);

    background:
        rgba(109, 157, 179, 0.055);
}

.dgx-invitation-status-dot {
    background: #9bc6d7;

    box-shadow:
        0 0 11px
        rgba(145, 193, 211, 0.62);
}

.dgx-invitation-core {
    border-color:
        rgba(145, 193, 211, 0.34);

    background:
        linear-gradient(
            145deg,
            rgba(135, 181, 200, 0.13),
            rgba(89, 132, 151, 0.025)
        );

    box-shadow:
        inset 0 1px 0
            rgba(238, 248, 251, 0.08),
        0 0 34px
            rgba(91, 145, 169, 0.13);
}

.dgx-invitation-core span {
    background: #9ec8d8;

    box-shadow:
        0 0 10px
        rgba(159, 205, 220, 0.64);
}

.dgx-private-access-command {
    border-color:
        rgba(136, 183, 203, 0.17);

    background:
        linear-gradient(
            145deg,
            rgba(19, 38, 49, 0.76),
            rgba(4, 13, 19, 0.90)
        );

    box-shadow:
        inset 0 1px 0
            rgba(229, 243, 248, 0.035),
        0 22px 58px
            rgba(0, 0, 0, 0.24);
}

.dgx-private-access-command::before {
    background:
        radial-gradient(
            circle,
            rgba(127, 175, 199, 0.14),
            transparent 70%
        );
}

.dgx-private-access-command-label {
    color: #7793a0;
}

.dgx-private-access-trust {
    color: #688895;
}

.dgx-private-access-trust span + span::before {
    background:
        rgba(150, 198, 216, 0.62);
}

@keyframes dgxFrostPearlSweep {

    0%,
    68% {
        left: -32%;
        opacity: 0;
    }

    72% {
        opacity: 0.20;
    }

    78% {
        opacity: 0.78;
    }

    88% {
        left: 112%;
        opacity: 0.18;
    }

    100% {
        left: 112%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dgx-private-access-button::before {
        animation: none !important;
        display: none;
    }
}



/* ------------------------------------------------------------
   DGxOne Private Beta — email-only request
   ------------------------------------------------------------ */

.dgx-beta-entry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin: 17px 0 2px;

    color: rgba(174, 195, 204, 0.48);

    font-size: 11px;
}

.dgx-beta-entry-action {
    appearance: none;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #91b9c9;

    font: inherit;
    font-weight: 680;

    cursor: pointer;

    transition:
        color 160ms ease,
        opacity 160ms ease;
}

.dgx-beta-entry-action:hover {
    color: #c0dce6;
}

.dgx-beta-entry-action span {
    transition: transform 160ms ease;
}

.dgx-beta-entry-action:hover span {
    transform: translateX(2px);
}

.dgx-beta-request {
    position: relative;

    margin-top: 18px;
    padding: 23px;

    overflow: hidden;

    border:
        1px solid
        rgba(136, 183, 203, 0.17);

    border-radius: 13px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(127, 175, 199, 0.09),
            transparent 39%
        ),
        linear-gradient(
            145deg,
            rgba(13, 29, 38, 0.96),
            rgba(4, 13, 19, 0.98)
        );

    box-shadow:
        inset 0 1px 0
            rgba(230, 245, 250, 0.035),
        0 22px 58px
            rgba(0, 0, 0, 0.24);

    animation:
        dgxBetaRequestReveal
        220ms
        ease
        both;
}

.dgx-beta-request[hidden] {
    display: none !important;
}

.dgx-beta-request-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #789cab;

    font-size: 9px;
    font-weight: 760;

    letter-spacing: 0.18em;
}

.dgx-beta-request-close {
    appearance: none;

    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid
        rgba(147, 187, 203, 0.13);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.012);

    color:
        rgba(192, 211, 220, 0.48);

    font-size: 17px;

    cursor: pointer;

    transition:
        color 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.dgx-beta-request-close:hover {
    color: #d5e8ee;

    border-color:
        rgba(158, 199, 216, 0.30);

    background:
        rgba(127, 175, 199, 0.05);
}

.dgx-beta-request-copy {
    margin-top: 21px;
}

.dgx-beta-request-copy h2 {
    margin: 0;

    color: #eef6f8;

    font-size: 27px;
    font-weight: 560;

    letter-spacing: -0.035em;
}

.dgx-beta-request-copy p {
    max-width: 390px;

    margin: 8px 0 0;

    color:
        rgba(177, 198, 207, 0.58);

    font-size: 12px;
    line-height: 1.65;
}

.dgx-beta-request-form {
    margin-top: 21px;
}

.dgx-beta-request-form label {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(181, 202, 211, 0.61);

    font-size: 10px;
    font-weight: 650;
}

.dgx-beta-email-shell {
    position: relative;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(145, 190, 208, 0.18),
            rgba(90, 132, 151, 0.07)
        );

    padding: 1px;
}

.dgx-beta-request-form input {
    box-sizing: border-box;

    width: 100%;
    height: 50px;

    padding: 0 14px;

    border: 0;
    border-radius: 9px;

    outline: none;

    background:
        rgba(2, 10, 15, 0.91);

    color: #e8f2f5;

    font: inherit;
    font-size: 13px;

    transition:
        background 160ms ease,
        box-shadow 160ms ease;
}

.dgx-beta-request-form input::placeholder {
    color:
        rgba(153, 177, 187, 0.31);
}

.dgx-beta-request-form input:focus {
    background:
        rgba(4, 15, 21, 0.97);

    box-shadow:
        inset 0 0 0 1px
            rgba(159, 200, 216, 0.29),
        0 0 0 3px
            rgba(111, 159, 180, 0.055);
}

.dgx-beta-request-submit {
    position: relative;

    width: 100%;
    min-height: 50px;

    margin-top: 11px;
    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;

    border:
        1px solid
        rgba(187, 216, 227, 0.43);

    border-radius: 10px;

    color: #07151c;

    background:
        linear-gradient(
            112deg,
            #9fc6d6 0%,
            #82afc1 45%,
            #668fa4 100%
        );

    box-shadow:
        inset 0 1px 0
            rgba(240, 250, 253, 0.55),
        0 14px 34px
            rgba(65, 111, 133, 0.17);

    font: inherit;
    font-size: 12px;
    font-weight: 760;

    cursor: pointer;

    transition:
        transform 160ms ease,
        filter 160ms ease,
        box-shadow 160ms ease;
}

.dgx-beta-request-submit:hover {
    transform: translateY(-1px);

    filter: brightness(1.035);

    box-shadow:
        inset 0 1px 0
            rgba(244, 251, 253, 0.64),
        0 18px 40px
            rgba(65, 111, 133, 0.22);
}

.dgx-beta-request-status {
    margin: 11px 0 0;

    color:
        rgba(191, 210, 218, 0.65);

    text-align: center;

    font-size: 10px;
    line-height: 1.5;
}

.dgx-beta-request-status[data-state="error"] {
    color: #d5a7a7;
}

.dgx-beta-request-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 15px;

    color:
        rgba(111, 143, 157, 0.44);

    font-size: 8px;
    font-weight: 680;

    letter-spacing: 0.11em;
}

.dgx-beta-request-trust i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(142, 185, 202, 0.47);
}

@keyframes dgxBetaRequestReveal {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {

    .dgx-beta-entry {
        flex-direction: column;
        gap: 4px;
    }

    .dgx-beta-request {
        padding: 20px;
    }

    .dgx-beta-request-trust {
        gap: 5px;

        font-size: 7px;

        letter-spacing: 0.08em;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dgx-beta-request {
        animation: none;
    }
}

/* End DGxOne Private Beta request */

/* End DGxOne Frost Blue identity */

/* End Premium Private Access */
/* ============================================================
   DGxOne Living Intelligence Core — 26.6D-3C.1
   ============================================================ */

.dgx-signup-page .dgx-intelligence-stage {
    position: relative;

    width: 220px;
    height: 166px;

    margin:
        -4px auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;

    isolation: isolate;

    perspective: 900px;
}

.dgx-signup-page .dgx-intelligence-aura {
    position: absolute;

    width: 164px;
    height: 118px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(169, 206, 221, 0.18),
            rgba(112, 159, 181, 0.075) 43%,
            rgba(64, 106, 126, 0) 73%
        );

    filter: blur(18px);

    animation:
        dgxIntelligenceAura
        5.6s
        ease-in-out
        infinite;

    pointer-events: none;
}

.dgx-signup-page .dgx-intelligence-network {
    position: relative;

    z-index: 3;

    width: 220px;
    height: 170px;

    overflow: visible;

    transform-origin:
        50% 50%;

    animation:
        dgxIntelligenceDrift
        9s
        ease-in-out
        infinite;
}

/* ----------------------------
   bonds
   ---------------------------- */

.dgx-signup-page .dgx-network-bonds line {
    stroke:
        rgba(145, 190, 208, 0.36);

    stroke-width: 1;

    vector-effect:
        non-scaling-stroke;

    filter:
        drop-shadow(
            0 0 2px
            rgba(126, 178, 199, 0.24)
        );

    animation:
        dgxBondBreath
        4.8s
        ease-in-out
        infinite;
}

.dgx-signup-page
.dgx-network-bonds line:nth-child(2n) {
    animation-delay:
        -1.3s;
}

.dgx-signup-page
.dgx-network-bonds line:nth-child(3n) {
    animation-delay:
        -2.2s;
}

/* ----------------------------
   central intelligence core
   ---------------------------- */

.dgx-signup-page .dgx-network-core {
    fill:
        url(#dgxCoreGradient);

    stroke:
        rgba(229, 245, 250, 0.78);

    stroke-width:
        1.2;

    filter:
        url(#dgxNodeGlow);

    transform-box:
        fill-box;

    transform-origin:
        center;

    animation:
        dgxCorePulse
        3.8s
        ease-in-out
        infinite;
}

/* ----------------------------
   molecular nodes
   ---------------------------- */

.dgx-signup-page .dgx-node {
    fill: #88b7cb;

    stroke:
        rgba(220, 239, 246, 0.72);

    stroke-width:
        .8;

    filter:
        drop-shadow(
            0 0 4px
            rgba(136, 183, 203, 0.64)
        );

    transform-box:
        fill-box;

    transform-origin:
        center;

    animation:
        dgxNodeLife
        4.6s
        ease-in-out
        infinite;
}

.dgx-signup-page .dgx-node-a {
    animation-delay: -.6s;
}

.dgx-signup-page .dgx-node-b {
    animation-delay: -1.3s;
}

.dgx-signup-page .dgx-node-c {
    animation-delay: -2s;
}

.dgx-signup-page .dgx-node-d {
    animation-delay: -2.8s;
}

.dgx-signup-page .dgx-node-e {
    animation-delay: -3.4s;
}

.dgx-signup-page .dgx-node-f {
    animation-delay: -4s;
}

.dgx-signup-page .dgx-node-outer {
    fill:
        #709fb5;

    opacity:
        .72;

    animation:
        dgxOuterNodeDrift
        6.8s
        ease-in-out
        infinite;
}

/* ----------------------------
   data flow particles
   ---------------------------- */

.dgx-signup-page .dgx-data-particle {
    fill:
        #e2f2f7;

    filter:
        drop-shadow(
            0 0 3px
            rgba(203, 234, 244, .95)
        )
        drop-shadow(
            0 0 7px
            rgba(136, 183, 203, .65)
        );

    opacity:
        .88;
}

.dgx-signup-page .dgx-data-particle-two {
    opacity:
        .63;
}

.dgx-signup-page .dgx-data-particle-three {
    opacity:
        .5;
}

/* ----------------------------
   orbital intelligence layers
   ---------------------------- */

.dgx-signup-page .dgx-network-orbit {
    fill: none;

    stroke:
        rgba(126, 175, 196, 0.12);

    stroke-width:
        .8;

    stroke-dasharray:
        14 20;

    transform-box:
        fill-box;

    transform-origin:
        center;
}

.dgx-signup-page .dgx-network-orbit-one {
    animation:
        dgxNetworkOrbit
        19s
        linear
        infinite;
}

.dgx-signup-page .dgx-network-orbit-two {
    opacity:
        .56;

    animation:
        dgxNetworkOrbitReverse
        24s
        linear
        infinite;
}

/* ----------------------------
   ground / depth
   ---------------------------- */

.dgx-signup-page .dgx-intelligence-shadow {
    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 108px;
    height: 14px;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        rgba(72, 118, 139, .13);

    filter:
        blur(10px);

    animation:
        dgxIntelligenceShadow
        5.6s
        ease-in-out
        infinite;
}

/* ============================================================
   LIFE / SPREAD ANIMATIONS
   ============================================================ */

@keyframes dgxIntelligenceDrift {

    0%,
    100% {
        transform:
            rotateX(3deg)
            rotateY(-5deg)
            translateY(1px)
            scale(.98);
    }

    50% {
        transform:
            rotateX(-2deg)
            rotateY(5deg)
            translateY(-5px)
            scale(1.025);
    }
}

@keyframes dgxIntelligenceAura {

    0%,
    100% {
        opacity:
            .48;

        transform:
            scale(.91);
    }

    50% {
        opacity:
            .92;

        transform:
            scale(1.10);
    }
}

@keyframes dgxBondBreath {

    0%,
    100% {
        stroke-opacity:
            .38;
    }

    50% {
        stroke-opacity:
            .78;
    }
}

@keyframes dgxCorePulse {

    0%,
    100% {
        transform:
            scale(.92);

        opacity:
            .84;
    }

    50% {
        transform:
            scale(1.14);

        opacity:
            1;
    }
}

@keyframes dgxNodeLife {

    0%,
    100% {
        transform:
            scale(.88);

        opacity:
            .62;
    }

    50% {
        transform:
            scale(1.20);

        opacity:
            1;
    }
}

@keyframes dgxOuterNodeDrift {

    0%,
    100% {
        transform:
            scale(.8);

        opacity:
            .38;
    }

    50% {
        transform:
            scale(1.18);

        opacity:
            .86;
    }
}

@keyframes dgxNetworkOrbit {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }
}

@keyframes dgxNetworkOrbitReverse {

    from {
        transform:
            rotate(360deg);
    }

    to {
        transform:
            rotate(0deg);
    }
}

@keyframes dgxIntelligenceShadow {

    0%,
    100% {
        opacity:
            .54;

        transform:
            translateX(-50%)
            scaleX(1);
    }

    50% {
        opacity:
            .25;

        transform:
            translateX(-50%)
            scaleX(.76);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {

    .dgx-signup-page .dgx-intelligence-stage {
        width:
            188px;

        height:
            142px;

        margin:
            -8px auto 10px;
    }

    .dgx-signup-page .dgx-intelligence-network {
        width:
            190px;

        height:
            146px;
    }

}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .dgx-signup-page .dgx-intelligence-network,
    .dgx-signup-page .dgx-intelligence-aura,
    .dgx-signup-page .dgx-network-bonds line,
    .dgx-signup-page .dgx-network-core,
    .dgx-signup-page .dgx-node,
    .dgx-signup-page .dgx-network-orbit,
    .dgx-signup-page .dgx-intelligence-shadow {
        animation:
            none !important;
    }

}

/* End DGxOne Living Intelligence Core */
/* ============================================================
   DGxOne Signal Intelligence Spectrum — 26.6D-3D
   ============================================================ */

.dgx-signup-page .dgx-spectrum-stage {
    position: relative;
    width: min(100%, 640px);
    height: 210px;
    margin: 0 auto 24px;
    overflow: hidden;
    isolation: isolate;
}

.dgx-signup-page .dgx-spectrum-halo {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 72%;
    height: 72%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgba(138, 184, 203, 0.16) 0%,
            rgba(95, 141, 164, 0.07) 38%,
            transparent 72%
        );
    filter: blur(20px);
    pointer-events: none;
}

.dgx-signup-page .dgx-spectrum-header {
    position: absolute;
    top: 2px;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(169, 206, 221, 0.72);
}

.dgx-signup-page .dgx-spectrum-header i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a9cedd;
    box-shadow:
        0 0 7px rgba(169, 206, 221, 0.8);
    animation:
        dgxSpectrumStatus 2.4s ease-in-out infinite;
}

.dgx-signup-page .dgx-spectrum-display {
    position: absolute;
    inset: 23px 0 25px;
    overflow: hidden;
    border-top:
        1px solid rgba(138, 184, 203, 0.08);
    border-bottom:
        1px solid rgba(138, 184, 203, 0.12);
    background:
        linear-gradient(
            180deg,
            rgba(8, 26, 36, 0.14),
            rgba(3, 14, 21, 0.03)
        );
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 7%,
            #000 93%,
            transparent
        );
}

.dgx-signup-page .dgx-spectrum-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(138, 184, 203, 0.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(138, 184, 203, 0.09) 1px,
            transparent 1px
        );
    background-size:
        100% 28px,
        40px 100%;
}

.dgx-signup-page .dgx-spectrum-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 27px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(169, 206, 221, 0.42),
            transparent
        );
}

.dgx-signup-page .dgx-spectrum-svg {
    position: absolute;
    inset: 5px 0 19px;
    z-index: 3;
    width: 100%;
    height: calc(100% - 24px);
    overflow: visible;
}

.dgx-signup-page .dgx-spectrum-trace {
    fill: none;
    stroke: url(#dgxSpectrumStroke);
    stroke-width: 1.35;
    vector-effect: non-scaling-stroke;
    filter: url(#dgxSpectrumGlow);
    animation:
        dgxSpectrumBreath 4.6s ease-in-out infinite;
}

.dgx-signup-page .dgx-spectrum-trace-glow {
    opacity: 0.24;
    stroke-width: 5;
    filter: blur(3px);
}

.dgx-signup-page .dgx-spectrum-carrier-axis {
    stroke: rgba(217, 237, 244, 0.32);
    stroke-width: 0.7;
    stroke-dasharray: 2 4;
}

.dgx-signup-page .dgx-spectrum-lock {
    fill: #edf8fb;
    filter: url(#dgxSpectrumGlow);
    animation:
        dgxCarrierPulse 2.8s ease-in-out infinite;
}

.dgx-signup-page .dgx-spectrum-lock-ring {
    fill: none;
    stroke: rgba(169, 206, 221, 0.45);
    stroke-width: 0.7;
    transform-origin: 300px 17px;
}

.dgx-signup-page .dgx-spectrum-lock-ring-a {
    animation:
        dgxCarrierRing 2.8s ease-out infinite;
}

.dgx-signup-page .dgx-spectrum-lock-ring-b {
    animation:
        dgxCarrierRing 2.8s 0.65s ease-out infinite;
}

.dgx-signup-page .dgx-spectrum-sweep {
    position: absolute;
    top: 0;
    bottom: 25px;
    z-index: 4;
    width: 16%;
    left: -18%;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(169, 206, 221, 0.02) 36%,
            rgba(217, 237, 244, 0.13) 76%,
            rgba(237, 248, 251, 0.48) 98%,
            transparent 100%
        );
    filter: blur(0.2px);
    transform: skewX(-7deg);
    animation:
        dgxSpectrumSweep 7.6s cubic-bezier(.45, 0, .55, 1)
        infinite;
}

.dgx-signup-page .dgx-spectrum-noise {
    position: absolute;
    z-index: 2;
    inset: auto 0 26px;
    height: 38px;
}

.dgx-signup-page .dgx-spectrum-noise span {
    position: absolute;
    bottom: 0;
    left: var(--x);
    width: 1px;
    height: var(--h);
    min-height: 5px;
    background:
        linear-gradient(
            180deg,
            rgba(169, 206, 221, 0.7),
            rgba(95, 141, 164, 0.12)
        );
    box-shadow:
        0 0 3px rgba(138, 184, 203, 0.24);
    animation:
        dgxNoiseFloor 1.9s ease-in-out infinite alternate;
}

.dgx-signup-page .dgx-spectrum-noise span:nth-child(3n) {
    animation-delay: -0.7s;
}

.dgx-signup-page .dgx-spectrum-noise span:nth-child(4n) {
    animation-delay: -1.2s;
}

.dgx-signup-page .dgx-spectrum-carrier-label {
    position: absolute;
    z-index: 6;
    top: 6px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: none;
}

.dgx-signup-page .dgx-spectrum-carrier-label strong {
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.17em;
    color: #d9edf4;
}

.dgx-signup-page .dgx-spectrum-carrier-label span {
    margin-top: 4px;
    font-size: 6px;
    letter-spacing: 0.13em;
    color: rgba(169, 206, 221, 0.54);
}

.dgx-signup-page .dgx-spectrum-status {
    position: absolute;
    z-index: 5;
    top: 55px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    opacity: 0.68;
}

.dgx-signup-page .dgx-spectrum-status-left {
    left: 16%;
    align-items: flex-start;
}

.dgx-signup-page .dgx-spectrum-status-right {
    right: 13%;
    align-items: flex-end;
}

.dgx-signup-page .dgx-spectrum-status strong {
    font-size: 6px;
    letter-spacing: 0.15em;
    color: #a9cedd;
}

.dgx-signup-page .dgx-spectrum-status span {
    font-size: 6px;
    letter-spacing: 0.06em;
    color: rgba(169, 206, 221, 0.5);
}

.dgx-signup-page .dgx-spectrum-axis {
    position: absolute;
    z-index: 5;
    left: 7%;
    right: 7%;
    bottom: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 6px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
    color: rgba(138, 184, 203, 0.46);
}

.dgx-signup-page .dgx-spectrum-caption {
    position: absolute;
    bottom: 1px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 6px;
    font-weight: 650;
    letter-spacing: 0.17em;
    color: rgba(138, 184, 203, 0.52);
}

.dgx-signup-page .dgx-spectrum-caption i {
    width: 12px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(138, 184, 203, 0.36),
            transparent
        );
}

.dgx-signup-page .dgx-spectrum-caption strong {
    color: rgba(217, 237, 244, 0.84);
}

.dgx-signup-page .dgx-spectrum-live {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #a9cedd;
    box-shadow:
        0 0 7px rgba(169, 206, 221, 0.72);
    animation:
        dgxSpectrumStatus 2.2s ease-in-out infinite;
}

@keyframes dgxSpectrumSweep {
    0% {
        left: -20%;
        opacity: 0;
    }

    8% {
        opacity: 0.55;
    }

    49% {
        opacity: 0.9;
    }

    55% {
        opacity: 1;
    }

    92% {
        opacity: 0.5;
    }

    100% {
        left: 105%;
        opacity: 0;
    }
}

@keyframes dgxSpectrumBreath {
    0%,
    100% {
        opacity: 0.74;
    }

    50% {
        opacity: 1;
    }
}

@keyframes dgxCarrierPulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(0.92);
        transform-origin: 300px 17px;
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
        transform-origin: 300px 17px;
    }
}

@keyframes dgxCarrierRing {
    0% {
        opacity: 0.55;
        transform: scale(0.68);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes dgxNoiseFloor {
    from {
        transform: scaleY(0.65);
        opacity: 0.28;
    }

    to {
        transform: scaleY(1.35);
        opacity: 0.72;
    }
}

@keyframes dgxSpectrumStatus {
    0%,
    100% {
        opacity: 0.42;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 720px) {
    .dgx-signup-page .dgx-spectrum-stage {
        height: 172px;
        margin-bottom: 16px;
    }

    .dgx-signup-page .dgx-spectrum-display {
        inset: 21px -12px 23px;
    }

    .dgx-signup-page .dgx-spectrum-status {
        display: none;
    }

    .dgx-signup-page .dgx-spectrum-header {
        font-size: 6px;
        letter-spacing: 0.14em;
    }

    .dgx-signup-page .dgx-spectrum-caption {
        gap: 5px;
        font-size: 5px;
        letter-spacing: 0.11em;
    }

    .dgx-signup-page .dgx-spectrum-caption i {
        width: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dgx-signup-page .dgx-spectrum-sweep,
    .dgx-signup-page .dgx-spectrum-trace,
    .dgx-signup-page .dgx-spectrum-lock,
    .dgx-signup-page .dgx-spectrum-lock-ring,
    .dgx-signup-page .dgx-spectrum-noise span,
    .dgx-signup-page .dgx-spectrum-live,
    .dgx-signup-page .dgx-spectrum-header i {
        animation: none !important;
    }
}



/* ============================================================
   DGxOne Spectrum Readability — 26.6D-3D.3
   ============================================================ */

/*
   Stronger visual hierarchy.
   Keep Frost Blue — avoid electric gaming cyan.
*/

.dgx-signup-page .dgx-spectrum-header {
    top: 0;

    font-size: 10px;
    font-weight: 780;

    letter-spacing: 0.21em;

    color: #b9d7e2;

    text-shadow:
        0 0 8px rgba(144, 190, 208, 0.28);
}

.dgx-signup-page .dgx-spectrum-header i {
    width: 5px;
    height: 5px;

    background: #b5d6e2;

    box-shadow:
        0 0 6px rgba(181, 214, 226, 0.95),
        0 0 14px rgba(127, 175, 199, 0.55);
}


/* DGx central intelligence carrier */

.dgx-signup-page .dgx-spectrum-carrier-label {
    top: 7px;
}

.dgx-signup-page .dgx-spectrum-carrier-label strong {
    font-size: 11px;
    font-weight: 820;

    letter-spacing: 0.18em;

    color: #f0f8fa;

    text-shadow:
        0 0 8px rgba(199, 229, 239, 0.45),
        0 0 18px rgba(127, 175, 199, 0.28);
}

.dgx-signup-page .dgx-spectrum-carrier-label span {
    margin-top: 5px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.15em;

    color: #91bdcf;

    text-shadow:
        0 0 8px rgba(127, 175, 199, 0.26);
}


/* Signal detection annotations */

.dgx-signup-page .dgx-spectrum-status {
    gap: 5px;

    opacity: 1;
}

.dgx-signup-page .dgx-spectrum-status strong {
    font-size: 9px;
    font-weight: 790;

    letter-spacing: 0.14em;

    color: #acd0de;

    text-shadow:
        0 0 8px rgba(138, 184, 203, 0.35);
}

.dgx-signup-page .dgx-spectrum-status span {
    font-size: 8px;
    font-weight: 560;

    letter-spacing: 0.045em;

    color: rgba(217, 234, 240, 0.72);
}


/* Make resolved signal subtly stronger */

.dgx-signup-page .dgx-spectrum-status-right strong {
    color: #c7e3ec;

    text-shadow:
        0 0 8px rgba(169, 206, 221, 0.42),
        0 0 15px rgba(112, 159, 181, 0.20);
}


/* Frequency axis */

.dgx-signup-page .dgx-spectrum-axis {
    bottom: 4px;

    font-size: 8px;
    font-weight: 620;

    letter-spacing: 0.06em;

    color: rgba(189, 215, 225, 0.66);
}

.dgx-signup-page .dgx-spectrum-axis span:nth-child(3) {
    color: #dcecf2;

    font-weight: 800;

    text-shadow:
        0 0 7px rgba(169, 206, 221, 0.34);
}


/* Bottom analysis lifecycle */

.dgx-signup-page .dgx-spectrum-caption {
    bottom: 0;

    gap: 10px;

    font-size: 7px;
    font-weight: 720;

    letter-spacing: 0.16em;

    color: rgba(170, 200, 212, 0.68);
}

.dgx-signup-page .dgx-spectrum-caption strong {
    color: #d9edf4;

    font-weight: 850;

    text-shadow:
        0 0 8px rgba(169, 206, 221, 0.40);
}

.dgx-signup-page .dgx-spectrum-live {
    width: 5px;
    height: 5px;

    background: #b8d7e5;

    box-shadow:
        0 0 7px rgba(184, 215, 229, 0.95),
        0 0 14px rgba(127, 175, 199, 0.50);
}


/* Sharper trace */

.dgx-signup-page .dgx-spectrum-trace {
    stroke-width: 1.7;

    filter:
        url(#dgxSpectrumGlow)
        drop-shadow(
            0 0 3px
            rgba(169, 206, 221, 0.42)
        );
}

.dgx-signup-page .dgx-spectrum-trace-glow {
    opacity: 0.32;

    stroke-width: 6;
}


/* Stronger DGx core carrier */

.dgx-signup-page .dgx-spectrum-carrier-axis {
    stroke: rgba(224, 240, 246, 0.48);

    stroke-width: 0.85;

    stroke-dasharray: 3 4;
}

.dgx-signup-page .dgx-spectrum-lock {
    fill: #f5fbfc;

    filter:
        url(#dgxSpectrumGlow)
        drop-shadow(
            0 0 5px
            rgba(221, 240, 247, 0.95)
        );
}

.dgx-signup-page .dgx-spectrum-lock-ring {
    stroke: rgba(183, 215, 227, 0.62);

    stroke-width: 0.9;
}


/* Slightly clearer engineering grid */

.dgx-signup-page .dgx-spectrum-grid {
    opacity: 0.48;

    background-image:
        linear-gradient(
            rgba(127, 175, 199, 0.13) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(127, 175, 199, 0.11) 1px,
            transparent 1px
        );
}


/* Sweep remains restrained but easier to see */

.dgx-signup-page .dgx-spectrum-sweep {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(169, 206, 221, 0.025) 32%,
            rgba(185, 216, 228, 0.13) 68%,
            rgba(230, 244, 249, 0.54) 96%,
            transparent 100%
        );
}


/* ------------------------------------------------------------
   Desktop: give spectrum more visual authority
   ------------------------------------------------------------ */

@media (min-width: 721px) {

    .dgx-signup-page .dgx-spectrum-stage {
        height: 230px;

        margin-bottom: 26px;
    }

    .dgx-signup-page .dgx-spectrum-display {
        inset:
            27px 0 28px;
    }

    .dgx-signup-page .dgx-spectrum-status-left {
        left: 14%;
    }

    .dgx-signup-page .dgx-spectrum-status-right {
        right: 11%;
    }

}


/* ------------------------------------------------------------
   Mobile readability
   ------------------------------------------------------------ */

@media (max-width: 720px) {

    .dgx-signup-page .dgx-spectrum-header {
        font-size: 7px;

        letter-spacing: 0.13em;
    }

    .dgx-signup-page .dgx-spectrum-carrier-label strong {
        font-size: 9px;
    }

    .dgx-signup-page .dgx-spectrum-carrier-label span {
        font-size: 6px;
    }

    .dgx-signup-page .dgx-spectrum-axis {
        font-size: 6px;
    }

    .dgx-signup-page .dgx-spectrum-caption {
        font-size: 5.5px;

        gap: 6px;

        letter-spacing: 0.10em;
    }

}

/* End DGxOne Spectrum Readability */


/* End DGxOne Signal Intelligence Spectrum */
/* ============================================================
   DGxOne Minimal Signal Mark — 26.6D-3E
   ============================================================ */

.dgx-signup-page .dgx-signal-mark {
    position: relative;

    width: min(100%, 390px);
    height: 126px;

    margin:
        4px auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;

    isolation: isolate;
}

.dgx-signup-page .dgx-signal-mark-aura {
    position: absolute;

    left: 50%;
    top: 51%;

    width: 220px;
    height: 82px;

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

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(145, 189, 207, 0.15),
            rgba(112, 159, 181, 0.055) 46%,
            transparent 74%
        );

    filter: blur(18px);

    animation:
        dgxSignalMarkAura
        6.4s
        ease-in-out
        infinite;

    pointer-events: none;
}

.dgx-signup-page .dgx-signal-mark-svg {
    position: relative;

    z-index: 3;

    width: 100%;
    height: 120px;

    overflow: visible;
}

.dgx-signup-page .dgx-signal-mark-trace,
.dgx-signup-page .dgx-signal-mark-glow {
    fill: none;

    stroke:
        url(#dgxSignalMarkStroke);

    vector-effect:
        non-scaling-stroke;
}

.dgx-signup-page .dgx-signal-mark-trace {
    stroke-width: 1.7;

    filter:
        url(#dgxSignalMarkGlow);

    animation:
        dgxSignalMarkBreath
        5.8s
        ease-in-out
        infinite;
}

.dgx-signup-page .dgx-signal-mark-glow {
    stroke-width: 6;

    opacity: 0.16;

    filter: blur(4px);
}

.dgx-signup-page .dgx-signal-mark-axis {
    stroke:
        rgba(213, 235, 243, 0.32);

    stroke-width: 0.7;

    stroke-dasharray:
        2 5;

    opacity: 0.74;
}

.dgx-signup-page .dgx-signal-mark-core {
    fill: #eef8fa;

    filter:
        url(#dgxSignalMarkGlow);

    transform-origin:
        180px 14px;

    animation:
        dgxSignalMarkCore
        3.6s
        ease-in-out
        infinite;
}

.dgx-signup-page .dgx-signal-mark-core-ring {
    fill: none;

    stroke:
        rgba(174, 211, 224, 0.52);

    stroke-width:
        0.8;

    transform-origin:
        180px 14px;

    animation:
        dgxSignalMarkRing
        3.6s
        ease-out
        infinite;
}

.dgx-signup-page .dgx-signal-mark-sweep {
    position: absolute;

    z-index: 4;

    top: 12px;
    bottom: 18px;

    left: -17%;

    width: 14%;

    opacity: 0;

    pointer-events: none;

    transform:
        skewX(-12deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(189, 220, 231, 0.035),
            rgba(227, 242, 247, 0.30),
            transparent
        );

    filter: blur(1px);

    animation:
        dgxSignalMarkSweep
        8.2s
        cubic-bezier(.43, 0, .57, 1)
        infinite;
}

.dgx-signup-page .dgx-signal-mark-label {
    position: absolute;

    z-index: 5;

    left: 50%;
    top: 4px;

    transform:
        translateX(-50%);

    color:
        rgba(201, 226, 235, 0.74);

    font-size: 7px;
    font-weight: 780;

    letter-spacing: 0.20em;

    text-shadow:
        0 0 8px
        rgba(145, 189, 207, 0.30);
}

@keyframes dgxSignalMarkBreath {

    0%,
    100% {
        opacity: .72;
    }

    50% {
        opacity: 1;
    }
}

@keyframes dgxSignalMarkAura {

    0%,
    100% {
        opacity: .48;

        transform:
            translate(-50%, -50%)
            scale(.94);
    }

    50% {
        opacity: .86;

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

@keyframes dgxSignalMarkCore {

    0%,
    100% {
        opacity: .72;
        transform: scale(.88);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

@keyframes dgxSignalMarkRing {

    0% {
        opacity: .48;
        transform: scale(.72);
    }

    72%,
    100% {
        opacity: 0;
        transform: scale(1.48);
    }
}

@keyframes dgxSignalMarkSweep {

    0%,
    62% {
        left: -17%;
        opacity: 0;
    }

    66% {
        opacity: .24;
    }

    73% {
        opacity: .72;
    }

    85% {
        left: 102%;
        opacity: .14;
    }

    100% {
        left: 102%;
        opacity: 0;
    }
}

@media (max-width: 640px) {

    .dgx-signup-page .dgx-signal-mark {
        width: 280px;
        height: 110px;

        margin:
            0 auto 13px;
    }

    .dgx-signup-page .dgx-signal-mark-svg {
        height: 104px;
    }

    .dgx-signup-page .dgx-signal-mark-label {
        font-size: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dgx-signup-page .dgx-signal-mark-aura,
    .dgx-signup-page .dgx-signal-mark-trace,
    .dgx-signup-page .dgx-signal-mark-core,
    .dgx-signup-page .dgx-signal-mark-core-ring,
    .dgx-signup-page .dgx-signal-mark-sweep {
        animation: none !important;
    }
}

/* End DGxOne Minimal Signal Mark */
