/* Internal WIP homepage immersive hover-reveal preview. */
body.pb-buyers-wip-homepage-page {
    background: #090b12;
}

.pb-buyers-wip-preview-shell {
    min-height: calc(100vh - 160px);
    background:
        radial-gradient(circle at 18% 14%, rgba(193, 138, 75, 0.2), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(92, 143, 231, 0.18), transparent 24%),
        linear-gradient(180deg, #0d1017 0%, #080a11 56%, #07080d 100%);
}

.pb-buyers-wip-page {
    padding-top: 0;
}

.pb-buyers-wip-stage {
    position: relative;
    max-width: 1480px;
    margin: 0 auto;
    padding: 1.2rem 1rem 2rem;
}

.pb-buyers-wip-actions {
    position: absolute;
    top: 1.25rem;
    right: 1.2rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pb-buyers-wip-actions__button {
    appearance: none;
    min-width: 136px;
    padding: 0.9rem 1.45rem;
    border-radius: 8px;
    border: 1px solid rgba(248, 211, 141, 0.42);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    cursor: default;
    user-select: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pb-buyers-wip-actions__button--ghost {
    color: #f1dfbd;
    background: rgba(5, 7, 12, 0.52);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.pb-buyers-wip-actions__button--gold {
    color: #14110a;
    background: linear-gradient(135deg, #f6e0ad 0%, #d4ad5f 52%, #f8e3ae 100%);
    box-shadow: 0 14px 34px rgba(214, 174, 95, 0.28);
}

.pb-buyers-wip-actions__button:focus {
    outline: none;
}

.pb-buyers-wip-actions__button:focus-visible {
    box-shadow: 0 0 0 3px rgba(248, 211, 141, 0.38);
}

.pb-buyers-wip-stage__header {
    max-width: 860px;
    margin: 0 auto 1rem;
    text-align: center;
}

.pb-buyers-wip-stage__title {
    margin: 0;
    color: #f8f4ec;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.pb-buyers-wip-stage__copy {
    max-width: 840px;
    margin: 0.65rem auto 0;
    color: rgba(255,255,255,0.68);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.6;
}

.pb-buyers-wip-stage__scene {
    position: relative;
    min-height: 860px;
    display: grid;
    grid-template-columns: 1fr minmax(180px, 20vw) 1fr;
    align-items: end;
    gap: 0;
    overflow: hidden;
}

.pb-buyers-wip-stage__scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 72%, rgba(248, 211, 141, 0.08), transparent 13%),
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.pb-buyers-wip-stage__divider {
    position: absolute;
    left: 50%;
    top: 18%;
    bottom: 12%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.12) 20%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.08) 80%, transparent 100%);
    pointer-events: none;
}

.pb-buyers-wip-stage__side {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 760px;
}

.pb-buyers-wip-stage__side--seller {
    justify-content: center;
    padding-right: 2rem;
}

.pb-buyers-wip-stage__side--buyer {
    justify-content: center;
    padding-left: 2rem;
}

.pb-buyers-wip-stage__side-copy {
    position: absolute;
    top: 44%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.5;
    white-space: pre-line;
}

.pb-buyers-wip-stage__side--seller .pb-buyers-wip-stage__side-copy {
    left: 4%;
    color: rgba(248, 211, 141, 0.96);
    text-align: left;
}

.pb-buyers-wip-stage__side--buyer .pb-buyers-wip-stage__side-copy {
    right: 4%;
    color: rgba(174, 206, 255, 0.96);
    text-align: right;
}

.pb-buyers-wip-stage__side-copy i {
    display: block;
    width: 140px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 0 12px currentColor;
    opacity: 0.9;
}

.pb-buyers-wip-stage__side--buyer .pb-buyers-wip-stage__side-copy i {
    margin-left: auto;
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-stage__side--buyer .pb-buyers-wip-stage__side-copy,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-stage__side--seller .pb-buyers-wip-stage__side-copy {
    opacity: 0;
    transform: translateY(0.45rem);
    pointer-events: none;
}

.pb-buyers-wip-stage__side-copy {
    transition: opacity 360ms ease, transform 360ms ease;
}

.pb-buyers-wip-figure {
    position: relative;
    display: block;
    width: min(34vw, 460px);
    height: 650px;
    outline: none;
    isolation: isolate;
}

.pb-buyers-wip-figure--seller {
    transform: translateX(8%);
}

.pb-buyers-wip-figure--buyer {
    width: min(38vw, 510px);
    height: 720px;
    transform: translateX(-8%);
}

.pb-buyers-wip-figure__image {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.pb-buyers-wip-figure__image--silhouette {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5));
}

.pb-buyers-wip-figure__image--color {
    opacity: 0;
    transform: scale(0.988);
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.48));
}

