/* CYBERPUNK 2045 // AUTH + REGISTRATION */

/* =========================================================
   AUTH. NIGHT CITY AUTH TERMINAL — V1
   ========================================================= */

[hidden] {
    display: none !important;
}

/* =========================================================
   AUTH // LOGIN STATE
   ========================================================= */

.hub-auth-login,
.hub-auth-profile {
    width: 100%;
    min-width: 0;
}

.hub-auth-login {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hub-login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 7px;
    margin-top: 15px;
}

.hub-login-form label {
    color: #5f8f98;
    font-family: Consolas, "Courier New", monospace;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hub-login-form input {
    width: 100%;
    height: 37px;
    padding: 0 11px;

    border: 1px solid rgba(0, 240, 255, .18);
    border-left: 2px solid rgba(0, 240, 255, .55);

    outline: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 240, 255, .065),
            rgba(0, 240, 255, .012)
        );

    color: #eaffff;

    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    letter-spacing: .7px;

    user-select: text;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.hub-login-form input::placeholder {
    color: rgba(110, 156, 165, .42);
}

.hub-login-form input:hover {
    border-color: rgba(0, 240, 255, .35);
}

.hub-login-form input:focus {
    border-color: rgba(0, 240, 255, .72);
    border-left-color: var(--yellow);

    background:
        linear-gradient(
            90deg,
            rgba(0, 240, 255, .11),
            rgba(0, 240, 255, .018)
        );

    box-shadow:
        inset 0 0 16px rgba(0, 240, 255, .04),
        0 0 10px rgba(0, 240, 255, .08);
}

/* =========================================================
   AUTH // LOGIN MESSAGE
   ========================================================= */

.hub-login-message {
    min-height: 27px;
    margin-top: 11px;
    padding: 8px 9px;

    border-top: 1px solid rgba(0, 240, 255, .10);
    border-bottom: 1px solid rgba(0, 240, 255, .06);

    background: rgba(0, 240, 255, .018);

    color: #547c84;

    font-family: Consolas, "Courier New", monospace;
    font-size: 6px;
    line-height: 1.5;
    letter-spacing: 1.2px;

    text-align: center;
}

.hub-login-message.is-loading {
    color: var(--cyan);

    text-shadow:
        0 0 7px rgba(0, 240, 255, .32);
}

.hub-login-message.is-success {
    color: #61ff9b;

    border-color: rgba(97, 255, 155, .18);

    text-shadow:
        0 0 7px rgba(97, 255, 155, .24);
}

.hub-login-message.is-error {
    color: var(--red);

    border-color: rgba(255, 49, 85, .22);

    text-shadow:
        0 0 7px rgba(255, 49, 85, .24);
}

/* =========================================================
   AUTH // TERMINAL HEADER STATES
   ========================================================= */

#hub-auth-state {
    color: var(--yellow);

    text-shadow:
        0 0 7px rgba(247, 255, 0, .3);
}

#hub-auth-state.is-online {
    color: #61ff9b;

    text-shadow:
        0 0 8px rgba(97, 255, 155, .35);
}

#hub-auth-state.is-offline {
    color: var(--red);

    text-shadow:
        0 0 8px rgba(255, 49, 85, .35);
}

/* =========================================================
   AUTH // PROFILE STATE
   ========================================================= */

.hub-auth-profile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hub-profile-display-name {
    display: block;

    margin-top: 5px;

    color: var(--cyan);

    font-family: Consolas, "Courier New", monospace;
    font-size: 7px;
    letter-spacing: 1.5px;

    text-align: center;

    opacity: .75;
}

.hub-character-active-label {
    margin-top: 13px;

    color: #52767d;

    font-family: Consolas, "Courier New", monospace;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 1.6px;

    text-align: center;
}

.hub-character-active-name {
    margin-top: 6px;

    color: #eaffff;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.2px;

    text-align: center;

    text-shadow:
        0 0 10px rgba(0, 240, 255, .12);
}

.hub-character-active-handle {
    display: block;

    margin-top: 4px;
    margin-bottom: 11px;

    color: var(--yellow);

    font-family: Consolas, "Courier New", monospace;
    font-size: 7px;
    letter-spacing: 1.2px;

    text-align: center;
}

/* =========================================================
   AUTH // LOGOUT
   ========================================================= */

