.user-orientation,
.checkout-steps {
    padding: clamp(20px, 3vw, 32px);
    border-radius: 24px;
    border: 1px solid rgba(134, 153, 181, 0.18);
    background: linear-gradient(180deg, rgba(10, 16, 28, 0.92), rgba(13, 21, 35, 0.96));
    box-shadow: 0 20px 50px rgba(10, 16, 28, 0.12);
}

.user-orientation:not(.user-orientation--logged) {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255, 106, 0, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(0, 230, 210, 0.08), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff7fb 45%, #f7f3ff 100%);
    border-color: rgba(75, 0, 130, 0.10);
    box-shadow: 0 14px 36px rgba(75, 0, 130, 0.08);
}

.user-orientation:not(.user-orientation--logged)::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.06), transparent 26%),
        linear-gradient(315deg, rgba(225, 0, 255, 0.05), transparent 24%);
    opacity: 0.9;
}

.user-orientation:not(.user-orientation--logged) > * {
    position: relative;
    z-index: 1;
}

.user-orientation--logged {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255, 106, 0, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(225, 0, 255, 0.08), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f7f3ff 100%);
    border-color: rgba(75, 0, 130, 0.10);
    box-shadow: 0 14px 36px rgba(75, 0, 130, 0.08);
}

.user-orientation--logged::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.08), transparent 26%),
        linear-gradient(315deg, rgba(0, 230, 210, 0.08), transparent 24%);
    opacity: 0.9;
}

.user-orientation--logged > * {
    position: relative;
    z-index: 1;
}

.user-orientation__header,
.checkout-steps__header {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.user-orientation__eyebrow,
.checkout-steps__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: rgba(167, 198, 241, 0.84);
}

.user-orientation--logged .user-orientation__eyebrow {
    color: #4b0082;
    font-weight: 700;
}

.user-orientation:not(.user-orientation--logged) .user-orientation__eyebrow {
    color: #4b0082;
    font-weight: 700;
}

.user-orientation__header h2,
.checkout-steps__header h2 {
    margin: 0;
    color: #f5f9ff;
}

.user-orientation--logged .user-orientation__header h2 {
    color: #111827;
}

.user-orientation:not(.user-orientation--logged) .user-orientation__header h2 {
    color: #111827;
}

.user-orientation__header p,
.checkout-steps__support {
    margin: 0;
    color: rgba(229, 238, 248, 0.84);
}

.user-orientation--logged .user-orientation__header p {
    color: rgba(17, 24, 39, 0.78);
}

.user-orientation:not(.user-orientation--logged) .user-orientation__header p {
    color: rgba(17, 24, 39, 0.76);
}

.user-orientation__grid {
    display: grid;
    gap: 14px;
}

.user-orientation-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(75, 0, 130, 0.10);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(75, 0, 130, 0.06);
}

.user-orientation:not(.user-orientation--logged) .user-orientation-card {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(75, 0, 130, 0.10);
    box-shadow: 0 12px 26px rgba(75, 0, 130, 0.07);
}

.user-orientation-card strong {
    color: #111827;
    font-size: 1.03rem;
}

.user-orientation-card p,
.user-orientation-card__note {
    margin: 0;
    color: rgba(17, 24, 39, 0.78);
}

.user-orientation-card--highlight {
    border-color: rgba(255, 106, 0, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(225, 0, 255, 0.06));
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.10);
}

.user-orientation:not(.user-orientation--logged) .user-orientation-card--highlight {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 0, 0.10), rgba(225, 0, 255, 0.06));
}

.auth-info-card {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.auth-info-card h2 {
    margin: 0;
    color: #111827;
}

.auth-info-card p,
.auth-info-card li {
    color: rgba(17, 24, 39, 0.78);
}

.auth-info-card__steps,
.auth-info-card__list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.auth-info-card__actions {
    justify-content: flex-start;
}

.auth-info-card__actions .button-link {
    flex: 0 1 auto;
}

.user-orientation-card .button-link {
    justify-self: start;
}

.user-orientation--logged .button-link {
    border: 1px solid rgba(255, 106, 0, 0.18);
}

.user-orientation__grid--logged {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.checkout-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.checkout-steps__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(152, 177, 208, 0.16);
    background: rgba(5, 10, 20, 0.4);
}

.checkout-steps__number {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: #eff6ff;
}

.checkout-steps__label {
    color: #f6f9ff;
    font-weight: 600;
}

.checkout-steps__item--complete {
    border-color: rgba(114, 202, 156, 0.24);
    background: rgba(25, 52, 42, 0.42);
}

.checkout-steps__item--complete .checkout-steps__number {
    background: rgba(114, 202, 156, 0.22);
    color: #dff8ea;
}

.checkout-steps__item--current {
    border-color: rgba(137, 187, 255, 0.36);
    background: rgba(22, 41, 71, 0.52);
    box-shadow: inset 0 0 0 1px rgba(137, 187, 255, 0.08);
}

.checkout-steps__item--current .checkout-steps__number {
    background: rgba(137, 187, 255, 0.24);
}

.checkout-steps__item--pending {
    opacity: 0.78;
}

@media (min-width: 768px) {
    .user-orientation__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .checkout-steps__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .checkout-steps__item {
        align-items: flex-start;
        flex-direction: column;
        min-height: 118px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .user-orientation *,
    .checkout-steps * {
        animation: none !important;
        transition: none !important;
    }
}