.pb-buyers-wip-figure:hover .pb-buyers-wip-figure__image--silhouette,
.pb-buyers-wip-figure:focus .pb-buyers-wip-figure__image--silhouette,
.pb-buyers-wip-figure:focus-visible .pb-buyers-wip-figure__image--silhouette {
    opacity: 0;
    transform: scale(1.012);
}

.pb-buyers-wip-figure:hover .pb-buyers-wip-figure__image--color,
.pb-buyers-wip-figure:focus .pb-buyers-wip-figure__image--color,
.pb-buyers-wip-figure:focus-visible .pb-buyers-wip-figure__image--color {
    opacity: 1;
    transform: scale(1);
}

.pb-buyers-wip-scene__glow {
    position: absolute;
    left: 50%;
    bottom: 9%;
    width: 58%;
    height: 58%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 1;
    pointer-events: none;
}

.pb-buyers-wip-scene__glow--seller {
    background: radial-gradient(circle at center, rgba(236, 192, 132, 0.68) 0%, rgba(236, 192, 132, 0.16) 40%, rgba(236, 192, 132, 0) 72%);
}

.pb-buyers-wip-scene__glow--buyer {
    width: 62%;
    height: 62%;
    background: radial-gradient(circle at center, rgba(149, 187, 255, 0.66) 0%, rgba(149, 187, 255, 0.16) 42%, rgba(149, 187, 255, 0) 72%);
}

.pb-buyers-wip-figure::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 2%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.34), rgba(255,255,255,0.02) 70%, transparent 72%);
    filter: blur(6px);
    pointer-events: none;
    z-index: 1;
}

.pb-buyers-wip-stage__center-copy {
    position: relative;
    z-index: 5;
    align-self: center;
    text-align: center;
    color: #f4ead8;
    transform: translateY(7%);
}

.pb-buyers-wip-stage__center-copy p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.pb-buyers-wip-stage__center-copy h2 {
    margin: 0.15rem 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 4vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.pb-buyers-wip-stage__hover-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 122px;
    height: 122px;
    margin-top: 4.5rem;
    border-radius: 50%;
    border: 1px solid rgba(248, 211, 141, 0.28);
    background: radial-gradient(circle at center, rgba(18,20,28,0.55), rgba(18,20,28,0.1));
    color: rgba(248, 211, 141, 0.96);
    white-space: pre-line;
    font-size: 0.95rem;
    line-height: 1.35;
    box-shadow: 0 0 0 1px rgba(248, 211, 141, 0.08), 0 0 32px rgba(248, 211, 141, 0.18);
    position: relative;
}

.pb-buyers-wip-stage__hover-pill::before {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translateX(-50%) rotate(45deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248, 211, 141, 0.85));
    box-shadow: 0 0 18px rgba(248, 211, 141, 0.75);
}

.pb-buyers-wip-stage__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.95rem;
    margin-top: -0.75rem;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.pb-buyers-wip-stage__footer-dot {
    color: rgba(248, 211, 141, 0.7);
}

