/* Midnight glass, violet light and a centered employee entrance. */
.qp-access
{
    --access-ink: #f3f1ff;
    --access-gold: #bab1dc;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 28px clamp(20px, 4.5vw, 72px) 18px;
    color: var(--access-ink);
    background: #0c0e1b;
    color-scheme: dark;
}

.qp-access__scene
{
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 86% 0%, #7760c84d, transparent 43%),
        radial-gradient(ellipse at 40% 112%, #2b8d8045, transparent 43%),
        linear-gradient(125deg, #0d101c, #101121 52%, #0a0d18);
    overflow: hidden;
}

.qp-access__scene::after
{
    content: "";
    position: absolute;
    top: -24vw;
    right: -9vw;
    width: 80vw;
    height: 80vw;
    border: 1px solid #c4bbeb06;
    border-radius: 50%;
    box-shadow: 0 0 0 65px #c4bbeb02;
}

.qp-access__header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: none;
    gap: 16px;
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
}

.qp-access__brand
{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f4f2ff;
    font-size: 22px;
    font-weight: 550;
    letter-spacing: -.7px;
}

.qp-access__brand .qp-brand__mark rect
{
    fill: #9180ef;
}

.qp-access__brand .qp-brand__mark path[stroke]
{
    stroke: #9180ef;
}

.qp-access__workspace
{
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    color: #d1cbea;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.2px;
}

.qp-access__workspace > span
{
    color: #aaa6bf;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.qp-access__main
{
    display: grid;
    place-items: center;
    flex: 1;
    width: 100%;
    padding: 30px 0;
}

.qp-access__entry
{
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 43px 39px 32px;
    border: 1px solid #c9bcff30;
    border-radius: 26px;
    background: radial-gradient(ellipse at 50% 0%, #a18af522, transparent 65%), linear-gradient(155deg, #24253bea, #171c2bee);
    box-shadow: 0 30px 80px #00000040, 0 0 60px #8c71e510, inset 0 1px 0 #ffffff0d;
    backdrop-filter: blur(24px);
}

.qp-access__entry::before
{
    content: "";
    position: absolute;
    top: -1px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4c6ffb3, transparent);
    pointer-events: none;
}

.qp-access .qp-account__form
{
    width: 100%;
    max-width: none;
    gap: 23px;
    text-align: center;
}

.qp-access .qp-account__mobile-brand
{
    display: none;
}

.qp-access__emblem
{
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto -5px;
    border: 1px solid #c1afff30;
    border-radius: 18px;
    background: linear-gradient(145deg, #baa1ff20, #baa1ff05);
    box-shadow: 0 0 32px #ad8af515, inset 0 1px 0 #ffffff0a;
}

.qp-access__emblem .qp-brand__mark
{
    filter: drop-shadow(0 3px 10px #8a68ef40);
}

.qp-access__eyebrow
{
    color: var(--access-gold);
    font-size: 8px;
    font-weight: 550;
    letter-spacing: 2.1px;
}

.qp-access__eyebrow::before
{
    content: none;
}

.qp-access .qp-account__title
{
    color: var(--access-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.3px;
}

.qp-access__login-form .qp-account__title
{
    font-size: 54px;
}

.qp-access .qp-account__title em
{
    color: #c7baff;
    font-weight: 400;
}

.qp-access .qp-account__lede
{
    margin-top: 17px;
    color: #bbbcd0;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .1px;
}

.qp-access .qp-btn[data-variant="primary"]
{
    display: flex;
    justify-content: center;
    gap: 15px;
    height: auto;
    min-height: 53px;
    padding: 15px 14px;
    border: 1px solid #b5a2ff70;
    border-radius: 12px;
    background: linear-gradient(110deg, #7961dc, #6955c7);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2px;
    text-decoration: none;
    box-shadow: 0 8px 26px #7761d52e, inset 0 1px 0 #ffffff1a;
    transition: background .18s, border-color .18s, box-shadow .18s;
}

.qp-access .qp-btn[data-variant="primary"]:hover:not(:disabled)
{
    border-color: #d2c4ff;
    background: linear-gradient(110deg, #8970eb, #7962dc);
    box-shadow: 0 10px 32px #9174ef40;
}

.qp-access .qp-btn:focus-visible
{
    outline: 2px solid #cbbcff;
    outline-offset: 4px;
}

.qp-access .qp-btn[data-variant="ghost"]
{
    color: #d1c8ec;
}

.qp-access .qp-btn:disabled
{
    opacity: .65;
}

.qp-access__identity
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: -8px;
    color: #a6b7c7;
    font-size: 7px;
    letter-spacing: 1.3px;
}

.qp-access .qp-account__foot
{
    color: #a5aac0;
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
}

.qp-access .qp-account__foot > span
{
    color: #d0cce0;
}

.qp-access .qp-account__alert
{
    padding: 10px 12px;
    background: #d7ad5920;
    border-color: #e6c47950;
    color: #f1d89f;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.qp-access footer.qp-footer
{
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    padding: 14px 0 0;
    border-color: #c4bbeb24;
    color: #b0b5ce;
    font-size: 10px;
}

.qp-access footer.qp-footer a
{
    color: #d7cdff;
}

.qp-access__main--overview
{
    grid-template-columns: minmax(0, 1fr) minmax(330px, 400px) minmax(0, 1fr);
    align-content: center;
    align-items: center;
    column-gap: clamp(24px, 3.3vw, 48px);
    row-gap: 35px;
    max-width: 1210px;
    margin-inline: auto;
    padding-block: 24px;
}

.qp-access__introduction
{
    grid-column: 1 / -1;
    text-align: center;
}

.qp-access__intro-kicker
{
    margin-bottom: 12px;
    color: #c4b5f4;
    font-size: 8px;
    font-weight: 550;
    letter-spacing: 2px;
}

.qp-access__introduction h2
{
    color: #f4f2ff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.qp-access__introduction h2 em
{
    color: #c4b5fd;
    font-weight: 400;
}

.qp-access__introduction > p:last-of-type
{
    margin: 12px auto 0;
    max-width: 520px;
    color: #b8bdd1;
    font-size: 12px;
    line-height: 1.65;
}

.qp-access__main--overview .qp-access__entry
{
    max-width: 400px;
    padding: 34px 28px 29px;
}

.qp-access__main--overview .qp-access__login-form .qp-account__title
{
    font-size: 42px;
    white-space: nowrap;
}

.qp-access__main--overview .qp-account__lede
{
    max-width: 255px;
    margin-inline: auto;
}

.qp-access__feature
{
    width: 100%;
    max-width: 300px;
    padding: 20px 6px;
}

.qp-access__feature-number
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #bfb0ed;
    font-size: 8px;
    font-weight: 550;
    letter-spacing: 1.6px;
}

.qp-access__feature h3
{
    margin-top: 15px;
    color: #f1effa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.6px;
}

.qp-access__feature p
{
    margin-top: 12px;
    color: #b8bdd1;
    font-size: 11px;
    line-height: 1.8;
}

.qp-access__test-preview
{
    margin-top: 23px;
    padding: 17px 16px 5px;
    border: 1px solid #c4bbeb26;
    border-radius: 16px;
    background: #ffffff06;
    box-shadow: 0 12px 30px #00000014;
    backdrop-filter: blur(12px);
}

.qp-access__preview-caption
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    padding-bottom: 15px;
    color: #b6adcf;
    font-size: 7px;
    letter-spacing: .9px;
}

.qp-access__example-step
{
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding-bottom: 15px;
}

.qp-access__example-step:not(:last-child)::before
{
    content: "";
    position: absolute;
    top: 23px;
    bottom: 0;
    left: 11px;
    width: 1px;
    background: #b9aceb30;
}

.qp-access__example-step > span
{
    display: grid;
    place-items: center;
    flex: none;
    width: 23px;
    height: 23px;
    border: 1px solid #b9aceb40;
    border-radius: 50%;
    color: #d2c6ff;
    background: #b3a0f214;
    font-size: 9px;
}

.qp-access__example-step strong,
.qp-access__example-step small
{
    display: block;
}

.qp-access__example-step strong
{
    color: #deddec;
    font-size: 10px;
    font-weight: 550;
}

.qp-access__example-step small
{
    margin-top: 3px;
    color: #a8aec6;
    font-size: 9px;
}

.qp-access__release-preview
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 23px;
}

.qp-access__stage
{
    --stage-accent: #aebfeb;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 15px 4px 12px;
    border: 1px solid #b9aceb26;
    border-radius: 16px;
    background: linear-gradient(160deg, #b3a0f20e, #ffffff03);
    box-shadow: inset 0 1px 0 #ffffff05;
    text-align: center;
}

.qp-access__stage--release
{
    --stage-accent: #c6b4ff;
    border-color: #b7a0ff42;
    background: linear-gradient(160deg, #aa87ff1a, #aa87ff05);
}

.qp-access__stage--live
{
    --stage-accent: #9ae1ce;
    border-color: #83d5c33d;
    background: linear-gradient(160deg, #83d5c316, #83d5c304);
}

.qp-access__stage-icon
{
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border: 1px solid color-mix(in srgb, var(--stage-accent) 25%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--stage-accent) 9%, transparent);
    color: var(--stage-accent);
}

.qp-access__stage:not(:last-child)::after
{
    content: "›";
    position: absolute;
    top: 22px;
    right: -9px;
    width: 7px;
    color: #a89cce;
    font-size: 16px;
    line-height: 16px;
}

.qp-access__stage-label
{
    color: #e0daef;
    font-size: 10px;
    font-weight: 550;
}

.qp-access__stage strong
{
    margin-block: 8px;
    padding: 3px 10px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--stage-accent) 9%, transparent);
    color: var(--stage-accent);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

.qp-access__stage small
{
    color: #b7b8cc;
    font-size: 8px;
    line-height: 1.5;
}

.qp-access__run-feature
{
    margin-top: 27px;
    padding-top: 20px;
    border-top: 1px solid #c4bbeb26;
}

.qp-access__run-feature h3
{
    margin-top: 11px;
    font-size: 24px;
}

.qp-access__mobile-features
{
    display: none;
}

@media (max-width: 600px)
{
    .qp-access
    {
        padding: 22px 20px 16px;
    }
    .qp-access__main
    {
        padding-block: 22px;
    }
    .qp-access__entry
    {
        padding: 33px 28px 27px;
    }
    .qp-access__login-form .qp-account__title
    {
        font-size: 47px;
    }
    .qp-access__brand
    {
        font-size: 20px;
    }
    .qp-access__workspace
    {
        font-size: 8px;
        letter-spacing: 1.8px;
    }
    .qp-access .qp-account__form
    {
        gap: 20px;
    }
    .qp-access .qp-btn[data-variant="primary"]
    {
        gap: 10px;
        font-size: 11px;
    }
}

@media (max-height: 720px)
{
    .qp-access
    {
        padding-block: 14px;
    }
    .qp-access__main
    {
        padding-block: 16px;
    }
    .qp-access__entry
    {
        padding-block: 28px 24px;
    }
    .qp-access .qp-account__form
    {
        gap: 17px;
    }
    .qp-access__eyebrow::before
    {
        margin-bottom: 14px;
    }
    .qp-access__login-form .qp-account__title
    {
        font-size: 45px;
    }
}

@media (max-height: 620px)
{
    .qp-access__entry
    {
        padding: 22px 24px 20px;
    }
    .qp-access__emblem,
    .qp-access__eyebrow::before,
    .qp-access__login-form .qp-account__lede
    {
        display: none;
    }
    .qp-access .qp-account__form
    {
        gap: 14px;
    }
    .qp-access__login-form .qp-account__title
    {
        font-size: 40px;
    }
    .qp-access .qp-account__alert
    {
        padding: 8px;
        font-size: 11px;
    }
}

@media (max-height: 450px)
{
    .qp-access
    {
        padding: 10px 20px;
    }
    .qp-access__main
    {
        padding-block: 10px;
    }
    .qp-access__entry
    {
        max-width: 490px;
        padding: 18px 24px;
    }
    .qp-access__eyebrow,
    .qp-access__identity
    {
        display: none;
    }
    .qp-access__login-form .qp-account__title
    {
        font-size: 30px;
    }
    .qp-access__login-form .qp-account__title br
    {
        display: none;
    }
    .qp-access__login-form .qp-account__title em::before
    {
        content: " ";
    }
    .qp-access .qp-account__form
    {
        gap: 10px;
    }
    .qp-access .qp-btn[data-variant="primary"]
    {
        min-height: 44px;
        padding-block: 10px;
    }
}

@media (max-width: 360px)
{
    .qp-access
    {
        padding-inline: 16px;
    }
    .qp-access__entry
    {
        padding-inline: 20px;
    }
    .qp-access .qp-btn[data-variant="primary"]
    {
        gap: 7px;
        padding-inline: 10px;
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce)
{
    .qp-access *
    {
        transition: none;
    }
}

/* Preserve the center login and meaningful product copy on smaller viewports. */
@media (max-width: 1050px)
{
    .qp-access__main--overview
    {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 23px;
        padding-block: 20px;
    }
    .qp-access__feature
    {
        display: none;
    }
    .qp-access__mobile-features
    {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 17px;
        color: #c7bddf;
    }
    .qp-access__mobile-features > span
    {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
    }
}

@media (max-width: 600px)
{
    .qp-access__main--overview
    {
        row-gap: 20px;
        padding-block: 18px;
    }
    .qp-access__introduction h2
    {
        font-size: 30px;
    }
    .qp-access__intro-kicker
    {
        font-size: 6px;
        letter-spacing: 1.3px;
        margin-bottom: 9px;
    }
    .qp-access__introduction > p:last-of-type
    {
        max-width: 320px;
        font-size: 11px;
        margin-top: 9px;
    }
    .qp-access__mobile-features
    {
        gap: 11px;
        margin-top: 13px;
    }
    .qp-access__mobile-features > span
    {
        gap: 4px;
        font-size: 8px;
    }
    .qp-access__main--overview .qp-access__entry
    {
        padding: 28px 25px 24px;
    }
    .qp-access__main--overview .qp-access__login-form .qp-account__title
    {
        font-size: 36px;
    }
}

@media (max-height: 820px)
{
    .qp-access__main--overview
    {
        row-gap: 22px;
        padding-block: 18px;
    }
    .qp-access__main--overview .qp-access__entry
    {
        padding-block: 26px 23px;
    }
    .qp-access__intro-kicker
    {
        display: none;
    }
    .qp-access__feature
    {
        padding-block: 0;
    }
    .qp-access__feature h3
    {
        font-size: 25px;
    }
    .qp-access__run-feature h3
    {
        font-size: 21px;
    }
}

@media (max-height: 650px)
{
    .qp-access__introduction h2,
    .qp-access__mobile-features
    {
        display: none;
    }
    .qp-access__introduction > p:last-of-type
    {
        max-width: 370px;
        margin-top: 0;
        font-size: 11px;
    }
    .qp-access__main--overview
    {
        row-gap: 14px;
        padding-block: 12px;
    }
    .qp-access__main--overview .qp-access__entry
    {
        padding: 22px 22px 20px;
    }
    .qp-access__main--overview .qp-access__login-form .qp-account__title
    {
        font-size: 32px;
    }
    .qp-access__main--overview:has(.qp-account__alert) .qp-access__eyebrow
    {
        display: none;
    }
}

@media (max-height: 450px)
{
    .qp-access__main--overview
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 9px;
    }
    .qp-access__feature
    {
        display: none;
    }
    .qp-access__main--overview .qp-access__entry
    {
        max-width: 490px;
        padding: 16px 22px;
    }
    .qp-access__main--overview .qp-access__login-form .qp-account__title
    {
        font-size: 28px;
    }
}