.hub-logout-button {
    margin-top: 7px !important;

    border-color:
        rgba(255, 49, 85, .18) !important;

    color:
        #a66b77 !important;
}

.hub-logout-button:hover {
    border-color:
        rgba(255, 49, 85, .58) !important;

    background:
        linear-gradient(
            90deg,
            rgba(255, 49, 85, .12),
            rgba(255, 49, 85, .02)
        ) !important;

    color:
        #ff8298 !important;

    box-shadow:
        0 0 12px rgba(255, 49, 85, .08);
}

/* =========================================================
   AUTH // BUSY STATE
   ========================================================= */

#hub-login-submit:disabled,
#hub-logout-button:disabled {
    cursor: wait;
    opacity: .45;
}

/* =========================================================
   AUTH // TERMINAL SCROLL SAFETY
   ========================================================= */

#hub-character-panel {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color:
        rgba(0, 240, 255, .45)
        rgba(0, 240, 255, .025);
}

#hub-character-panel::-webkit-scrollbar {
    width: 4px;
}

#hub-character-panel::-webkit-scrollbar-track {
    background: rgba(0, 240, 255, .02);
}

#hub-character-panel::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            180deg,
            rgba(0, 240, 255, .65),
            rgba(0, 169, 199, .22)
        );

    box-shadow:
        0 0 7px rgba(0, 240, 255, .22);
}

/* =========================================================
   AUTH // ADMIN IDENTIFICATION
   ========================================================= */

body.user-admin #hub-account-role {
    color: var(--yellow);

    text-shadow:
        0 0 8px rgba(247, 255, 0, .35);
}

body.user-admin .hub-user-ring {
    border-color: rgba(247, 255, 0, .52);

    box-shadow:
        inset 0 0 18px rgba(247, 255, 0, .06),
        0 0 15px rgba(247, 255, 0, .10);
}

body.user-admin .hub-user-ring > span {
    color: var(--yellow);

    text-shadow:
        0 0 10px rgba(247, 255, 0, .48);
}

/* =========================================================
   53. NIGHT CITY ACCESS GATE — V2 // R3GISTER
   ========================================================= */

.land-locked {
    display: none !important;
}

.access-gate[hidden] {
    display: none !important;
}

.access-gate {
    position: fixed;
    inset: 0;
    z-index: 9998;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: #020508;
    color: var(--text);
}


/* =========================================================
   53A. BACKGROUND
   ========================================================= */

.access-gate-bg,
.access-gate-grid,
.access-gate-scan,
.access-gate-vignette {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.access-gate-bg {
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(0, 240, 255, .12),
            transparent 24%
        ),
        radial-gradient(
            circle at 50% 52%,
            rgba(255, 43, 214, .055),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #061018 0%,
            #020609 58%,
            #010203 100%
        );
}

.access-gate-grid {
    opacity: .42;

    background-image:
        linear-gradient(
            rgba(0, 240, 255, .055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 240, 255, .055) 1px,
            transparent 1px
        );

    background-size: 46px 46px;

    transform:
        perspective(520px)
        rotateX(63deg)
        scale(1.7);

    transform-origin: 50% 78%;
}

.access-gate-scan {
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0,
            transparent 3px,
            rgba(0, 240, 255, .018) 4px
        );

    animation:
        accessGateScan
        7s
        linear
        infinite;
}

.access-gate-vignette {
    box-shadow:
        inset 0 0 180px 70px rgba(0, 0, 0, .88);
}


/* =========================================================
   53B. ACCESS TERMINAL
   ========================================================= */

.access-gate-shell {
    position: relative;
    z-index: 2;

    width:
        min(
            430px,
            calc(100vw - 36px)
        );

    max-height:
        calc(100vh - 34px);

    padding:
        28px 30px 24px;

    overflow-y: auto;
    overflow-x: hidden;

    border:
        1px solid rgba(0, 240, 255, .18);

    border-left:
        2px solid var(--cyan);

    background:
        linear-gradient(
            180deg,
            rgba(5, 18, 25, .94),
            rgba(2, 8, 12, .97)
        );

    box-shadow:
        0 0 60px rgba(0, 240, 255, .06),
        inset 0 0 40px rgba(0, 240, 255, .025);

    transition:
        width .35s ease,
        max-width .35s ease;
}

.access-gate-shell.is-registering {
    width:
        min(
            920px,
            calc(100vw - 40px)
        );
}