@media (max-width: 1180px) {
    .pb-buyers-wip-actions {
        top: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .pb-buyers-wip-actions__button {
        min-width: 116px;
        padding: 0.78rem 1.1rem;
        font-size: 0.95rem;
    }

    .pb-buyers-wip-stage__scene {
        min-height: 760px;
        grid-template-columns: 1fr 160px 1fr;
    }

    .pb-buyers-wip-figure {
        width: min(35vw, 390px);
        height: 580px;
    }

    .pb-buyers-wip-figure--buyer {
        width: min(38vw, 430px);
        height: 640px;
    }

    .pb-buyers-wip-stage__side-copy {
        font-size: 0.92rem;
        letter-spacing: 0.18em;
    }
}

@media (max-width: 900px) {
    .pb-buyers-wip-stage__scene {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1rem;
    }

    .pb-buyers-wip-stage__divider,
    .pb-buyers-wip-stage__center-copy {
        position: static;
        transform: none;
    }

    .pb-buyers-wip-stage__center-copy {
        order: -1;
        margin: 0 auto 0.5rem;
    }

    .pb-buyers-wip-stage__hover-pill {
        margin-top: 1.5rem;
        width: 104px;
        height: 104px;
    }

    .pb-buyers-wip-stage__side {
        min-height: auto;
        justify-content: center;
        padding: 0;
    }

    .pb-buyers-wip-stage__side-copy {
        top: 8%;
    }

    .pb-buyers-wip-stage__side--seller .pb-buyers-wip-stage__side-copy {
        left: 5%;
    }

    .pb-buyers-wip-stage__side--buyer .pb-buyers-wip-stage__side-copy {
        right: 5%;
    }

    .pb-buyers-wip-figure,
    .pb-buyers-wip-figure--buyer {
        width: min(86vw, 440px);
        height: 560px;
        transform: none;
    }
}

@media (max-width: 640px) {
    .pb-buyers-wip-stage {
        padding: 4.5rem 0.75rem 1.5rem;
    }

    .pb-buyers-wip-actions {
        left: 0.75rem;
        right: 0.75rem;
        justify-content: center;
    }

    .pb-buyers-wip-actions__button {
        min-width: 0;
        flex: 1 1 0;
        max-width: 150px;
        padding: 0.75rem 0.8rem;
    }

    .pb-buyers-wip-stage__title {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .pb-buyers-wip-stage__copy {
        font-size: 0.98rem;
    }

    .pb-buyers-wip-stage__side-copy {
        position: static;
        align-items: center;
        text-align: center !important;
        margin-bottom: 0.5rem;
    }

    .pb-buyers-wip-stage__side-copy i,
    .pb-buyers-wip-stage__side--buyer .pb-buyers-wip-stage__side-copy i {
        margin: 0 auto;
        width: 92px;
    }

    .pb-buyers-wip-stage__side {
        flex-direction: column;
    }

    .pb-buyers-wip-figure,
    .pb-buyers-wip-figure--buyer {
        width: min(90vw, 380px);
        height: 470px;
        transform: none;
    }

    .pb-buyers-wip-stage__footer {
        flex-wrap: wrap;
        gap: 0.45rem 0.75rem;
        font-size: 0.92rem;
    }
}


/* Click-state experience cards and cinematic figure transitions. */
.pb-buyers-wip-figure {
    cursor: pointer;
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-figure--buyer .pb-buyers-wip-figure__image,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-figure--seller .pb-buyers-wip-figure__image {
    opacity: 0;
    transform: scale(0.96) translateY(0.35rem);
    filter: blur(15px) saturate(0.65);
    transition-duration: 980ms;
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-figure--seller .pb-buyers-wip-scene__glow--seller {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
    filter: blur(1px) brightness(1.24);
}

.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-figure--buyer .pb-buyers-wip-scene__glow--buyer {
    opacity: 1;
    transform: translateX(-50%) scale(1.14);
    filter: blur(1px) brightness(1.2);
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-figure--buyer .pb-buyers-wip-scene__glow--buyer {
    opacity: 0.82;
    transform: translateX(-50%) scale(1.35);
    filter: blur(18px);
}

.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-figure--seller .pb-buyers-wip-scene__glow--seller {
    opacity: 0.82;
    transform: translateX(-50%) scale(1.35);
    filter: blur(18px);
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-stage__center-copy,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-stage__center-copy,
.pb-buyers-wip-stage[data-active-panel="signup"] .pb-buyers-wip-stage__center-copy,
.pb-buyers-wip-stage[data-active-panel="login"] .pb-buyers-wip-stage__center-copy {
    opacity: 0;
    transform: translateY(11%);
    pointer-events: none;
    transition: opacity 360ms ease, transform 360ms ease;
}

.pb-buyers-wip-card-layer {
    position: absolute;
    inset: 0;
    z-index: 14;
    pointer-events: none;
}

.pb-buyers-wip-experience-card {
    position: absolute;
    top: 54%;
    width: min(40vw, 580px);
    min-height: 420px;
    padding: 3.6rem 3rem 3rem;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(9, 12, 19, 0.82), rgba(6, 8, 14, 0.72)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 42%);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #f6f0e8;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(14px);
    transform: translateY(-36%) scale(0.985);
    transition: opacity 340ms ease, transform 520ms cubic-bezier(.19, 1, .22, 1), visibility 0s linear 520ms;
}

.pb-buyers-wip-experience-card--seller {
    right: 12%;
    border: 1px solid rgba(248, 211, 141, 0.46);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(248, 211, 141, 0.12),
        inset 0 0 0 1px rgba(248, 211, 141, 0.08);
    transform: translate(3.25rem, -36%) scale(0.985);
}

.pb-buyers-wip-experience-card--buyer {
    left: 12%;
    border: 1px solid rgba(174, 206, 255, 0.38);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(121, 171, 255, 0.1),
        inset 0 0 0 1px rgba(248, 211, 141, 0.06);
    transform: translate(-3.25rem, -36%) scale(0.985);
}

.pb-buyers-wip-experience-card::before,
.pb-buyers-wip-experience-card::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    height: 1px;
    pointer-events: none;
}

.pb-buyers-wip-experience-card::before {
    top: -1px;
    background: linear-gradient(90deg, transparent, rgba(248, 211, 141, 0.95), transparent);
    box-shadow: 0 0 18px rgba(248, 211, 141, 0.55);
}

.pb-buyers-wip-experience-card::after {
    bottom: -1px;
    background: linear-gradient(90deg, transparent, rgba(248, 211, 141, 0.8), transparent);
    box-shadow: 0 0 16px rgba(248, 211, 141, 0.45);
}

.pb-buyers-wip-experience-card--buyer::before,
.pb-buyers-wip-experience-card--buyer::after {
    background: linear-gradient(90deg, transparent, rgba(158, 198, 255, 0.78), rgba(248, 211, 141, 0.58), transparent);
    box-shadow: 0 0 18px rgba(158, 198, 255, 0.36);
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-experience-card--seller,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-experience-card--buyer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -36%) scale(1);
    transition-delay: 120ms, 120ms, 0s;
    transition-duration: 420ms, 650ms, 0s;
}

.pb-buyers-wip-experience-card__close {
    position: absolute;
    top: 1.45rem;
    right: 1.55rem;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    border: 0;
    background: transparent;
    color: rgba(248, 211, 141, 0.92);
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

.pb-buyers-wip-experience-card--buyer .pb-buyers-wip-experience-card__close {
    color: rgba(188, 215, 255, 0.92);
}

.pb-buyers-wip-experience-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pb-buyers-wip-experience-card__title,
.pb-buyers-wip-experience-card__copy,
.pb-buyers-wip-experience-card__actions {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 420ms ease, transform 520ms cubic-bezier(.19, 1, .22, 1);
}

.pb-buyers-wip-experience-card__title {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.pb-buyers-wip-experience-card__rule {
    display: block;
    width: min(420px, 82%);
    height: 1px;
    margin: 1.6rem 0 2rem;
    background: linear-gradient(90deg, transparent, rgba(248, 211, 141, 0.65), transparent);
    position: relative;
}

.pb-buyers-wip-experience-card--buyer .pb-buyers-wip-experience-card__rule {
    background: linear-gradient(90deg, transparent, rgba(166, 202, 255, 0.56), rgba(248, 211, 141, 0.44), transparent);
}

.pb-buyers-wip-experience-card__rule::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #f8d38d;
    box-shadow: 0 0 18px rgba(248, 211, 141, 0.75);
}

.pb-buyers-wip-experience-card--buyer .pb-buyers-wip-experience-card__rule::before {
    background: #b8d6ff;
    box-shadow: 0 0 18px rgba(166, 202, 255, 0.62);
}

.pb-buyers-wip-experience-card__copy {
    max-width: 530px;
    margin: 0;
    color: rgba(255,255,255,0.74);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    line-height: 1.7;
}

.pb-buyers-wip-experience-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    width: min(520px, 100%);
    margin-top: 2.8rem;
}

.pb-buyers-wip-experience-card__button {
    appearance: none;
    min-height: 72px;
    border-radius: 8px;
    border: 1px solid rgba(248, 211, 141, 0.36);
    font-size: 1.08rem;
    font-weight: 600;
    cursor: default;
}

.pb-buyers-wip-experience-card__button--ghost {
    color: #f4dba8;
    background: rgba(5, 7, 12, 0.38);
}

.pb-buyers-wip-experience-card__button--gold {
    color: #14110a;
    background: linear-gradient(135deg, #f6e0ad 0%, #d4ad5f 52%, #f8e3ae 100%);
    box-shadow: 0 14px 34px rgba(214, 174, 95, 0.24);
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-experience-card--seller .pb-buyers-wip-experience-card__title,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-experience-card--buyer .pb-buyers-wip-experience-card__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 520ms;
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-experience-card--seller .pb-buyers-wip-experience-card__copy,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-experience-card--buyer .pb-buyers-wip-experience-card__copy {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 780ms;
}

.pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-experience-card--seller .pb-buyers-wip-experience-card__actions,
.pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-experience-card--buyer .pb-buyers-wip-experience-card__actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1040ms;
}

@media (max-width: 1180px) {
    .pb-buyers-wip-experience-card {
        width: min(50vw, 560px);
        padding: 3.2rem 2.2rem 2.5rem;
    }

    .pb-buyers-wip-experience-card--seller {
        right: 7%;
    }

    .pb-buyers-wip-experience-card--buyer {
        left: 7%;
    }

    .pb-buyers-wip-experience-card__actions {
        gap: 0.9rem;
    }
}

@media (max-width: 900px) {
    .pb-buyers-wip-card-layer {
        position: relative;
        inset: auto;
        display: block;
        z-index: 8;
        margin-top: 1rem;
    }

    .pb-buyers-wip-experience-card,
    .pb-buyers-wip-experience-card--seller,
    .pb-buyers-wip-experience-card--buyer {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: min(100%, 620px);
        min-height: 0;
        margin: 0 auto;
        transform: translateY(1rem) scale(0.985);
    }

    .pb-buyers-wip-stage[data-active-panel="seller"] .pb-buyers-wip-experience-card--seller,
    .pb-buyers-wip-stage[data-active-panel="buyer"] .pb-buyers-wip-experience-card--buyer {
        transform: translateY(0) scale(1);
    }

    .pb-buyers-wip-experience-card:not([aria-hidden="false"]) {
        position: absolute;
    }
}

@media (max-width: 640px) {
    .pb-buyers-wip-experience-card,
    .pb-buyers-wip-experience-card--seller,
    .pb-buyers-wip-experience-card--buyer {
        padding: 3rem 1rem 1.35rem;
        border-radius: 14px;
    }

    .pb-buyers-wip-experience-card__title {
        font-size: 2.15rem;
    }

    .pb-buyers-wip-experience-card__actions {
        grid-template-columns: 1fr;
        margin-top: 1.6rem;
    }

    .pb-buyers-wip-experience-card__button {
        min-height: 58px;
    }
}


/* WIP Join Now and Log In account cards. */
.pb-buyers-wip-actions__button--gold,
.pb-buyers-wip-actions__button--ghost,
.pb-buyers-wip-experience-card__button--gold,
.pb-buyers-wip-experience-card__button--ghost,
.pb-buyers-wip-signup-card__signin button,
.pb-buyers-wip-login-card__signup button {
    cursor: pointer;
}

.pb-buyers-wip-signup-card {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 22;
    width: min(48vw, 620px);
    max-height: min(82vh, 760px);
    overflow: auto;
    padding: 3.2rem 2.8rem 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(248, 211, 141, 0.48);
    background:
        linear-gradient(145deg, rgba(9, 12, 19, 0.86), rgba(6, 8, 14, 0.76)),
        radial-gradient(circle at 50% 0%, rgba(248, 211, 141, 0.11), transparent 40%);
    box-shadow:
        0 34px 86px rgba(0, 0, 0, 0.48),
        0 0 24px rgba(248, 211, 141, 0.13),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #f7f0e5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(15px);
    transform: translate(-50%, -44%) scale(0.98);
    transition: opacity 340ms ease, transform 560ms cubic-bezier(.19, 1, .22, 1), visibility 0s linear 560ms;
}

.pb-buyers-wip-signup-card::before,
.pb-buyers-wip-signup-card::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 211, 141, 0.92), transparent);
    pointer-events: none;
}

.pb-buyers-wip-signup-card::before {
    top: -1px;
    box-shadow: 0 0 18px rgba(248, 211, 141, 0.58);
}

.pb-buyers-wip-signup-card::after {
    bottom: -1px;
    box-shadow: 0 0 16px rgba(248, 211, 141, 0.46);
}

.pb-buyers-wip-stage[data-active-panel="signup"] .pb-buyers-wip-signup-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -44%) scale(1);
    transition-delay: 120ms, 120ms, 0s;
}

