/* --- Showcase Architecture --- */
.app-showcase-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* --- Device Mockup Depth --- */
.device-mockup-stack {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: -40px; /* Slight overlap */
    margin-bottom: -60px; /* Overlap with marquee */
}

.device { position: relative; border-radius: 40px; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.1); }
.device.center { width: 320px; z-index: 10; transform: scale(1.1); }
.device.side { width: 260px; z-index: 5; opacity: 0.9; }
.device.left { transform: rotate(-5deg) translateX(40px); }
.device.right { transform: rotate(5deg) translateX(-40px); }
.device img { width: 100%; height: auto; display: block; }

 
/* --- Seamless Marquee Engine --- */
.feature-marquee-bar {
    width: 100%;
    background: #334155; /* Solid dark slate to match your build */
    height: 64px;
    overflow: hidden; /* Physically removes the scrollbar */
    display: flex;
    z-index: 12;
    border-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    align-items: center;
    position: relative;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 80px; /* Wide spacing from design */
    width: max-content;
    animation: coraInfiniteScroll 10s linear infinite; /* Enable auto-motion */
}

/* Loop Logic: Moves exactly half-width (the second set) */
@keyframes coraInfiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* --- Item Precision --- */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Ensure Icons & Text share center line */
.m-icon {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #cbd5e1;
}

.marquee-item span { margin: 0 !important; line-height: 1; }