.access-gate-shell::before,
.access-gate-shell::after {
    content: "";

    position: absolute;

    width: 72px;
    height: 2px;

    background: var(--cyan);

    box-shadow:
        0 0 12px var(--cyan);
}

.access-gate-shell::before {
    top: -1px;
    left: 24px;
}

.access-gate-shell::after {
    right: 24px;
    bottom: -1px;

    background: var(--yellow);

    box-shadow:
        0 0 12px rgba(247, 255, 0, .65);
}

.access-gate-kicker {
    color: var(--cyan);

    font:
        8px Consolas,
        monospace;

    letter-spacing: 2.2px;

    text-align: center;

    opacity: .82;
}


/* =========================================================
   53C. CENTRAL CORE
   ========================================================= */

.access-gate-core {
    position: relative;

    width: 118px;
    height: 118px;

    margin:
        21px auto 17px;

    display: grid;
    place-items: center;
}

.access-gate-shell.is-registering .access-gate-core {
    width: 76px;
    height: 76px;

    margin:
        14px auto 10px;
}

.access-gate-orbit {
    position: absolute;
    inset: 0;

    border:
        1px solid rgba(0, 240, 255, .34);

    border-radius: 50%;

    box-shadow:
        0 0 20px rgba(0, 240, 255, .08);
}

.access-gate-orbit-a {
    border-left-color: var(--yellow);

    animation:
        accessGateOrbit
        7s
        linear
        infinite;
}

.access-gate-orbit-b {
    inset: 13px;

    border-style: dashed;

    border-color:
        rgba(0, 240, 255, .22);

    animation:
        accessGateOrbit
        10s
        linear
        infinite
        reverse;
}

.access-gate-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    border:
        1px solid rgba(0, 240, 255, .48);

    background:
        rgba(0, 240, 255, .045);

    color: #eaffff;

    font:
        900 14px Consolas,
        monospace;

    letter-spacing: 1px;

    box-shadow:
        inset 0 0 22px rgba(0, 240, 255, .08),
        0 0 18px rgba(0, 240, 255, .08);

    transform: rotate(45deg);

    text-shadow:
        0 0 9px rgba(0, 240, 255, .35);

    transition: .3s ease;
}

.access-gate-shell.is-registering .access-gate-mark {
    width: 48px;
    height: 48px;

    font-size: 10px;
}

.access-gate-mark b,
.access-gate-mark span {
    transform: rotate(-45deg);
}

.access-gate-mark span {
    color: var(--yellow);

    font-size: 8px;
}


/* =========================================================
   53D. TITLE
   ========================================================= */

.access-gate-title {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;

    margin-bottom: 20px;

    text-align: center;
}

.access-gate-title small {
    color: #628b93;

    font-size: 7px;

    letter-spacing: 2.4px;
}

.access-gate-title strong {
    position: relative;

    color: #f2ffff;

    font-size: 18px;

    letter-spacing: 2px;

    text-shadow:
        0 0 14px rgba(0, 240, 255, .20);
}

.access-gate-title strong::before,
.access-gate-title strong::after {
    content:
        attr(data-glitch);

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0;
}

.access-gate-title span {
    color: var(--red);

    font:
        7px Consolas,
        monospace;

    letter-spacing: 1.8px;
}


/* =========================================================
   53E. PANELS
   ========================================================= */

.access-panel {
    animation:
        accessPanelEnter
        .32s ease;
}

.access-panel-hidden {
    display: none !important;
}


/* =========================================================
   53F. INPUTS
   ========================================================= */

.access-gate-form,
.register-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.register-field {
    margin-bottom: 15px;
}

.access-gate-form label,
.register-field label {
    margin-top: 3px;

    color: #628b93;

    font:
        700 7px Consolas,
        monospace;

    letter-spacing: 1.5px;
}

.access-gate-form input,
.register-field input {
    width: 100%;
    height: 42px;

    padding:
        0 12px;

    border:
        1px solid rgba(0, 240, 255, .22);

    border-left:
        2px solid var(--cyan);

    outline: none;

    background:
        rgba(0, 240, 255, .035);

    color: #eaffff;

    font:
        10px Consolas,
        monospace;

    letter-spacing: .7px;

    user-select: text;

    transition: .2s;
}