.pb-buyers-wip-stage[data-active-panel="signup"] .pb-buyers-wip-experience-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pb-buyers-wip-stage[data-active-panel="signup"] .pb-buyers-wip-figure__image,
.pb-buyers-wip-stage[data-active-panel="login"] .pb-buyers-wip-figure__image {
    opacity: 0.36;
    filter: blur(3px) saturate(0.8);
}

.pb-buyers-wip-signup-card__close {
    position: absolute;
    top: 1.25rem;
    right: 1.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    background: transparent;
    color: rgba(248, 211, 141, 0.94);
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

.pb-buyers-wip-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pb-buyers-wip-signup-card__header {
    text-align: center;
    margin-bottom: 0.35rem;
}

.pb-buyers-wip-signup-card__header h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.pb-buyers-wip-signup-card__header p {
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
}

.pb-buyers-wip-role-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 0.35rem 0 0.5rem;
    padding: 0;
    border: 0;
}

.pb-buyers-wip-role-choice__option {
    position: relative;
    display: flex;
    min-height: 132px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.025);
    color: rgba(255,255,255,0.82);
    text-align: center;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pb-buyers-wip-role-choice__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pb-buyers-wip-role-choice__option.is-selected {
    border-color: rgba(248, 211, 141, 0.78);
    background: rgba(248, 211, 141, 0.06);
    box-shadow: 0 0 24px rgba(248, 211, 141, 0.13), inset 0 0 0 1px rgba(248, 211, 141, 0.08);
}

