/* Promo video: trái = nội dung trực quan, phải = slogan */
.promo-embed #stage-wrap {
    position: relative;
    inset: auto;
    display: block;
    background: transparent;
    width: 100%;
    height: 100%;
}
.promo-embed #stage {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 16 / 9;
}
.promo-embed body {
    overflow: hidden;
    background: #f8fafc;
}
.promo-embed #hud,
.promo-embed #rec-hint {
    display: none !important;
}

#stage .scene {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(0.5rem, 2vw, 1.25rem);
    align-items: center;
    justify-items: stretch;
    text-align: left;
    padding: clamp(0.75rem, 2.5vw, 1.5rem) clamp(0.75rem, 2vw, 1.25rem);
}
.scene-visual {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.scene-slogan {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(0.5rem, 1.5vw, 1rem);
    border-left: 3px solid rgba(79, 70, 229, 0.2);
    padding-left: clamp(0.75rem, 2vw, 1.25rem);
}
.scene-dark .scene-slogan {
    border-left-color: rgba(255, 255, 255, 0.25);
}
.scene-slogan .eyebrow,
.scene-slogan .eyebrow.teal,
.scene-slogan .eyebrow.light {
    margin-bottom: 0.5rem;
}
.scene-slogan h1,
.scene-slogan h2 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: clamp(1rem, 2.2vw, 1.65rem);
}
.scene-slogan .sub {
    max-width: none;
    margin: 0.5rem 0 0;
    text-align: left;
    font-size: clamp(0.7rem, 1.35vw, 0.95rem);
}
.scene-slogan .logo-sm {
    margin-bottom: 0.5rem;
}
.scene-slogan .cta-btn {
    margin-top: 0.75rem;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    padding: 0.55rem 1.25rem;
}
.scene-visual .split,
.scene-visual .feat-list,
.scene-visual .dash-card,
.scene-visual .flow-diagram,
.scene-visual .pill-row {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}
.scene-visual .logo-row {
    margin-bottom: 0;
}
/* Cảnh chỉ slogan (không visual) */
.scene--slogan-only {
    grid-template-columns: 1fr;
}
.scene--slogan-only .scene-visual {
    display: none;
}
.scene--slogan-only .scene-slogan {
    border-left: none;
    text-align: center;
    align-items: center;
}
.scene--slogan-only .scene-slogan h1,
.scene--slogan-only .scene-slogan h2,
.scene--slogan-only .scene-slogan .sub {
    text-align: center;
}

@media (max-width: 720px) {
    #stage .scene {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .scene-slogan {
        border-left: none;
        border-top: 3px solid rgba(79, 70, 229, 0.15);
        padding-left: 0;
        padding-top: 0.75rem;
        order: -1;
    }
}