.access-gate-form input:focus,
.register-field input:focus {
    border-color:
        rgba(0, 240, 255, .72);

    border-left-color:
        var(--yellow);

    background:
        rgba(0, 240, 255, .07);

    box-shadow:
        0 0 14px rgba(0, 240, 255, .10);
}


/* =========================================================
   53G. LOGIN BUTTON
   ========================================================= */

.access-gate-submit {
    height: 43px;

    margin-top: 8px;

    border:
        1px solid rgba(0, 240, 255, .35);

    background:
        linear-gradient(
            90deg,
            rgba(0, 240, 255, .12),
            rgba(0, 240, 255, .025)
        );

    color: var(--cyan);

    cursor: pointer;

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

    letter-spacing: 1.8px;

    transition: .2s;
}

.access-gate-submit:hover {
    border-color: var(--yellow);

    color: var(--yellow);

    box-shadow:
        0 0 16px rgba(247, 255, 0, .08);
}

.access-gate-submit:disabled {
    cursor: wait;

    opacity: .45;
}
/* =========================================================
   53H. R3GISTER LINK
   ========================================================= */

.access-register-link {
    position: relative;

    width: 100%;

    margin-top: 17px;
    padding: 12px;

    border: 0;
    border-top:
        1px solid rgba(255, 49, 85, .16);

    background: transparent;

    color: #78959b;

    cursor: pointer;

    font:
        700 8px Consolas,
        monospace;

    letter-spacing: 1.7px;

    transition: .2s ease;

    overflow: hidden;
}

.access-register-link b {
    color: var(--red);

    font-weight: 900;

    text-shadow:
        0 0 8px rgba(255, 49, 85, .32);
}

.access-register-link:hover {
    color: #d9ffff;

    border-top-color:
        rgba(0, 240, 255, .45);

    text-shadow:
        0 0 10px rgba(0, 240, 255, .25);
}

.access-register-link:hover b {
    color: var(--yellow);
}

.access-register-link::after {
    content: "";

    position: absolute;

    top: 50%;
    left: -100%;

    width: 45%;
    height: 1px;

    background:
        var(--red);

    box-shadow:
        0 0 8px var(--red);

    animation:
        registerGlitchLine
        4.7s steps(1)
        infinite;
}


/* =========================================================
   53I. REGISTRATION PROGRESS
   ========================================================= */

.register-progress {
    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        4px auto 22px;

    max-width: 560px;
}

.register-progress span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid rgba(0, 240, 255, .20);

    color: #4f7278;

    font:
        700 7px Consolas,
        monospace;

    transition: .25s ease;
}

.register-progress span.is-active {
    border-color: var(--cyan);

    color: var(--cyan);

    background:
        rgba(0, 240, 255, .08);

    box-shadow:
        0 0 14px rgba(0, 240, 255, .10);
}

.register-progress span.is-complete {
    border-color:
        rgba(247, 255, 0, .55);

    color: var(--yellow);
}

.register-progress i {
    width: 70px;
    height: 1px;

    background:
        rgba(0, 240, 255, .14);
}


/* =========================================================
   53J. REGISTRATION STEP
   ========================================================= */

.register-step {
    display: none;

    max-width: 760px;

    margin: 0 auto;
}

.register-step.is-active {
    display: block;

    animation:
        accessPanelEnter
        .28s ease;
}

.register-step-code {
    margin-bottom: 5px;

    color: var(--cyan);

    font:
        7px Consolas,
        monospace;

    letter-spacing: 1.7px;
}

.register-step h2 {
    margin:
        0 0 18px;

    color: #eaffff;

    font-size: 18px;

    letter-spacing: 2.2px;
}


/* =========================================================
   53K. LEGAL TERMINAL
   ========================================================= */

.register-legal-terminal {
    max-height: 210px;

    margin-bottom: 14px;
    padding: 15px;

    overflow-y: auto;

    border:
        1px solid rgba(0, 240, 255, .13);

    border-left:
        2px solid rgba(0, 240, 255, .45);

    background:
        rgba(0, 240, 255, .025);
}

.register-legal-terminal strong {
    display: block;

    margin-bottom: 6px;

    color: var(--cyan);

    font:
        700 7px Consolas,
        monospace;

    letter-spacing: 1.3px;
}

.register-legal-terminal p {
    margin:
        0 0 14px;

    color: #78979e;

    font:
        7px/1.7 Consolas,
        monospace;
}