.pb-buyers-wip-role-choice__option.is-selected::after {
    content: "✓";
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(248, 211, 141, 0.7);
    border-radius: 50%;
    color: #f8d38d;
    font-size: 0.85rem;
}

.pb-buyers-wip-role-choice__icon {
    color: #f8d38d;
    font-size: 1.55rem;
    line-height: 1;
}

.pb-buyers-wip-role-choice__option[data-pb-wip-role-option="buyer"] .pb-buyers-wip-role-choice__icon {
    color: #b8d6ff;
}

.pb-buyers-wip-role-choice__option strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.pb-buyers-wip-role-choice__option small {
    max-width: 170px;
    color: rgba(255,255,255,0.64);
    line-height: 1.45;
}

.pb-buyers-wip-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.pb-buyers-wip-field input {
    width: 100%;
    min-height: 50px;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 7px;
    background: rgba(3, 5, 10, 0.42);
    color: #fff;
    font: inherit;
}

.pb-buyers-wip-field input:focus {
    outline: none;
    border-color: rgba(248, 211, 141, 0.68);
    box-shadow: 0 0 0 3px rgba(248, 211, 141, 0.11);
}

.pb-buyers-wip-field small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.45;
}

.pb-buyers-wip-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(255,255,255,0.74);
    font-size: 0.92rem;
    line-height: 1.45;
}

.pb-buyers-wip-terms input {
    margin-top: 0.2rem;
}

.pb-buyers-wip-terms a,
.pb-buyers-wip-signup-card__signin button {
    color: #f8d38d;
    text-decoration: none;
}

.pb-buyers-wip-password-note {
    margin: -0.2rem 0 0;
    color: rgba(248, 211, 141, 0.75);
    font-size: 0.86rem;
    line-height: 1.45;
}

.pb-buyers-wip-form-message {
    display: none;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.pb-buyers-wip-form-message.is-error,
.pb-buyers-wip-form-message.is-success {
    display: block;
}

.pb-buyers-wip-form-message.is-error {
    border: 1px solid rgba(255, 121, 121, 0.38);
    background: rgba(125, 26, 26, 0.26);
    color: #ffdada;
}

.pb-buyers-wip-form-message.is-success {
    border: 1px solid rgba(131, 221, 162, 0.38);
    background: rgba(26, 112, 57, 0.22);
    color: #d9ffe6;
}

.pb-buyers-wip-signup-submit {
    min-height: 56px;
    border: 1px solid rgba(248, 211, 141, 0.42);
    border-radius: 8px;
    background: linear-gradient(135deg, #f6e0ad 0%, #d4ad5f 52%, #f8e3ae 100%);
    color: #14110a;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(214, 174, 95, 0.24);
}

.pb-buyers-wip-signup-submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.pb-buyers-wip-signup-card__signin {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    min-height: 48px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
}

.pb-buyers-wip-signup-card__signin button {
    border: 0;
    background: transparent;
    font: inherit;
    cursor: default;
}

@media (max-width: 1180px) {
    .pb-buyers-wip-signup-card {
        width: min(58vw, 600px);
    }
}

@media (max-width: 900px) {
    .pb-buyers-wip-signup-card {
        position: relative;
        left: auto;
        top: auto;
        width: min(100%, 620px);
        max-height: none;
        margin: 1rem auto 0;
        transform: translateY(1rem) scale(0.985);
    }

    .pb-buyers-wip-stage[data-active-panel="signup"] .pb-buyers-wip-signup-card {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .pb-buyers-wip-signup-card {
        padding: 3rem 1rem 1.35rem;
        border-radius: 14px;
    }

    .pb-buyers-wip-role-choice {
        grid-template-columns: 1fr;
    }

    .pb-buyers-wip-role-choice__option {
        min-height: 112px;
    }
}


/* WIP Log In account card. */
.pb-buyers-wip-login-card {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 24;
    width: min(52vw, 700px);
    max-height: min(82vh, 760px);
    overflow: auto;
    padding: 3.2rem 3.2rem 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(178, 209, 255, 0.46);
    border-left-color: rgba(248, 211, 141, 0.52);
    background:
        radial-gradient(circle at 5% 0%, rgba(248, 211, 141, 0.14), transparent 38%),
        radial-gradient(circle at 95% 100%, rgba(98, 157, 255, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(9, 12, 19, 0.88), rgba(6, 8, 14, 0.78));
    box-shadow:
        0 34px 86px rgba(0, 0, 0, 0.52),
        0 0 26px rgba(114, 176, 255, 0.14),
        0 0 24px rgba(248, 211, 141, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.055);
    color: #f7f0e5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(16px);
    transform: translate(-50%, -44%) scale(0.98);
    transition: opacity 340ms ease, transform 560ms cubic-bezier(.19, 1, .22, 1), visibility 0s linear 560ms;
}

.pb-buyers-wip-login-card::before,
.pb-buyers-wip-login-card::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 211, 141, 0.78), rgba(166, 202, 255, 0.78), transparent);
    pointer-events: none;
}

.pb-buyers-wip-login-card::before {
    top: -1px;
    box-shadow: 0 0 18px rgba(248, 211, 141, 0.4), 0 0 18px rgba(166, 202, 255, 0.32);
}

.pb-buyers-wip-login-card::after {
    bottom: -1px;
    box-shadow: 0 0 16px rgba(166, 202, 255, 0.36);
}

.pb-buyers-wip-stage[data-active-panel="login"] .pb-buyers-wip-login-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -44%) scale(1);
    transition-delay: 120ms, 120ms, 0s;
}