.register-check {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 9px 0;

    color: #76949b;

    cursor: pointer;

    font:
        7px Consolas,
        monospace;

    letter-spacing: .5px;
}

.register-check input {
    accent-color: var(--cyan);
}


/* =========================================================
   53L. NC-ID STATUS
   ========================================================= */

.ncid-explanation {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-bottom: 18px;
    padding: 13px 15px;

    border:
        1px solid rgba(247, 255, 0, .14);

    background:
        rgba(247, 255, 0, .025);
}

.ncid-explanation span {
    color: var(--yellow);

    font:
        7px Consolas,
        monospace;

    letter-spacing: 1.4px;
}

.ncid-explanation strong {
    color: #cce4e7;

    font-size: 9px;
}

.ncid-explanation small {
    color: #607e84;

    font:
        7px Consolas,
        monospace;
}

.ncid-state {
    min-height: 18px;

    color: #597b82;

    font:
        7px Consolas,
        monospace;

    letter-spacing: 1px;
}

.ncid-state.is-available {
    color: var(--cyan);
}

.ncid-state.is-unavailable {
    color: var(--red);
}


/* =========================================================
   53M. ATTRIBUTE HEADER
   ========================================================= */

.attribute-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}

.attribute-header h2 {
    margin-bottom: 6px;
}

#attribute-calibration-state {
    color: #597b82;

    font:
        7px Consolas,
        monospace;

    letter-spacing: 1.1px;
}

#attribute-calibration-state.is-complete {
    color: var(--yellow);

    text-shadow:
        0 0 8px rgba(247, 255, 0, .30);
}

.attribute-points-core {
    width: 120px;
    height: 92px;

    flex: 0 0 auto;

    display: flex;
    flex-direction: column;

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

    border:
        1px solid rgba(0, 240, 255, .25);

    background:
        radial-gradient(
            circle,
            rgba(0, 240, 255, .09),
            rgba(0, 240, 255, .015) 70%
        );

    box-shadow:
        inset 0 0 22px rgba(0, 240, 255, .05);
}

.attribute-points-core small,
.attribute-points-core span {
    color: #58777e;

    font:
        6px Consolas,
        monospace;

    letter-spacing: 1px;
}

.attribute-points-core strong {
    color: var(--cyan);

    font:
        900 28px Consolas,
        monospace;

    text-shadow:
        0 0 14px rgba(0, 240, 255, .30);
}


/* =========================================================
   53N. ATTRIBUTE MODULES
   ========================================================= */

.attribute-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 10px;
}

.attribute-module {
    position: relative;

    min-height: 115px;

    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr)
        104px;

    grid-template-rows:
        1fr
        5px;

    gap:
        8px 12px;

    align-items: center;

    padding:
        12px;

    border:
        1px solid rgba(0, 240, 255, .12);

    background:
        linear-gradient(
            135deg,
            rgba(0, 240, 255, .045),
            rgba(0, 0, 0, .16)
        );

    transition: .2s ease;
}

.attribute-module:hover {
    border-color:
        rgba(0, 240, 255, .38);

    box-shadow:
        inset 0 0 20px rgba(0, 240, 255, .025);
}

.attribute-code {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(0, 240, 255, .25);

    color: var(--cyan);

    font:
        900 8px Consolas,
        monospace;
}

.attribute-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.attribute-copy strong {
    color: #dffbff;

    font-size: 8px;

    letter-spacing: 1.2px;
}

.attribute-copy small {
    color: #5e7d83;

    font:
        6px/1.45 Consolas,
        monospace;
}

.attribute-control {
    display: grid;

    grid-template-columns:
        28px
        40px
        28px;

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

.attribute-control button {
    width: 28px;
    height: 28px;

    border:
        1px solid rgba(0, 240, 255, .20);

    background:
        rgba(0, 240, 255, .035);

    color: var(--cyan);

    cursor: pointer;

    font:
        900 13px Consolas,
        monospace;

    transition: .15s ease;
}

.attribute-control button:hover:not(:disabled) {
    border-color: var(--yellow);

    color: var(--yellow);
}

.attribute-control button:disabled {
    cursor: not-allowed;

    opacity: .22;
}

.attribute-control b {
    text-align: center;

    color: #f2ffff;

    font:
        900 17px Consolas,
        monospace;
}

.attribute-energy {
    grid-column:
        1 / -1;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--cyan) 0%,
            var(--cyan) var(--stat-fill, 15%),
            rgba(0, 240, 255, .08) var(--stat-fill, 15%),
            rgba(0, 240, 255, .08) 100%
        );

    box-shadow:
        0 0 7px rgba(0, 240, 255, .12);
}