.pb-buyers-wip-stage[data-active-panel="login"] .pb-buyers-wip-experience-card,
.pb-buyers-wip-stage[data-active-panel="login"] .pb-buyers-wip-signup-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pb-buyers-wip-login-card__close {
    position: absolute;
    top: 1.25rem;
    right: 1.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    background: transparent;
    color: rgba(188, 215, 255, 0.96);
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
}

.pb-buyers-wip-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.pb-buyers-wip-login-card__header {
    text-align: center;
    margin-bottom: 0.25rem;
}

.pb-buyers-wip-login-card__header h2 {
    margin: 0;
    color: #f7f0e5;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(2.45rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.pb-buyers-wip-login-card__header p {
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.pb-buyers-wip-login-card__rule {
    display: block;
    width: min(430px, 82%);
    height: 1px;
    margin: 0.65rem auto 1.2rem;
    background: linear-gradient(90deg, transparent, rgba(248, 211, 141, 0.54), rgba(166, 202, 255, 0.5), transparent);
    position: relative;
}

.pb-buyers-wip-login-card__rule::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #f8d38d;
    box-shadow: 0 0 17px rgba(248, 211, 141, 0.7), 0 0 17px rgba(166, 202, 255, 0.46);
}

.pb-buyers-wip-login-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
    letter-spacing: 0.01em;
}