/* =========================================================
   53O. REGISTRATION NAVIGATION
   ========================================================= */

.register-navigation {
    display: flex;
    justify-content: space-between;

    gap: 12px;

    margin-top: 20px;
}

.register-navigation button {
    min-height: 40px;

    padding:
        0 18px;

    border:
        1px solid rgba(0, 240, 255, .22);

    background:
        rgba(0, 240, 255, .035);

    color: #72949b;

    cursor: pointer;

    font:
        800 7px Consolas,
        monospace;

    letter-spacing: 1.2px;

    transition: .2s ease;
}

.register-navigation button:hover:not(:disabled) {
    border-color: var(--cyan);

    color: var(--cyan);
}

.register-create {
    flex: 1;

    border-color:
        rgba(247, 255, 0, .25) !important;

    color:
        var(--yellow) !important;
}

.register-create:disabled {
    cursor: not-allowed;

    opacity: .25;
}

.register-create:not(:disabled) {
    box-shadow:
        0 0 18px rgba(247, 255, 0, .06);

    animation:
        calibrationReady
        1.8s ease-in-out
        infinite;
}


/* =========================================================
   53P. STATUS
   ========================================================= */

.register-message,
.access-gate-message {
    margin-top: 13px;

    min-height: 16px;

    color: #55767d;

    font:
        7px Consolas,
        monospace;

    letter-spacing: .9px;
}

.register-message.is-error,
.access-gate-message.is-error {
    color: var(--red);
}

.register-message.is-success,
.access-gate-message.is-success {
    color: var(--cyan);
}

.register-message.is-loading,
.access-gate-message.is-loading {
    color: var(--yellow);
}

.access-gate-footer {
    display: flex;
    justify-content: space-between;

    gap: 12px;

    margin-top: 17px;
    padding-top: 12px;

    border-top:
        1px solid rgba(0, 240, 255, .10);

    color: #496b72;

    font:
        6px Consolas,
        monospace;

    letter-spacing: 1px;
}


/* =========================================================
   53Q. ANIMATIONS
   ========================================================= */

@keyframes accessGateOrbit {

    to {
        transform:
            rotate(360deg);
    }

}

@keyframes accessGateScan {

    0% {
        transform:
            translateY(-8px);
    }

    100% {
        transform:
            translateY(8px);
    }

}

@keyframes accessPanelEnter {

    from {
        opacity: 0;

        transform:
            translateY(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes registerGlitchLine {

    0%,
    82%,
    100% {
        left: -100%;

        opacity: 0;
    }

    84% {
        left: -10%;

        opacity: .8;
    }

    86% {
        left: 75%;

        opacity: .3;
    }

    87% {
        left: 110%;

        opacity: 0;
    }

}

@keyframes calibrationReady {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(247, 255, 0, .04);
    }

    50% {
        box-shadow:
            0 0 22px rgba(247, 255, 0, .14);
    }

}


/* =========================================================
   53R. RESPONSIVE
   ========================================================= */

@media (max-width: 760px) {

    .access-gate-shell.is-registering {
        width:
            calc(100vw - 22px);
    }

    .attribute-grid {
        grid-template-columns:
            1fr;
    }

    .attribute-header {
        align-items:
            flex-start;
    }

}

@media (max-width: 520px) {

    .access-gate-shell {
        padding:
            22px 20px 20px;
    }

    .access-gate-core {
        width: 98px;
        height: 98px;

        margin-top: 17px;
    }

    .access-gate-shell.is-registering .access-gate-core {
        width: 64px;
        height: 64px;
    }

    .access-gate-mark {
        width: 60px;
        height: 60px;

        font-size: 12px;
    }

    .access-gate-shell.is-registering .access-gate-mark {
        width: 42px;
        height: 42px;
    }

    .access-gate-title strong {
        font-size: 15px;
    }

    .attribute-module {
        grid-template-columns:
            40px
            minmax(0, 1fr);

        grid-template-rows:
            auto
            auto
            5px;
    }

    .attribute-control {
        grid-column:
            1 / -1;

        justify-content:
            center;
    }

    .attribute-energy {
        grid-column:
            1 / -1;
    }

}