.pb-buyers-wip-login-field__control {
    position: relative;
    display: block;
}

.pb-buyers-wip-login-field__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(248, 211, 141, 0.72);
    font-size: 1rem;
    pointer-events: none;
}

.pb-buyers-wip-login-field input {
    width: 100%;
    min-height: 58px;
    padding: 0.82rem 3.5rem 0.82rem 3.05rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(3, 5, 10, 0.48);
    color: #fff;
    font: inherit;
    font-size: 1.02rem;
}

.pb-buyers-wip-login-field input::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.pb-buyers-wip-login-field input:focus {
    outline: none;
    border-color: rgba(166, 202, 255, 0.68);
    box-shadow: 0 0 0 3px rgba(166, 202, 255, 0.11), 0 0 18px rgba(248, 211, 141, 0.08);
}

.pb-buyers-wip-password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    cursor: pointer;
}

.pb-buyers-wip-password-toggle.is-visible {
    color: #b8d6ff;
}

.pb-buyers-wip-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.pb-buyers-wip-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.pb-buyers-wip-remember input {
    width: 18px;
    height: 18px;
    accent-color: #d4ad5f;
}

.pb-buyers-wip-login-row a,
.pb-buyers-wip-login-card__signup button {
    color: #9fc8ff;
    text-decoration: none;
}

.pb-buyers-wip-login-submit {
    min-height: 60px;
    border: 1px solid rgba(166, 202, 255, 0.52);
    border-left-color: rgba(248, 211, 141, 0.62);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(246, 224, 173, 0.92) 0%, rgba(212, 173, 95, 0.72) 42%, rgba(71, 137, 239, 0.78) 100%);
    color: #f7f0e5;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.38rem;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(86, 153, 255, 0.22), 0 14px 34px rgba(214, 174, 95, 0.16);
}

.pb-buyers-wip-login-submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.pb-buyers-wip-login-separator {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.15rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
}

.pb-buyers-wip-login-separator span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.pb-buyers-wip-login-separator em {
    font-style: normal;
}

.pb-buyers-wip-login-card__signup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    color: rgba(255,255,255,0.7);
}

.pb-buyers-wip-login-card__signup button {
    border: 0;
    background: transparent;
    font: inherit;
}

@media (max-width: 1180px) {
    .pb-buyers-wip-login-card {
        width: min(62vw, 660px);
    }
}

@media (max-width: 900px) {
    .pb-buyers-wip-login-card {
        position: relative;
        left: auto;
        top: auto;
        width: min(100%, 620px);
        max-height: none;
        margin: 1rem auto 0;
        transform: translateY(1rem) scale(0.985);
    }

    .pb-buyers-wip-stage[data-active-panel="login"] .pb-buyers-wip-login-card {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .pb-buyers-wip-login-card {
        padding: 3rem 1rem 1.35rem;
        border-radius: 14px;
    }

    .pb-buyers-wip-login-row,
    .pb-buyers-wip-login-card__signup {
        align-items: flex-start;
        flex-direction: column;
    }

    .pb-buyers-wip-login-submit {
        font-size: 1.2rem;
    }
}

.pb-buyers-wip-field.is-hidden {
    display: none !important;
}

.pb-buyers-wip-invitation-field input {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
