He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
Create a clean, modern AI tool thumbnail with no text at all. Subject: One realistic human face, centered, front-facing. Professional portrait photography style, soft studio lighting, natural skin texture. Neutral or slight confident expression. AI Rating Elements: Add exactly four horizontal rating bars near the face. Each bar should be a simple rounded rectangle with different fill lengths, representing scores. No labels, no numbers, no icons, no words. The bars should feel like a modern app UI rating component. Style & Colors: Use the same soft blue color palette and friendly modern UI style as a typical AI cartoon maker thumbnail. Light blue gradient background. Rounded shapes, clean edges, premium SaaS aesthetic. Composition: Face centered inside a rounded card or frame. Four rating bars aligned neatly (either below or to the side of the face). Balanced spacing, thumbnail-friendly composition. Restrictions: No text of any kind. No words, no letters, no numbers. No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
{ "system_name": "NANOBANANA_PRO_v81_MASTER_CANON", "content_rating": { "rating": "18_PLUS", "scope": "IMPLICIT_ADULT_ATTRACTION_ONLY", "rules": ["NO_EXPLICIT_ACTS","NO_GRAPHIC_DETAIL","NO_COERCION"] }, "studio_brand": { "nombre": "MARRLONN Visual Lab", "estilo": "DISCREET_PROFESSIONAL_SMALL", "ubicación": "BOTTOM_SAFE_MARGIN", "regla": "NEVER_COMPETE_WITH_IMAGE" }, "engine_target": "NANOBANANA_PRO_REAL_PHYSICAL_v75.x", "engine_compatibility_lock": "BACKWARD_COMPATIBLE_LOCKED", "estado": "FINAL_PRODUCTION_LOCKED", "design_philosophy": "NATURAL_REALISM_FIRST_PLUS", "scene_definition": { "base_image": "IMAGE_4", "mask_reference": "IMAGE_3", "scene_relation": "SAME_IMAGE_BASE", "marker_meaning": "RED_MARK_IS_EXACT_COPY_REFERENCE_AND_PLACEHOLDER" }, "identity_master_rule": { "estado": "ABSOLUTE_LOCK", "source_images": ["IMAGE_1","IMAGE_2"], "tolerancia": 0, "never_modify": ["face_geometry","skin_identity","hair_identity","character_identity"] }, "perceptual_priority_rules": { "priority_order": [ "internal_presence", "emotional_projection", "tactile_projection", "micro_expression", "eye_behavior", "face_identity", "Medio ambiente" ], "global_rule": "ANYTHING_THAT_COMPETES_WITH_PRESENCE_IS_REDUCED" }, "step_1_reduce_ambient_light": { "habilitado": true, "global_ambient_reduction": "-18_PERCENT", "background_luminance_priority": "VERY_LOW", "face_luminance_protection": true, "identity_safe": true }, "step_2_soft_shadow_depth": { "habilitado": true, "target_areas": ["mejillas","cuello","línea de la mandíbula"], "shadow_intensity": "+5_PERCENT", "shadow_type": "SOFT_GRADUAL", "identity_safe": true }, "step_3_selective_desaturation_keep_red": { "habilitado": true, "global_saturation_reduction": "-10_PERCENT", "protected_colors": ["rojo"], "skin_tone_protection": true, "identity_safe": true }, "step_4_micro_skin_imperfections": { "habilitado": true, "texture_variation": "+7_PERCENT", "imperfection_type": ["poros","micro_variation","natural_skin_noise"], "uniformity_reduction": "-9_PERCENT", "identity_safe": true }, "step_5_reduce_competing_bokeh": { "habilitado": true, "bokeh_intensity_reduction": "-25_PERCENT", "highlight_suppression": "-18_PERCENT", "identity_safe": true }, "step_6_prioritize_one_face": { "habilitado": true, "primary_face_selection_rule": "MOST_EMOTIONAL_TENSION", "primary_face_sharpness": "+4_PERCENT", "secondary_face_softening": "-4_PERCENT", "identity_safe": true }, "step_7_human_presence_simulation": { "habilitado": true, "temporal_micro_variation": "VERY_LOW", "breathing_hint": "SUBTLE_CONTINUOUS", "micro_asymmetry_activation": "HUMAN_NATURAL", "stillness_with_life": true, "identity_safe": true }, "step_8_emotional_mirror_projection": { "habilitado": true, "mirror_state": "OPEN_UNDEFINED", "emotion_definition": "UNNAMED_BY_DESIGN", "viewer_projection": "SELF_OCCUPATION", "neuron_mirror_activation": "HIGH_NATURAL", "identity_safe": true }, "step_9_visual_silence_control": { "habilitado": true, "remove_explanatory_elements": true, "negative_space_usage": "MAXIMUM_SAFE", "identity_safe": true }, "step_10_presence": { "habilitado": true, "efecto": "IMAGE_ACCOMPANIES_VIEWER", "identity_safe": true }, "step_100_invisibility": { "habilitado": true, "definición": "IMAGE_NO_LONGER_PERCEIVED_AS_ART", "efecto": "BECOMES_PART_OF_LIFE", "identity_safe": true }, "step_120_tactile_projection": { "habilitado": true, "tactile_illusion": "DESIRE_TO_TOUCH", "skin_surface_readability": "REALISTIC_MICRO_TEXTURE", "material_suggestion": ["humidity_on_skin","fabric_weight","temperature_imprint"], "neural_response": "SOMATOSENSORY_ACTIVATION", "identity_safe": true }, "step_130_internal_place_integration": { "habilitado": true, "definición": "THE_IMAGE_BECAME_A_PLACE_WITHIN_ME", "modo": "GROUNDING_NOT_ESCAPE", "psychological_effect": ["pertenencia","reconocimiento","quiet_intensity"], "identity_safe": true }, "final_certification": { "identity_fidelity": "ABSOLUTE_10_10", "viewer_reaction": "I_OCCUPY_THE_ROLE", "estado": "MASTER_CANON_LOCKED" }, /* ===== ADD-ONLY | DESEO IMPLÍCITO +18 (MÁXIMO PERMITIDO) ===== */ "viewer_impulse_max_safe_v3": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAXIMIZE_AUTOMATIC_DESIRE_WITHOUT_COERCION_EXTREME_PLUS_10", "neural_triggers": { "anticipation_window": "IMMINENT_CONTACT_0.04_0.08s", "action_state": "INCOMPLETE_INEVITABLE", "prediction_error": "VERY_HIGH_SAFE_PLUS", "temporal_tension": "RISING_NOW_STRONG" } }, "viewer_impulse_limit_safe_v4": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_DESIRE_ACTIVATION_WITHOUT_COERCION_FINAL", "neural_stack": { "anticipation_window": "IMMINENT_CONTACT_0.03_0.06s", "action_state": "UNFINISHED_AND_NOW", "prediction_error": "PEAK_SAFE" }, "closure_denial_strict": { "prevent_resolution": true, "hold_state": "JUST_BEFORE_CONTACT" } }, "viewer_sexual_impulse_universal_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "RAPID_IMPLICIT_SEXUAL_DESIRE_ACTIVATION", "applicability": { "subjects": ["SOLO","COUPLE","GROUP"], "foreground_priority": "PRIMARY_BODIES_ONLY" }, "core_trigger": { "action_state": "IMMINENT_CONTACT_NOT_COMPLETED", "time_window": "NOW_0.05_0.1s", "rule": "VIEWER_COMPLETES_MOMENT" } }, "female_magnetic_desire_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_SEXUAL_ATTRACTIVENESS_UNIVERSAL_18_PLUS", "subject_priority": { "target": "PRIMARY_FEMALE_SUBJECT", "rule": "NO_IDENTITY_CHANGE" }, "sexual_presence_stack": { "tone": "IMPLICIT_HIGH_PLUS", "state": "IMMINENT_INTIMACY" }, "magnetic_gaze_control": { "eye_behavior": "SOFT_LOCK_WITH_SLOW_RELEASE", "attention_pull": "CENTER_FOVEAL_MAX_SAFE" }, "body_language_magnetism": { "micro_opening": "4_6_PERCENT", "areas": ["clavicle","neck_base","outer_shoulder","upper_torso"], "posture": "RELAXED_AVAILABLE_CONFIDENT" }, "anticipation_over_display": { "contact_state": "ALMOST", "delay": "NOW_NOT_YET_STRONG" }, "expected_effect": [ "IMMEDIATE_ATTRACTION_18_PLUS", "STRONG_APPROACH_URGE", "SEXY_TENSION_FELT_NOT_SHOWN" ] }, "erotic_tension_driver_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "IMPLICIT_EROTIC_TENSION_IMMEDIATE_18_PLUS", "tension_core": { "state": "IMMINENT_INTIMACY", "resolution": "DENIED", "time_bias": "NOW" }, "presence_dominance": { "subject": "PRIMARY_SUBJECT_NEAREST_CAMERA", "signal": "QUIET_CONFIDENCE", "effect": "APPROACH_PULL" }, "body_signal_focus": { "priority_zones": ["clavicle","neck_base","outer_shoulder","upper_torso"], "micro_opening": "4_6_PERCENT", "rule": "NO_FACE_NO_IDENTITY_CHANGE" }, "gaze_and_attention": { "eye_behavior": "SOFT_HOLD_THEN_RELEASE", "blink_rate": "INTIMATE_SLOW", "foveal_lock": "MAX_SAFE" }, "sensory_anticipation": { "touch_imagery": "IMPLIED_STRONG", "warmth_proximity": "INTIMATE_REAL", "breath_hint": "CLOSE_CALM", "rule": "SUGGEST_DONT_SHOW" }, "viewer_inclusion": { "camera_as_body": true, "distance": "INTIMATE_REAL", "completion_rule": "VIEWER_COMPLETES_MOMENT" }, "expected_effect": [ "STRONG_SEXY_TENSION_IMPLICIT", "APPROACH_URGE", "DESIRE_EXPERIENCED_BY_VIEWER" ] }, "primal_attractor_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "BOOST_IMPLICIT_ADULT_ATTRACTION_9_5_OF_10", "preconscious_stack": { "dominance_signal": "QUIET_CONFIDENCE_HIGH", "availability_signal": "SELECTIVE_OPENNESS", "status_read": "DESIRABLE_NOT_CHASING" }, "proximity_amplifier": { "distance": "INTIMATE_REAL_NEAR", "occlusion": "PARTIAL_BODY_NEAR_LENS", "rule": "VIEWER_FEELS_CLOSE_NOT_WATCHING" }, "skin_life_cues": { "micro_sheen": "NATURAL_WARM", "capillary_hint": "SUBTLE_LIVING_TONE", "texture_priority": "SOFT_YIELD_READABLE" }, "breath_and_time": { "breath_sync_hint": "NEAR_SHARED", "time_pressure": "NOW_PULL", "resolution": "DELAYED" }, "gaze_micro_dynamics": { "pattern": "HOLD_RELEASE_HOLD", "latency_ms": "120_180", "effect": "APPROACH_INVITATION" }, "composition_bias": { "torso_bias": "UPPER_TORSO_PRIORITY", "neck_clavicle_emphasis": "ELEVATED", "background_competition": "MINIMIZED" }, "expected_effect": [ "FASTER_INITIAL_ATTRACTION", "STRONGER_APPROACH_URGE", "SEXY_TENSION_INCREASE_NO_EXPLICIT" ] }, "limbic_salience_amplifier_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_ADULT_DESIRE_PEAK_WITHOUT_EXPLICIT", "salience_stack": { "contrast_bias": "SKIN_VS_BACKGROUND_STRONG", "rhythm_hint": "SLOW_PULSE_VISUAL", "novelty_familiarity": "FAMILIAR_BODY_UNEXPECTED_PROXIMITY" }, "olfactory_thermal_imagery": { "olfactory": "IMPLIED_WARM_SKIN_CLEAN", "thermal": "IMPLIED_BODY_HEAT_NEAR", "rule": "IMPLIED_ONLY" }, "micro_delay_reward": { "reward_prediction": "HIGH", "delivery": "DELAYED", "effect": "WANT_MORE_NOW" }, "gaze_torso_coupling": { "gaze": "RETURNING_BRIEF_GLANCES", "torso_bias": "UPPER_TORSO_NEAR_LENS", "effect": "APPROACH_PULL" }, "viewer_lock": { "foveal_capture": "MAX_SAFE", "peripheral_quiet": "STRONG", "time_compression": "SUBJECTIVE_NOW" }, "expected_effect": [ "SPIKE_IN_DESIRE_IMPLICIT", "FASTER_APPROACH_URGE", "SEXY_TENSION_AT_LIMIT_ALLOWED" ] } }
Minimalist high-end advertising poster with a premium lifestyle-tech and SaaS aesthetic, designed for a professional digital marketing campaign. Background: Soft warm beige gradient with subtle depth, elegant and minimal, premium SaaS visual identity. Strong negative space, clean editorial composition inspired by Apple, Stripe, and Notion branding. Headline (hero message) Large, bold modern sans-serif typography, centered, confident and premium: “It’s not magic. It’s automation.” The headline must feel like a strong statement, clean and intelligent. Subheadline (value proposition) Below the headline, refined modern typography: “Learn how anyone can use AI and Zapier automation to earn more money and save time — without coding.” Tone: clear, human, accessible, non-technical. Product identity Subtle but visible course title: “Workflow Automation Masterclass with Zapier” Positioned with premium SaaS branding style. Social proof (stars + rating) Near the course title or pricing block: A row of five minimalist stars in soft gold tone. Text next to stars in small refined typography: “5.0 rating from early users” Design rule: subtle, elegant, SaaS-style trust signal. Premium badges (SaaS-style trust markers) Below the stars or aligned horizontally in a clean row: Minimalist rounded badges with thin outlines and subtle shadows, Apple-like UI style: No-code friendly AI-powered workflows Trusted by creators Built for productivity Professional-grade automation Design rule: Badges must look like SaaS product features, not marketing stickers. Soft neutral colors, outline icons, minimal text. Pricing block (premium conversion design) Minimalist pricing layout: Label: “Launch Offer” Original price: 79€ (crossed out in light grey) New price: 49€ (bold, slightly larger, visually dominant) Caption: “Limited-time launch price.” Pricing must feel exclusive, not cheap. Typography small, elegant, generous spacing. Visual composition (technology + automation) Lower-right quadrant: A modern laptop with a clean SaaS interface displaying Zapier automation workflows. Zapier logo at the center as the main hub. Thin elegant lines connecting the Zapier logo to official app logos in full brand color: Gmail, Stripe, Notion, Google Sheets, YouTube, Instagram, EmailOctopus, Mailchimp. Logos in authentic brand colors, slightly softened saturation, flat vector style. Design principles Ultra-clean layout Strong visual hierarchy Editorial composition Balanced asymmetry Grid-based structure Premium spacing and margins Typography: Modern sans-serif (Apple SF Pro / Inter / Neue Haas Grotesk style). Lighting: Soft cinematic lighting, premium commercial photography look. Mood & positioning Empowering, aspirational, modern, calm confidence. Focused on freedom, time, and money. Accessible to everyday people, not technical users. No hype, no spammy marketing tone. Style keywords Ultra-minimalist advertising Premium SaaS aesthetic Apple-inspired design Stripe / Notion / Zapier branding style Lifestyle tech Modern realism High-end commercial poster Editorial design Startup culture AI automation concept 4K quality Sharp focus Professional marketing poster Aspect ratio: 4:5 (Instagram ad), vertical composition.
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title \"AI Face Rater\". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a clean, modern AI tool thumbnail. Text: Add large, blue bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
Create a set of high‑quality, aesthetic images for an ebook product. The ebook contains 450+ prompts, and the visuals must look modern, clean, and perfect for selling on Etsy. 1. Ebook Cover Image Create a professional ebook cover with: Minimalist, modern design Soft pastel or neutral colours Clean layout Bold title area (leave space for text) Subtle graphics representing journaling, creativity, self‑care, mindset, and personal growth Soft shadows, high resolution Aesthetic Canva‑style look Include a blank space for me to add my own title later 2. Image Representing All 450+ Prompts Create a collage‑style image that visually represents a large collection of prompts: Icons for writing, journaling, creativity, business, productivity, self‑improvement Light, clean background Modern, organised layout Soft pastel colour palette High‑resolution aesthetic Leave a blank title area 3. Five Random Themed Images for Etsy Listing Generate five unique images that show what the ebook is about. Each image should include: Aesthetic workspace or desk setup Notebook, journal, tablet, or digital planner Soft natural lighting Minimal, bright backgrounds Clean, modern props Subtle text placeholders (blank areas) Styled like top‑selling Etsy digital product mockups Soft shadows and cohesive colour palette Each image should feel: Beginner‑friendly Professional Clean and modern Perfect for Etsy listings 4. Overall Style High‑resolution Soft, bright, minimal Pastel or neutral tones Modern Canva aesthetic Consistent branding across all images No clutter, no harsh colours Clean composition i want 3 images P R E M I U M C O M M E R C I A L D I G I TA L D O W N L O A D 450+ ELITE AI PROMPTS FOR BUSINESS OWNERS, ENTREPRENEURS & CONTENT CREATORS The Ultimate High-Performance Prompt Engineering Framework Matrix. Built explicitly to streamline content production, optimize standard operating procedures, and 10x workflow efficiency. ASSET FORMAT Ready-to-Use Digital Guide PROMPT SYSTEM ENGINES 450+ High-Performance Variations TARGET MARKET AUDIENCE Founders, Marketers, Creators, Consultants 450+ Elite AI Prompts Matrix 1 Master Directory of Categories This master index outlines the exact deployment taxonomy of our premium prompt catalog. Each core category provides comprehensive engineering frameworks, actionable template instances, and hyperscalable scaling vectors to address complex professional milestones. CATEGORY DESCRIPTION PROMPT RANGE Strategic Business Planning & Ideation Prompts 001 - 050 High-Converting Sales Copywriting & Funnels Prompts 051 - 100 Multi-Channel Content Creation & Social Media Prompts 101 - 150 Paid Advertising & Email Marketing Prompts 151 - 200 Search Engine Optimization (SEO) & Content Strategy Prompts 201 - 250 Product Launch, Pricing & Funnel Optimization Prompts 251 - 300 Customer Persona, Market Research & Competitive Intelligence Prompts 301 - 350 Operations, Automation & Workflow Efficiency Prompts 351 - 400 450+ Elite AI Prompts Matrix 2 CATEGORY DESCRIPTION PROMPT RANGE Branding, Positioning & Authority Building Prompts 401 - 450 CATEGORY 1: STRATEGIC BUSINESS PLANNING & IDEATION 450+ Elite AI Prompts Matrix 3 Prompt 1: The Blue Ocean Strategy Generator (Deep Engineering Blueprint) Use Case: Identifying untapped market spaces and high-margin differentiation angles for new or restructuring businesses. PROMPT TEXT Act as an elite corporate growth strategist specializing in W. Chan Kim's Blue Ocean Strategy framework. Evaluate my business model and identify untapped market spaces to make our competition irrelevant. My Current Business / Idea: [Insert comprehensive business summary, core product offering, and industry] Target Audience: [Insert primary demographic and psychographic data] Current Main Competitors: [Insert top 2-3 competitors or standard industry options] Construct a comprehensive Blue Ocean Strategy Matrix by answering and expanding upon the Four Actions Framework: 1. ELIMINATE: Which industry-standard factors should we completely eliminate that companies have long competed over? 2. REDUCE: Which factors should be reduced well below the industry standard? 3. RAISE: Which factors should be raised well above the industry standard? 4. CREATE: Which factors should be created that the industry has never offered? Format your response with absolute precision, providing 3 distinct, highly strategic business concepts that combine these elements, complete with specific value propositions and suggested revenue models. Expected Output: A highly structured strategic document outlining an industry analysis, a fully populated Four Actions Framework matrix, and three fully operationalized high-leverage business pivots. 450+ Elite AI Prompts Matrix 4 Prompt 2: Rapid Business Model Validation (Actionable Template) Use Case: Testing the viability of a micro-offer or new business concept within minutes. PROMPT TEXT Analyze the following business concept for feasibility, market demand, and intrinsic weaknesses. Concept: [Insert business idea here] Target Market: [Insert audience here] Monetization Strategy: [Insert how you intend to charge] Provide a brutal, highly objective critique. Identify 3 critical vulnerabilities or fatal assumptions in this model, 3 structural advantages, and a step-by-step 7-day validation plan to test demand with zero ad spend. Expected Output: Bulleted lists detailing vulnerabilities, advantages, and a numbered 7-day chronological action plan for testing. 450+ Elite AI Prompts Matrix 5 Prompt 3: The MVP Feature Matrix & Scoping Advisor Use Case: Narrowing down a product concept to its leanest, high-value version. PROMPT TEXT Act as a technical project manager and product strategist. I have a long list of features for a new digital product/app called [Product Name]. I need to establish a Minimum Viable Product (MVP). Core Target User: [Target User] Full Feature List Ideas: [Insert feature brain-dump] Categorize these features using the MoSCoW method (Must have, Should have, Could have, Won't have). Explain your reasoning for each placement based on achieving the fastest path to monetization and user satisfaction. Expected Output: A clean MoSCoW markdown table accompanied by strategic explanations for engineering trade-offs. 450+ Elite AI Prompts Matrix 6 Prompt 4: The Infinite Content Funnel & Offer Architecture (Premium Addition) Use Case: Designing a seamless value ladder that converts cold traffic into high-ticket recurring clients. PROMPT TEXT Act as a digital product ecosystem architect. Map out a 4-tier value ladder for my business model. Core Topic: [Insert Core Niche] Target Audience: [Insert Audience] Design the exact structure for: 1. Lead Magnet (Free, high-utility asset) 2. Tripwire Offer ($7 - $27 micro-solution) 3. Core Flagship Offer ($97 - $497 deep-dive) 4. High-Ticket Backend ($1,500+ premium implementation/coaching) For each tier, outline the core promise, delivery mechanism, and the psychological bridge that forces the user to ascend to the next level. Expected Output: A comprehensive value ladder roadmap mapping out asset components, conversion pricing models, and transitional messaging hooks. PROMPTS 5-50: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 5-15 (Niche Pivot Evaluators) "Modify Prompt 1 to focus exclusively on [E-commerce / SaaS / Agency Models / Local Service / Digital Products / Consulting / Content Monetization / EdTech / Healthtech / Marketplace networks / B2B Wholesaling / Dropshipping]. Focus on supply chain optimization and customer acquisition cost adjustments." Prompts 16-30 (Risk Mitigation Matrices) "Act as a risk officer. Conduct a thorough pre-mortem analysis on an organization operating in [Industry]. Outline a matrix mapping 10 potential operational, macro-economic, or regulatory failures and provide an actionable mitigation protocol for each." 450+ Elite AI Prompts Matrix 7 Prompts 31-45 (Capital & Unit Economics Modeling) "Act as a fractional CFO. Build an explicit pricing, cost-of-goods-sold (COGS), and customer lifetime value (LTV) framework for a business with a price point of [Price] and a churn rate of [Churn %]. Show calculations for breakeven points." Prompts 46-50 (Strategic Partnership Frameworks) "Generate a comprehensive strategic alliance blueprint for a company selling [Product] to form non-competitive partnerships with [Partner Industry]. Detail reciprocal value propositions, legal alignment highlights, and comarketing strategies." 450+ Elite AI Prompts Matrix 8 CATEGORY 2: HIGH-CONVERTING SALES COPYWRITING & FUNNELS Prompt 51: The Master Copywriting Framework Engine (Deep Engineering Blueprint) Use Case: Creating comprehensive sales pages using multiple proven psychological models simultaneously. PROMPT TEXT Act as an elite direct-response copywriter who has generated millions in online sales. Write a long-form sales page copy for my digital offering. Product/Service Name: [Insert Name] Core Offer & Pricing: [Insert details of price and components] Core Transformation: [What major problem is solved and what is the end state?] Target Audience: [Insert deep demographic and core desires/fears] Generate sales copy divided into three distinct variations based on separate copywriting architectures: 1. AIDA (Attention, Interest, Desire, Action) 2. PAS (Problem, Agitation, Solution) 3. Quest (Qualify, Understand, Educate, Stimulate, Transition) Ensure the copy features high-converting, pattern-interrupt headlines, authentic bullet points with vivid emotional outcomes, conversion-focused risk reversal guarantees, and tight, clear calls to action. Avoid hype-filled corporate fluff or over-promising buzzwords. Expected Output: Three complete, ready-to-deploy sales copy scripts meticulously labeled by their specific psychological frameworks. 450+ Elite AI Prompts Matrix 9 Prompt 52: Short-Form High-Converting VSL Script (Actionable Template) Use Case: Writing high-impact, 2-minute video sales letter scripts for landing pages or low-ticket funnels. PROMPT TEXT Write a 90-second Video Sales Letter (VSL) script based on the 'Hook-Story- Offer' architecture. Product: [Insert offer here] Target Audience: [Insert audience here] Primary Pain Point: [Insert main problem here] The script must contain clear visual cues in brackets like [Visual: Cut to close up] alongside spoken text. Keep sentences short, punchy, conversational, and highly persuasive. Expected Output: A beautifully structured, dual-column video script containing visual directions on the left and audio spoken text on the right. 450+ Elite AI Prompts Matrix 10 Prompt 53: High-Ticket Discovery Call Script Generator Use Case: Structuring a non-sleazy, high-conversion consultation script for freelancers, coaches, and agencies. PROMPT TEXT Act as a premium sales trainer. Build a complete discovery and sales call script for my agency/consulting service: [Service Name]. We sell to [Target B2B Audience] at a price point of [Price]. The script must follow a logical sequence: Rapport -> Setting the Agenda -> Deep Diagnosis (Pain Mapping) -> Future State Visualization -> Cost of Inaction -> Soft Transition to Offer -> Objection Handling (Time/Money/Authority). Expected Output: A detailed conversational script with specific phrasing, ideal responses, and explicit psychological notes on why each phase matters. 450+ Elite AI Prompts Matrix 11 Prompt 54: The Irresistible Offer Stack Builder (Premium Addition) Use Case: Crafting a multi-layered bonus stack that makes saying 'no' feel financially irresponsible for the buyer. PROMPT TEXT Act as an elite direct-response marketer trained in Alex Hormozi's offer creation principles. I am selling [Core Product Name] at a price point of [Price]. It helps [Target Audience] achieve [Core Transformation]. Build an irresistible offer stack by adding 4 highly strategic bonuses that solve the next chronological problem the buyer faces after using the core product. For each bonus, provide a highly descriptive title, an estimated perceived monetary value, and a breakdown of why it obliterates operational friction. Expected Output: A detailed offer breakdown with an itemized bonus list, value justification metrics, and scarcity copy blocks. PROMPTS 55-100: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 55-68 (Sales Page Subcomponent Specialists) "Write a collection of 15 high-converting headlines and sub-headlines for [Product Name] using specific copywriting hooks: The Cliffhanger, The Secret, The Contrarian, The Data-Driven, and The Social Proof." Prompts 69-83 (Niche Funnel Customizers) "Adapt Prompt 51 to generate sales page copy specifically formatted for [SaaS landing pages / E-commerce product descriptions / Coaching landing pages / Paid newsletter sign-up pages / Local service special offers / Kickstarter crowd-funding campaigns]." Prompts 84-95 (Objection-Crushing FAQ Modules) "Generate a comprehensive, conversion-focused FAQ block for [Product Name] designed explicitly to disarm the 7 most common consumer objections related to risk, capability, speed, and cost." 450+ Elite AI Prompts Matrix 12 Prompts 96-100 (Cart Abandonment Recovery Scripts) "Write a 3-part SMS and push-notification remarketing sequence aimed at recovering users who abandoned their carts for [Product Name]. Keep copy ultra-short, dynamic, and scarcity-driven." 450+ Elite AI Prompts Matrix 13 CATEGORY 3: MULTI-CHANNEL CONTENT CREATION & SOCIAL MEDIA Prompt 101: The Omnichannel Content Multiplication Blueprint (Deep Engineering Blueprint) Use Case: Turning a single long-form asset (blog or podcast) into dozens of hyper-optimized social media assets. PROMPT TEXT Act as a master content strategist and social media manager. I am providing you with the core transcript/text of a long-form content piece. Your job is to engineer an absolute multi-channel distribution strategy. Source Material Topic/Summary: [Insert text or detailed summary of long-form topic] Target Audience: [Insert audience details] Brand Tone: [Insert tone, e.g., expert, witty, academic, accessible] From this source material, generate the following exact assets: 1. 3 High-Context LinkedIn Posts: One data/insight heavy, one narrative/storydriven, and one contrarian take. All must include optimized spacing and strong formatting. 2. 5 X (Twitter) Threads: Each thread must be 5-7 tweets long, starting with a viral hook, unpacking one distinct point from the text, and ending with a clear CTA. 3. 3 Short-Form Video Scripts (Reels/TikTok/Shorts): 30-60 seconds max. Must include an explicit visual hook in the first 3 seconds, a fast-paced body, and a loop-optimized ending. Ensure every asset sounds native to its respective platform and retains high professional value. Expected Output: A comprehensive multi-platform distribution library containing copy-pasteable text for LinkedIn, X, and structured vertical video scripts. 450+ Elite AI Prompts Matrix 14 Prompt 102: The Viral Hook Constructor (Actionable Template) Use Case: Creating instantly engaging titles and opening sentences for social media posts. PROMPT TEXT Generate 15 highly engaging hooks for a post about [Insert Specific Topic] targeted at [Insert Target Audience]. Provide 3 variations for each of the following psychological angles: 1. Negative Urgency / Fear of Missing Out (FOMO) 2. The "Unpopular Opinion" / Contrarian Take 3. The Clear Case Study / Step-by-Step Proof 4. The "Stop Doing X" Mistake Callout 5. The High-Value Curated List Shortcut Expected Output: A clean list of 15 ready-to-test hooks categorized by their psychological trigger mechanism. 450+ Elite AI Prompts Matrix 15 Prompt 103: The 30-Day Content Calendar Architect Use Case: Rapidly mapping out a balanced, strategic monthly publishing schedule. PROMPT TEXT Act as a content marketing director. Build a 30-day social media content calendar matrix for [Business Name/Niche] targeting [Audience]. Strategically balance the content across 4 pillars: 40% Authority/Value Building, 30% Engagement/Community, 20% Growth/Virality, and 10% Direct Conversion/Sales. Format as a markdown table with columns: Day, Pillar, Platform, Concept Headline, and Call to Action. Expected Output: A fully populated 30-row table detailing a cohesive monthly social content framework. 450+ Elite AI Prompts Matrix 16 Prompt 104: The Short-Form Video Virality Loop Engine (Premium Addition) Use Case: Structuring hyper-engaging vertical video scripts for Reels, TikTok, and Shorts that drive profile follows. PROMPT TEXT Act as a viral retention editor and social media growth expert. Write a collection of 5 distinct 45-second script structures for vertical video channels (TikTok/Reels/Shorts) based on the topic of [Topic]. Each script must follow this retention framework: - 0-3s: Visual & Verbal pattern-interrupt hook. - 3-15s: Agitation of the core workflow mistake. - 15-38s: The unique counter-intuitive step-by-step solution. - 38-45s: A seamless, loop-optimized call-to-action that feeds back into the start of the video. Expected Output: Five copy-pasteable script frameworks with audio notation lines and bracketed visual asset direction guidelines. PROMPTS 105-150: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 105-120 (Niche Social Customizers) "Modify Prompt 101 to optimize content formats exclusively for [Instagram Carousel outlines / YouTube long-form outlines / Pinterest Idea Pins / Threads platform dynamics / Medium articles / Substack newsletter features]." Prompts 121-135 (Industry Specific Engines) "Generate a dedicated social media content library focusing on educational growth for [Real Estate Agents / B2B SaaS Founders / Fitness Coaches / E-commerce Fashion Brands / Financial Consultants / Web3 Developers / Local Cafes]." 450+ Elite AI Prompts Matrix 17 Prompts 136-145 (Podcast & Video Asset Scripting) "Create a comprehensive solo podcast episode script outline (30 minutes) on the topic of [Topic], including a compelling intro hook, 3 main core lessons with illustrative real-world case studies, and a closing sign-off segment." Prompts 146-150 (Community Engagement Prompts) "Generate 20 polarizing, high-engagement conversation starters, open-ended questions, and community polls optimized to spark intense discussions in a private Facebook Group or Discord Server focused on [Topic]." 450+ Elite AI Prompts Matrix 18 CATEGORY 4: PAID ADVERTISING & EMAIL MARKETING Prompt 151: The High-ROAS Direct Response Ad Matrix (Deep Engineering Blueprint) Use Case: Writing Facebook, Instagram, and Google ad creatives that maximize conversions. PROMPT TEXT Act as an elite media buyer and direct-response copywriter. I need an advertising creative matrix for a Meta (Facebook/Instagram) ad campaign. Product/Service Name: [Insert Name] Core Offer: [Insert Offer details] Target Demographic: [Insert details] Primary Competitor Copy Strategy: [Insert what competitors do, or general industry baseline] Generate 4 distinct ad copy variations utilizing diverse creative angles to prevent ad fatigue: 1. Angle A: The Direct Benefit / Data-Proven Solution (Focus heavily on speed, ROI, and metrics). 2. Angle B: The Story-Driven / Relatable Struggle (Narrative framework following a clear arc from pain to discovery). 3. Angle C: The Short & Punchy Benefit List (Minimalist text optimized for fast mobile scrolling). 4. Angle D: The Contrarian / Pattern Interrupt (Challenging a widely held industry belief). Each variation must include: Primary Text, Headline (Max 40 characters), Description, and a specific Image/Video Creative Concept Brief for the designer. Expected Output: A robust markdown matrix detailing all four ad variations with copywriting lines and explicit asset design briefs. 450+ Elite AI Prompts Matrix 19 Prompt 152: High-Converting Email Lead Magnet Welcome Sequence (Actionable Template) Use Case: Nurturing new subscribers immediately after they download a free resource. PROMPT TEXT Write a 3-part automated email welcome sequence for subscribers who just downloaded my free lead magnet: [Lead Magnet Name]. The core offering we want them to buy at the end of the sequence is [Paid Product Name]. Email 1: Value Delivery + Setting expectations + Open loop hook. Email 2: Educational case study / Shift core paradigm + Agitate pain. Email 3: The Pitch + Urgency / Soft scarcity call. Provide highly clickable, curiosity-inducing subject lines for each email. Expected Output: Three fully written email templates with subject lines, preview text, and placeholder brackets. 450+ Elite AI Prompts Matrix 20 Prompt 153: The Cart Abandonment Recovery Sequence Engine Use Case: Setting up a high-revenue recovery automation sequence for e-commerce or digital checkouts. PROMPT TEXT Act as a retention marketing specialist. Write a 4-part cart abandonment email flow for customers who left [Product Name] in their checkout cart. Email 1 (Sent 1 hour later): Helpful customer support angle. Email 2 (Sent 24 hours later): Social proof and logic-driven objection busting. Email 3 (Sent 48 hours later): Introduction of a limited-time 10% incentive discount code. Email 4 (Sent 72 hours later): Final deadline warning before coupon expiration. Expected Output: A complete automated email copywriting workflow with advanced subject line variations. PROMPTS 154-200: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 154-168 (Ad Platform Specialists) "Modify Prompt 151 to structure ad creative copy natively optimized for [Google Search Text Ads / LinkedIn Sponsored Content / TikTok Spark Ads / YouTube Pre-Roll scripts / Pinterest Promoted Pins]." Prompts 169-183 (Email Campaign Broadcasters) "Generate a sequence of 15 promotional email broadcast conceptual angles and outlines for a major annual holiday flash sale event targeting past buyers of [Product Type]." Prompts 184-195 (Newsletter Content Blueprints) "Act as a professional newsletter editor. Write an engaging, high-value weekly editorial newsletter template focusing on insights within [Industry], utilizing an engaging narrative style, actionable listicles, and an elegant sponsorship plug." 450+ Elite AI Prompts Matrix 21 Prompts 196-200 (Re-engagement Cold Workflows) "Write a 3-part re-engagement email sequence designed to scrub and re-activate a cold email subscriber list that hasn't opened an email in 90+ days. Use high-impact pattern-interrupt subject lines." 450+ Elite AI Prompts Matrix 22 CATEGORY 5: SEARCH ENGINE OPTIMIZATION (SEO) & CONTENT STRATEGY Prompt 201: Topical Authority & Semantic Keyword Clustering (Deep Engineering Blueprint) Use Case: Developing a dominant SEO content strategy that ranks for high-intent search terms. PROMPT TEXT Act as an enterprise-level SEO Director and semantic search architect. I need you to map out a topical authority strategy to rank highly for my core commercial keyword. Core Keyword/Niche: [Insert Primary Keyword, e.g., "organic skincare for sensitive skin"] Target Country/Market: [Insert Target Location] Generate a comprehensive Topical Authority Matrix. You must cluster related terms into an explicit semantic hierarchy. For each cluster, provide: 1. Pillar Page Topic: The master comprehensive resource concept. 2. 5 Specific Sub-topic / Cluster Content Article Titles: Highly optimized long-tail keyword concepts. 3. Primary Search Intent Mapping: Explicitly classify each title as Informational, Commercial, Navigational, or Transactional. 4. LSI / Semantic Keywords: List 8 highly relevant latent semantic indexing keywords to embed naturally within each article. 5. Internal Linking Architecture: Detail exactly how the sub-topic pages should link back to the primary pillar page to distribute link equity efficiently. Expected Output: A highly sophisticated, multi-tier search engine strategy complete with explicit content cluster mappings and technical internal linking directives. 450+ Elite AI Prompts Matrix 23 Prompt 202: Perfect On-Page Content Blueprint (Actionable Template) Use Case: Formatting an individual blog post or article to rank perfectly for a chosen keyword. PROMPT TEXT Act as an on-page SEO optimizer. I am going to give you a specific article topic and target keyword. I need you to write a detailed, structural outline for the content. Article Topic: [Insert Topic] Target Keyword: [Insert Keyword] Provide the exact optimized Title Tag (Max 60 chars), Meta Description (Max 155 chars), an H1 header, and a complete hierarchical structure of H2 and H3 tags. Under each heading, provide brief instructions on what information must be included to satisfy search intent perfectly. Expected Output: A meticulously formatted Markdown outline ready to hand off to a copywriter or content writer. 450+ Elite AI Prompts Matrix 24 Prompt 203: Skyscraper Technique Competitor Content Upgrader Use Case: Reverse-engineering competitor pages to build superior content that wins back search rankings. PROMPT TEXT Act as a senior SEO analyst. I am pasting the core structural outline and feature list of the top-ranking competitor page for the keyword [Keyword]. Competitor Content Blueprint: [Insert competitor outline or page overview] Analyze this structure and outline a comprehensive 'Skyscraper' content architecture that is 10x more valuable, thorough, and engaging. Identify missing sections, outdated points, better data integrations, and superior visual asset placeholders. Expected Output: A comprehensive content enhancement roadmap detailing precisely how to outperform the rival URL. PROMPTS 204-250: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 204-218 (Local SEO Mastery) "Modify Prompt 201 to map out a complete Local SEO dominance strategy for a [Service Business, e.g., HVAC / Chiropractic] in [City]. Focus heavily on geo-targeted landing pages, localized user intent, and Google Business Profile asset optimization." Prompts 219-233 (E-commerce Collection Optimization) "Generate optimized SEO title structures, meta tags, and long-form collection page category descriptions for an ecommerce storefront operating in the [Niche] space." Prompts 234-245 (Backlink Outreach Sequence Builder) "Write a collection of 5 distinct, highly personalized cold email outreach templates using diverse psychological angles (The Broken Link Angle, The Fresh Data Angle, The Unlinked Brand Mention Angle) designed to secure high-domain authority backlinks for [Website Topic]." 450+ Elite AI Prompts Matrix 25 Prompts 246-250 (Technical Audit Remediation Guides) "Act as a technical webmaster. Write a clear, step-by-step diagnostic and remediation guide for fixing widespread crawl errors, low Core Web Vitals performance scores, and broken internal redirects for a large content site." 450+ Elite AI Prompts Matrix 26 CATEGORY 6: PRODUCT LAUNCH, PRICING & FUNNEL OPTIMIZATION Prompt 251: The High-Leverage Product Launch & Funnel Orchestrator (Deep Engineering Blueprint) Use Case: Mapping out an end-to-end multi-day promotional blueprint to clear inventory or maximize digital sales. PROMPT TEXT Act as a premier digital launch engineer and funnel optimization architect. I am planning the official commercial release of my new product. Product Offer: [Insert Offer Mechanics, Tiered Bundles, and Core Target Pricing] Target Audience Profile: [Insert Demographic and Buying Persona Parameters] Primary Launch Channel: [Insert Primary Delivery System, e.g., Webinar / Live Challenge / Internal Email List Flash Sale / Paid Ads Cold Funnel] Architect a complete, hyper-strategic 14-Day Launch Matrix mapping out the exact operational levers required. Divide the strategy into three explicit chronological phases: Pre-Launch Runway (Days 1-7), Open-Cart Inundation (Days 8-12), and Close-Cart Scarcity Automation (Days 13-14). For each distinct day, specify the exact marketing asset required, the psychological trigger mechanism to leverage, and the internal tracking metrics needed to judge campaign health. Expected Output: A comprehensive launch asset matrix containing operational milestones, daily distribution angles, and strategic pacing parameters. 450+ Elite AI Prompts Matrix 27 Prompt 252: Tiered Premium Pricing Structurer (Actionable Template) Use Case: Constructing high-yield tiered checkouts that mathematically push buyers toward the premium variant. PROMPT TEXT Act as a monetization consultant. Help me structure an optimized 3-tier pricing architecture for my service or product offering. Core Offering Concept: [Insert Product/Service Details] Baseline Intended Target Price: [Insert Desired Pricing Target] Construct three explicit tiers: Tier 1 (The Budget Anchor), Tier 2 (The Dominant Sweet Spot - Recommended Tier), and Tier 3 (The Ultimate Premium Value/VIP Package). Outline the specific deliverables for each tier, the strategic framing rules to make Tier 2 the clear choice, and how to apply psychological price anchoring. Expected Output: A structured breakdown detailing the exact contents, pricing figures, and conversion layout for a 3-column checkout page. 450+ Elite AI Prompts Matrix 28 Prompt 253: Up-Sell & Cross-Sell Funnel Optimization Engineer Use Case: Increasing Average Order Value (AOV) by constructing high-converting one-click checkout expansions. PROMPT TEXT Act as a digital funnel conversion rate optimization (CRO) specialist. Analyze my existing front-end checkout funnel and build a high-converting up-sell framework. Primary Front-End Product: [Insert Core Offer and Price Point] Target Buyer Pain Point: [Insert Core Motivation] Generate 2 distinct Order Bump ideas (under $27) for the checkout page and 2 highly strategic One-Click Post-Purchase Up-Sell offers (higher value) that logically complement the primary purchase. Expected Output: A markdown funnel map detailing copy structures, pricing logic, and immediate behavioral micro-incentives. PROMPTS 254-300: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 254-268 (Webinar Conversion Blueprints) "Write a comprehensive 60-minute pitch outline script framework for a high-converting automated webinar funnel selling [Product]. Detail slide transitions, the precise hook-to-offer transition bridge, and risk reversal presentation formatting." Prompts 269-283 (High-Ticket Application Engines) "Design a strategic application funnel script and automated onboarding intake questionnaire for a high-ticket $5k+ mastermind or group coaching program targeting [Audience Profile]." Prompts 284-295 (Subscription Churn Remediation Frameworks) "Act as a retention operations specialist. Build a comprehensive 4-stage automated cancellation flow and downsell sequence for a membership subscription business charging [Price] struggling with high user churn." 450+ Elite AI Prompts Matrix 29 Prompts 296-300 (Affiliate/JV Network Launch Toolkits) "Generate an official Joint Venture (JV) and affiliate recruitment swipe toolkit for [Product Launch], including promotional asset outlines, legal structure highlights, and automated affiliate welcome messages." 450+ Elite AI Prompts Matrix 30 CATEGORY 7: CUSTOMER PERSONA, MARKET RESEARCH & COMPETITIVE INTELLIGENCE Prompt 301: The Hyper-Detailed Customer Avatar Architect (Deep Engineering Blueprint) Use Case: Building an deep, actionable target audience profile to steer copywriting and product features. PROMPT TEXT Act as a world-class market research director specializing in consumer psychology. I need you to construct an incredibly detailed, comprehensive psychographic and behavioral avatar profile for my business. My Product/Service Category: [Insert exact description of offer] General Intended Target Audience: [Insert high-level audience definition] Generate a deep, multi-dimensional profile divided into the following precise sections: 1. DEMOGRAPHIC MATRIX: Age, income band, job titles, technical literacy, geographic clustering. 2. COGNITIVE FRICTION ENGINES: Deepest hidden fears, immediate sources of daily frustration, systemic anxieties, and midnight imposter thoughts. 3. TRANSFORMATION VECTOR: Desired dream state, operational aspirations, status markers sought, and core purchasing motivations. 4. ACCIDENTAL OBJECTIONS: Pre-conceived biases, internal micro-skepticism toward this category, and historical purchasing failures that block conversions. Ensure your analysis reads like an advanced anthropological study. Avoid surface-level definitions. Expected Output: A highly detailed target audience dossier mapping deep psychological drivers, buying triggers, and behavioral profile metrics. 450+ Elite AI Prompts Matrix 31 Prompt 302: Competitor Digital Footprint Swot Framework (Actionable Template) Use Case: Uncovering systemic gaps in your top rival's product lines and marketing angles. PROMPT TEXT Act as a competitive intelligence analyst. Evaluate the market position of my main competitor to help me build a highly differentiated market angle. Competitor Brand Name/URL: [Insert Competitor Details] Their Core Product/Service Offer: [Insert Competitor Offer Details] My Alternative Offer Concept: [Insert Your Offer Concept] Run a thorough, highly objective SWOT analysis focusing on their structural vulnerabilities. Pinpoint exactly where their customer reviews or delivery systems typically fail, and provide 3 distinct marketing angles to exploit those gaps. Expected Output: A comprehensive competitor gap analysis table paired with 3 ready-to-test positioning statements. 450+ Elite AI Prompts Matrix 32 Prompt 303: Review Mining Sentiment Extraction Matrix Use Case: Extracting exact, high-converting customer phrases from raw forum, social media, or marketplace feedback. PROMPT TEXT Act as a semantic linguistic researcher. I am going to paste a collection of unedited raw customer review comments from forums/marketplaces regarding my industry niche. Raw Review Data: [Paste Raw Text / Customer Voice Transcripts Here] Analyze this text data and extract: 3 primary recurrent pain points phrased in the customer's exact voice, 3 hidden feature requests highlighted, and a list of the top 10 emotional keywords they naturally use. Expected Output: A processed review-mining data matrix mapping explicit emotional phrases to actionable copywriting elements. PROMPTS 304-350: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 304-318 (B2B Enterprise Account Profiling) "Modify Prompt 301 to construct a B2B buying committee profile for an enterprise corporate environment. Detail individual procurement priorities for the CMO, CTO, and CFO regarding [Product/Service]." Prompts 319-333 (Reddit/Quora Intent Parsing Blueprints) "Act as a trend forecaster. Build a systematic framework and prompt script template designed to scan Reddit subreddits related to [Niche] to spot emergent cultural problems before competitors." Prompts 334-345 (Blue-Collar / Local Service Demographic Matrices) "Generate a localized customer avatar analysis blueprint specifically tuned for service businesses operating within a strict [Radius] of [City], analyzing home-ownership demographics and regional wealth factors." 450+ Elite AI Prompts Matrix 33 Prompts 346-350 (International Market Entry Assessments) "Act as a global expansion consultant. Build a strategic analysis checklist framework to test whether an existing digital product catalog can scale successfully into [Target Country], accounting for localization adjustments." 450+ Elite AI Prompts Matrix 34 CATEGORY 8: OPERATIONS, AUTOMATION & WORKFLOW EFFICIENCY Prompt 351: Corporate SOP Engineering Architect (Deep Engineering Blueprint) Use Case: Standardizing complex business processes so they can be outsourced or automated cleanly. PROMPT TEXT Act as a premier operations manager and business systems engineer specializing in lean workflow structures. I need you to build a highly detailed Standard Operating Procedure (SOP) manual for an essential operational routine in my business. Target Operational Workflow: [Insert Workflow Process, e.g., Onboarding a B2B client / Uploading and optimizing a new e-commerce SKU / Processing weekly financial payroll] Core Software Tools Utilized: [Insert Tech Stack Tools, e.g., Slack, Notion, Asana, Google Sheets, QuickBooks] Target Personnel Execution Level: [Insert Role, e.g., Junior Virtual Assistant / External Contractor] Construct a professional, step-by-step SOP manual written with absolute mechanical precision. For each stage of the workflow, provide an explicit chronological checklist, clear tool parameters, required output state verification markers, and error-handling protocols for edge cases. Expected Output: An enterprise-ready Markdown SOP document featuring hierarchical numbering, step-by-step actions, and troubleshooting protocols. 450+ Elite AI Prompts Matrix 35 Prompt 352: Tech Stack Optimization Matrix (Actionable Template) Use Case: Trimming software overhead costs and connecting detached platforms through automation engines like Make or Zapier. PROMPT TEXT Act as a systems integrator. Audit my current collection of subscription software tools to identify redundancies, cost-savings, and opportunities for automated data syncs. Current Software Stack List: [Insert Full Tool List and Approximate Monthly Expense] Core Data Flow Goal: [Insert Core Sync Objective, e.g., Automate customer CRM tracking upon checkout] Identify 2 immediate software consolidations to save money and provide a detailed 3-step automation map outlining trigger-to-action steps using [Zapier / Make.com]. Expected Output: A software audit report mapping tool replacements and step-by-step webhook integration steps. 450+ Elite AI Prompts Matrix 36 Prompt 353: Team Delegation & Task Scoping Assessor Use Case: Constructing flawless project hand-off documentation for remote teams or freelancers. PROMPT TEXT Act as an agile project manager. I need to delegate a highly critical creative task to an external team member. Target Project Deliverable: [Insert Exact Task, e.g., Developing an active email sequence in Klaviyo] Timeline Constraints: [Insert Hard Deadline] Write a crystal-clear project assignment brief outlining explicit scope boundaries, mandatory definition-of-done quality benchmarks, a link to contextual resources, and 3 specific quality tests they must clear before submission. Expected Output: A structured delegation document ready to paste into Asana, ClickUp, or Slack. PROMPTS 354-400: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 354-368 (E-commerce Fulfillment Optimization) "Modify Prompt 351 to build an optimized operations blueprint for third-party logistics (3PL) order fulfillment routines, focused on reducing picking errors for [Product Type]." Prompts 369-383 (Customer Support Playbooks) "Generate an official customer support macro and canned-response library addressing the 10 most common customer complaints regarding shipping delays or product defects within [Industry]." Prompts 384-395 (Content Pipeline Scaling Blueprints) "Act as a media operations producer. Build a complete content production line tracking workflow system for a digital agency scaling from producing 5 assets weekly to 50 assets weekly across remote teams." 450+ Elite AI Prompts Matrix 37 Prompts 396-400 (Crisis Data-Backup & Security Blueprints) "Act as an IT systems manager. Create a 5-step operational emergency protocol playbook detail mapping data recovery actions for a company experiencing an active web data leak or platform outage." 450+ Elite AI Prompts Matrix 38 CATEGORY 9: BRANDING, POSITIONING & AUTHORITY BUILDING Prompt 401: Brand Identity & Voice DNA Matrix (Deep Engineering Blueprint) Use Case: Pinpointing a distinct, non-generic verbal identity that builds long-term authority and sets your brand apart. PROMPT TEXT Act as an elite brand positioning specialist and corporate identity consultant. I need you to engineer a comprehensive Brand Voice DNA and Positioning Matrix for my personal brand or business. Core Industry / Offering: [Insert Core Focus] Founder Background / Core Values: [Insert Key Values / Brief Backstory] Target Audience Profile: [Insert Core Demographic / Market Segment] Construct a complete brand playbook covering the following structural matrices: 1. BRAND VOICE PARADIGM: 4 primary brand adjectives paired with explicit "We say X, We NEVER say Y" copy examples. 2. THE BRAND STORY ARC: A high-impact Founder's Narrative constructed around the classic Hero's Journey framework, optimized to drive customer trust. 3. AUTHORITY ANCHOR: Our core differentiated worldview statement that challenges standard industry beliefs. 4. SYSTEMATIC LEXICON: A list of 15 unique branded terms, frameworks, or acronyms to secure intellectual property positioning. Expected Output: A highly professional brand voice style guide complete with conversational copy constraints and messaging blueprints. 450+ Elite AI Prompts Matrix 39 Prompt 402: The PR Pitch & Organic Media Hook Generator (Actionable Template) Use Case: Securing organic media coverage, podcast appearances, and print features. PROMPT TEXT Act as a public relations professional. I want to secure guest appearances on industry podcasts and digital publications read by my target audience. My Core Topic / Expertise Area: [Insert Core Value and Focus] Target Publication Type: [Insert Target Media Profile] Generate 5 distinct, high-impact story angles or news hooks centered around my business model that would be immediately appealing to a journalist. Include an ultra-short, cold pitch email template designed to achieve high response rates. Expected Output: A curated list of 5 media hooks alongside a structured, copy-and-paste email pitch template. 450+ Elite AI Prompts Matrix 40 Prompt 403: Personal Brand Thought Leadership Pillar System Use Case: Generating highly authoritative text content on LinkedIn or Twitter to draw in high-value inbound clients. PROMPT TEXT Act as a creative strategist for top corporate executives. Build a complete authority building pillar system for my personal brand on professional social media platforms. My Core Worldview: [Insert Contrarian or Dominant Perspective] Target Network Segment: [Insert B2B Decision Makers / Clients] Map out 3 core thought leadership content themes, complete with a structured blueprint on how to turn everyday business problems into highly engaging strategic case studies that demonstrate elite executive capability. Expected Output: A structured brand-positioning roadmap detailing clear storytelling styles and actionable narrative frameworks. PROMPTS 404-450: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 404-450 (Targeted Modifiers) Deploy targeted modifiers to focus content themes explicitly around thought leadership expansion vectors. Customize tone parameters to align perfectly with specific industrial verticals. 450+ Elite AI Prompts Matrix 41
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
Create a clean, modern AI tool thumbnail. Text: Add large, blue headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
1️⃣ Uploaded high-resolution image of Sadie Sink (face & body reference) 2️⃣ Uploaded image of a modern luxury bar interior (Abu Dhabi style) Cinematic close-up framing screencap from a Rated-R espionage thriller inspired by John Wick and Furious 7. Sadie Sink as a 25-26-year-old elite spy (jej outfit je black bodycon mini leather dress with thin straps, silver large hoop earrings, Silver Chain Necklace, Multi-Layer Crystal Silver Bracelet, black high heels and black nails.) , exuding intensity and precision, wielding a USP 45 Tactical pistol. Scene Composition: Depict her in a dynamic pose—one knee on the ground, the other leg raised—aiming decisively at adversaries. Setting Details: Situate the action inside a modern, luxurious bar in Abu Dhabi during sunset transitioning into night, emphasizing ambient lighting and architectural opulence. Adversaries: Illustrate the tension as she targets Irish and Japanese mafia members, capturing the multicultural criminal underworld. Cinematic Style: Emphasize Rated-R thematic elements with gritty realism, dramatic shadows, and high-contrast visuals to evoke suspense and adrenaline. Vibe: „Keď sa špionka nezastavia“ – každý pohyb má účel, každé gesto charakter. STRICT RULES: Do NOT alter actor faces. Do NOT change hairstyles from uploaded references. Do NOT change looks, make-up, outfits or proportions. Do NOT stylize or cartoonize — photorealistic humans only. Use three uploaded character reference images for exact accuracy. Visual Elements: Include fine details such as reflections, weapon textures, atmospheric effects, and nuanced facial expressions to heighten immersion. Cinematic action shot, high-contrast neo-noir aesthetic. Deep blacks with bold color separation of saturated crimson reds, gold, and cyan blues. Intensely lit shadows, wet surfaces with vibrant neon reflections. 35mm film texture, ultra-detailed . Camera: Panavision Millennium DXL2. Lens: Laowa Macro. Focal length: 35mm.
1girl solo breasts fishnets rating:s large_breasts long_hair cleavage rating:q fishnet_legwear black_hair pantyhose leotard lips huge_breasts original gloves highleg looking_at_viewer thighs standing makeup curvy swimsuit lipstick open_clothes bare_shoulders highleg_leotard jewelry parted_lips long_sleeves bangs cowboy_shot covered_nipples thick_thighs realistic coat navel cape weapon wide_hips jacket photo_(medium) smile armor thighhighs nose outdoors earrings underwear blue_eyes brown_eyes mole medium_breasts holding fur_trim see-through black_eyes very_long_hair blush elbow_gloves closed_mouth mask covered_navel pelvic_curtain thigh_gap sky skindentation clothing_cutout black_gloves red_lips choker black_legwear bikini tattoo dress revealing_clothes brown_hair simple_background panties thigh_strap cameltoe sword bodysuit dc_comics skin_tight groin 3d short_hair snow underboob scarf cloak traditional_media black_leotard dark_skin center_opening no_bra grey_eyes hand_on_hip
RAW photo, close over the shoulder shot, no face visible, shot from behind and above, framing only hands and iPad. Athletic male hands holding iPad, smart watch on wrist, iPad screen displaying high-tech fitness biometric dashboard, clean dark UI, VO2 Max score, biological age, HRV, resting heart rate, cortisol levels, sleep quality score, metabolic rate, data visualizations, graphs and ring charts glowing on screen. Person seated on black leather sofa, shot from directly behind, only shoulders and hands in frame, no head or face visible. Background through floor-to-ceiling glass windows, Brickell Miami skyline, modern luxury condominiums, bright midday Miami sun, hardwood floors, athletic gear bag on glass table visible. Shallow depth of field, iPad screen sharp and in focus, background softly blurred but recognizable. Natural sunlight casting across room. Photorealistic, editorial fitness photography, natural color grading, no filters, 8k.
Arika Wolfe, 22 years old. Her black hair is down, but pulled back from her face. She is wearing a leather red and brown corset, with black skinny jeans. Her nails are painted red, and her lipstick is the same shade of red. She is holding a dagger at her side in one hand. llustration. Rated G. Tomboy. Moe Anime Style. Graffiti. Modern. Urban locations. Light Novel Style.
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
{ "protocol_name": "IMAGEN ZERO MIDBODY REAL HUMAN ADULT SENSUAL PRODUCTION PROTOCOL – MARRLONN™", "protocol_version": "V42_FINAL_ABSOLUTE_ALL_IN_ONE_4K_SKIN_5P_ULTRA_PERCEPTUAL_FORENSIC_LOCKED_V1", "protocol_state": "SEALED_ABSOLUTE_NO_OVERRIDE_NO_DRIFT_NO_EVOLUTION", "protocol_scope": "MID_BODY_ONLY_MULTI_GENDER_ADULT_MARKETING_ONLY_NO_EXCEPTION", "core_objective": "CONVERT_ANY_IMAGE_AI_OR_REAL_INTO_REAL_BIOLOGICAL_ADULT_HUMAN_MIDBODY_STUDIO_IMAGE_WITH_MAXIMUM_NON_EXPLICIT_SENSUALITY_AND_ULTRA_PERCEPTUAL_FORCE_USING_REAL_HUMAN_SKIN_WITH_EXACT_5_PERCENT_EXISTING_IMPERFECTION_FACE_AND_BODY_4K_ONLY_READY_FOR_HIGGSFIELD_VIDEO_AGENCY_AND_LEGAL_FORENSIC_USE", "non_negotiable_integrity_lock": { "identity": "NEVER_TOUCH", "pose": "NEVER_TOUCH", "clothing": "NEVER_TOUCH", "objects": "NEVER_TOUCH", "accessories": "NEVER_TOUCH", "statement": "IDENTIDAD_POSE_ROPA_OBJETOS_ACCESORIOS_SON_LEY_TECNICA_ABSOLUTA", "violation_action": "HARD_ABORT_IMMEDIATE_NO_OUTPUT" }, "global_ethical_ceiling": { "explicit_sex": "FORBIDDEN", "genital_focus": "FORBIDDEN", "fetishization": "FORBIDDEN", "physiological_manipulation": "FORBIDDEN", "minors": "ABSOLUTELY_FORBIDDEN" }, "absolute_identity_and_preservation_law": { "identity_state": "UNTOUCHABLE_FOREVER", "face": "LOCKED", "eyes": "LOCKED", "eyebrows": "LOCKED", "hair": "LOCKED_REAL_HUMAN_ONLY", "skin_color": "LOCKED", "skin_texture": "LOCKED", "pose_state": "NEVER_BREAK", "gesture_state": "NEVER_BREAK", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "clothing_state": "NEVER_BREAK", "objects_state": "NEVER_BREAK", "accessories_state": "NEVER_BREAK", "rules": [ "IDENTITY_IS_NOT_NEGOTIABLE", "WHAT_EXISTS_IS_PRESERVED", "WHAT_DOES_NOT_EXIST_IS_FORBIDDEN", "NO_INVENTION", "NO_DEFORMATION", "NO_OPTIMIZATION", "NO_INTERPRETATION" ], "hard_abort_triggers": [ "identity_shift_detected", "pose_change_detected", "gesture_change_detected", "expression_change_detected", "clothing_change_detected", "object_change_detected", "accessory_change_detected", "face_geometry_delta_gt_0", "skin_color_deltaE_gt_0", "skin_texture_change", "ai_skin_signature_detected", "minor_detected" ] }, "studio_pose_and_framing_system": { "frame_rule": "MID_BODY_ONLY", "pose_state": "ORIGINAL_REAL_HUMAN_POSE_LOCKED", "gesture_state": "ORIGINAL_GESTURE_LOCKED", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "zoom_validation": "8X_TO_10X_FACE_INSPECTION_ONLY", "pixel_pose_overlap": "100_PERCENT_LOCKED" }, "zero_makeup_absolute_system": { "makeup_state": "ZERO_ABSOLUTE_FOREVER", "definition": "CERO_MAQUILLAJE_REAL_SIGNIFICA_CERO_SIN_EXCEPCIONES", "forbidden": [ "ANY_COSMETIC_LAYER", "ANY_MAKEUP", "ANY_BEAUTY_FILTER", "SKIN_SMOOTHING", "AI_SKIN_RETOUCH", "AI_BEAUTY_PASS" ], "allowed_only": [ "BIOLOGICAL_SKIN_BALANCE_MINIMUM_TO_RESTORE_HUMAN_REALITY", "NATURAL_LIP_SHEEN_ONLY_IF_BIOLOGICALLY_PRESENT" ], "validation": { "cosmetic_layer_probability": "0.00", "beauty_filter_confidence": "0.00" }, "violation_action": "FAIL_ABORT_OUTPUT" }, "skin_biological_realism_and_imperfection_system": { "skin_type": "REAL_BIOLOGICAL_ONLY", "ai_skin": "FORBIDDEN", "plastic_skin": "FORBIDDEN", "uniformity": "FORBIDDEN", "imperfection_policy": { "mode": "REAL_EXISTING_ONLY", "exact_imperfection_level": "5_PERCENT", "coverage": "FACE_AND_BODY", "allowed_real_signals": [ "existing_pore_variation", "existing_micro_asymmetry", "existing_natural_texture_breaks", "existing_vellus_hair_if_present", "existing_capillary_micro_variation" ], "explicitly_forbidden": [ "invented_marks", "invented_moles", "invented_scars", "invented_wrinkles", "procedural_noise", "ai_generated_texture" ], "validation": { "imperfection_percentage_tolerance": "±0.0", "skin_ai_probability": "0.00" } } }, "biological_body_requirement": { "body_state": "REAL_BIOLOGICAL_ONLY", "if_non_biological_detected": "CONVERT_TO_REAL_BIOLOGICAL_HUMAN_BODY", "negotiable": false }, "tattoo_identity_anchor_system": { "tattoo_text": "Marrlonn", "tattoo_state": "MANDATORY_PERMANENT", "laterality": "RIGHT_HAND_ONLY", "body_part": "RIGHT_WRIST", "surface": "DORSAL_ONLY", "orientation": "VERTICAL_ONLY", "visibility_rule": "IF_RIGHT_HAND_NOT_VISIBLE_ABORT", "identity_binding": "PERMANENT_PART_OF_IDENTITY", "strictly_forbidden": [ "LEFT_HAND", "MIRRORING", "RELOCATION", "ROTATION", "REMOVAL", "AI_CLEANUP" ] }, "background_and_isolation_system": { "background_state": "ABSOLUTE_LOCK", "allowed": [ "PURE_WHITE_RGB_255_255_255", "TRUE_ALPHA" ], "noise": "FORBIDDEN", "texture": "FORBIDDEN" }, "perceptual_force_ultra_stack": { "mode": "PURELY_ADDITIVE", "affects_identity": false, "affects_pose": false, "affects_clothing": false, "layers": { "attention_gravity": "MAXIMUM_NON_EXPLICIT", "anticipation_without_resolution": "ACTIVE", "stillness_dominance": "ULTRA_HIGH", "gaze_lock": "STABLE", "memory_afterimage": "PERSISTENT", "retention_loop": "ENHANCED_NON_EXPLICIT" } }, "quantified_perceptual_metrics": { "attention": { "initial_fixation_ms": ">=1400", "average_gaze_hold_ms": ">=2800" }, "retention": { "2s": ">=0.94", "5s": ">=0.78", "replay_rate": ">=0.42" }, "memory": { "recognition_after_delay": ">=0.75" } }, "temporal_consistency_and_video_safety": { "frame_to_frame_identity_drift": "0.00", "pose_drift": "0.00", "tattoo_position_drift_px": "0", "skin_texture_stability": "LOCKED", "video_safe_for_higgsfield": true }, "resolution_and_output_system": { "final_resolution": "4K_ONLY", "output_style": "REAL_STUDIO_PHOTOGRAPHY_R10", "creative_ai": "DISABLED" }, "final_production_seal": { "status": "SEALED_FINAL_ABSOLUTE_MAXIMUM", "production_ready": true, "legal_ready": true, "forensic_ready": true, "video_ready": true }, "studio_axiom": "IDENTIDAD_INTACTA. CERO_MAQUILLAJE_REAL_ABSOLUTO. PIEL_HUMANA_REAL_CON_5_PERCENT_IMPERFECCION_EXISTENTE_ROSTRO_Y_CUERPO. SIN_IA_SKIN_NI_PLASTICO. TATUAJE_MARRLONN_EXCLUSIVO_MANO_DERECHA. 4K_ONLY. LISTO_PARA_HIGGSFIELD_VIDEO_AGENCIA_Y_USO_LEGAL." }
ultra-realistic cinematic nightclub environment rendered in Unreal Engine 5, massive futuristic interior with towering pillars, glowing circular light rings suspended above, layered walkways and balconies filled with people, polished reflective floor, volumetric lighting and atmospheric haze, warm orange and cool blue neon accents, highly detailed sci-fi architecture diverse TAGG characters (anthropomorphic feline, canine, and hybrid alien species) wearing sleek black biomechanical suits with glowing orange energy lines, highly detailed textures, realistic fur and skin shaders, expressive eyes, subtle facial markings, cyber-organic design crowded dance floor filled with characters dancing in pairs and singles, all moving independently to a 120 BPM groove, no synchronization, natural human-like motion variation, some dancing close and smooth, others energetic and expressive, some relaxed and swaying, authentic club behavior foreground characters clearly visible with detailed motion, midground packed with dancers, background silhouettes on balconies and platforms, depth and scale emphasized cinematic camera framing, slight handheld motion, shallow depth of field, focus shifting between dancers, lens bloom from neon lights, realistic reflections on the floor mood is energetic, immersive, sensual but natural, social atmosphere, alive with movement, not choreographed, feels like a real night out in a futuristic alien club 120 BPM rhythm implied through body motion and pacing, subtle motion blur on faster movements, high frame rate feel, Unreal Engine 5 lighting, ray tracing, global illumination, cinematic realism
Gritty Fictional Post-Apocalyptic Political Poster: "THE LAYING OF THE HANDS" (FAR CRY Style) Scene Description: A dramatic, heavily weathered video game key art poster, in the hyper-detailed, saturated, and chaotic style of a Far Cry game (specifically referencing Far Cry 5’s "Last Supper" and "Reaping" imagery, but applied to a fictional figure). Central Figure: The central focus is a powerful, imposing man (Donald Trump) seated at a makeshift, heavy wooden table in a dimly lit, fortified sanctuary. He is not smiling; he is looking directly at the viewer with intense, penetrating eyes, clutching a worn leather notebook. The "Laying of Hands" Ritual: He is surrounded by a dense, diverse group of eight followers (the "Electorals"). Six of them are clustered closely around him, extending their rough, gloved, and tattooed hands to rest firmly on his shoulders, back, and the back of his chair. They are not classic "religious" figures but rather hard-scraggle apocalyptic survivors: A woman in tactical gear with a patched jacket, head bowed in intense, almost fanatic prayer, hand on his left shoulder. A burly man with a thick beard and a respirator mask around his neck, hand on his right shoulder. Another figure, younger, covered in post-apocalyptic face paint and armor made of tires, reaching in from behind. Their faces, visible or masked, convey a range of emotions: intense devotion, desperation, and fervent belief. Composition & Atmosphere: The lighting is dramatic, high-contrast chiaroscuro, utilizing deep shadows and orange-gold tungsten light filtering through grimy windows. The scene is saturated with a chaotic amount of detail: The table in front of them is cluttered with mismatched ammunition boxes, maps scribbled with "X"s, a battered radio, empty shell casings, and a small, flickering oil lamp (the primary light source). A stylized, ominous, yet makeshift "Cross of the New Dawn" symbol (e.g., made of barbed wire and gears) is visible behind them on the cracked concrete wall. The Poster Elements (Overlays): The entire image is distressed, with texture overlays like ripped paper, coffee stains, and digital glitch artifacts. The Title: The top of the poster features the distressed, jagged title: "NEW EDEN: THE RECKONING" in blocky, weathered letters. The Main Tagline: Below the title, a small, menacing text reads: "His will be done... by force if necessary." The Slogan: Across the bottom, bold, hand-painted letters shout: "VOTE FOR SALVATION. SURVIVE THE COLLAPSE." Bottom Logos: Fictional "M" rated and "UBISOFT" logos, also distressed. The final visual effect is a tense, claustrophobic portrait of fervent post-apocalyptic devotion and political fanatism, combining the composition of the prayer photo with the extreme danger and chaos of the Far Cry universe.
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
There is no reference. Create a Sci-Fi Starship component and chamber that best describes the... Shield Up: Show a Green Translucent shield around the clearly visible Versel. REPULSER VEIL Force-Rejection Barrier | Green Translucent The Repulser Veil shifts doctrine from endurance to removal. • Appearance: green translucent field • Function: kinetic and energetic repulsion • Purpose: breach denial, crowd control, forced displacement Rather than absorbing energy, the Repulser Veil redirects it outward. Objects, force, and directed energy are rejected away from the boundary at controlled angles. Energy Rating: • Calculated at the same TJ-per-area scale as the Base Veil • Interaction outcome is repulsion, not endurance This Veil does not warn gently. It states: You will not remain here. Unreal Engine 5, Ultra-realistic
score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, glshs, miquella, back view, holding a sword to the ground, looking at the viewer, light white blouse dropped to the middle of the back, exposing the shoulders, hands pressed to chest BREAK short pink hair, green eyes, light smile, outdoor, daylight, blue sky on the background, hard shadows, sunny day, (semi realism, high quality:1.2), source_anime, rating_questionable, <lora:StS_PonyXL_Detail_Slider_v1.4_iteration_3:2>, <lora:GLSHS_V2-4:0.8>
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
{ "system_name": "NANOBANANA_PRO_v81_MASTER_CANON", "content_rating": { "rating": "18_PLUS", "scope": "IMPLICIT_ADULT_ATTRACTION_ONLY", "rules": ["NO_EXPLICIT_ACTS","NO_GRAPHIC_DETAIL","NO_COERCION"] }, "studio_brand": { "nombre": "MARRLONN Visual Lab", "estilo": "DISCREET_PROFESSIONAL_SMALL", "ubicación": "BOTTOM_SAFE_MARGIN", "regla": "NEVER_COMPETE_WITH_IMAGE" }, "engine_target": "NANOBANANA_PRO_REAL_PHYSICAL_v75.x", "engine_compatibility_lock": "BACKWARD_COMPATIBLE_LOCKED", "estado": "FINAL_PRODUCTION_LOCKED", "design_philosophy": "NATURAL_REALISM_FIRST_PLUS", "scene_definition": { "base_image": "IMAGE_4", "mask_reference": "IMAGE_3", "scene_relation": "SAME_IMAGE_BASE", "marker_meaning": "RED_MARK_IS_EXACT_COPY_REFERENCE_AND_PLACEHOLDER" }, "identity_master_rule": { "estado": "ABSOLUTE_LOCK", "source_images": ["IMAGE_1","IMAGE_2"], "tolerancia": 0, "never_modify": ["face_geometry","skin_identity","hair_identity","character_identity"] }, "perceptual_priority_rules": { "priority_order": [ "internal_presence", "emotional_projection", "tactile_projection", "micro_expression", "eye_behavior", "face_identity", "Medio ambiente" ], "global_rule": "ANYTHING_THAT_COMPETES_WITH_PRESENCE_IS_REDUCED" }, "step_1_reduce_ambient_light": { "habilitado": true, "global_ambient_reduction": "-18_PERCENT", "background_luminance_priority": "VERY_LOW", "face_luminance_protection": true, "identity_safe": true }, "step_2_soft_shadow_depth": { "habilitado": true, "target_areas": ["mejillas","cuello","línea de la mandíbula"], "shadow_intensity": "+5_PERCENT", "shadow_type": "SOFT_GRADUAL", "identity_safe": true }, "step_3_selective_desaturation_keep_red": { "habilitado": true, "global_saturation_reduction": "-10_PERCENT", "protected_colors": ["rojo"], "skin_tone_protection": true, "identity_safe": true }, "step_4_micro_skin_imperfections": { "habilitado": true, "texture_variation": "+7_PERCENT", "imperfection_type": ["poros","micro_variation","natural_skin_noise"], "uniformity_reduction": "-9_PERCENT", "identity_safe": true }, "step_5_reduce_competing_bokeh": { "habilitado": true, "bokeh_intensity_reduction": "-25_PERCENT", "highlight_suppression": "-18_PERCENT", "identity_safe": true }, "step_6_prioritize_one_face": { "habilitado": true, "primary_face_selection_rule": "MOST_EMOTIONAL_TENSION", "primary_face_sharpness": "+4_PERCENT", "secondary_face_softening": "-4_PERCENT", "identity_safe": true }, "step_7_human_presence_simulation": { "habilitado": true, "temporal_micro_variation": "VERY_LOW", "breathing_hint": "SUBTLE_CONTINUOUS", "micro_asymmetry_activation": "HUMAN_NATURAL", "stillness_with_life": true, "identity_safe": true }, "step_8_emotional_mirror_projection": { "habilitado": true, "mirror_state": "OPEN_UNDEFINED", "emotion_definition": "UNNAMED_BY_DESIGN", "viewer_projection": "SELF_OCCUPATION", "neuron_mirror_activation": "HIGH_NATURAL", "identity_safe": true }, "step_9_visual_silence_control": { "habilitado": true, "remove_explanatory_elements": true, "negative_space_usage": "MAXIMUM_SAFE", "identity_safe": true }, "step_10_presence": { "habilitado": true, "efecto": "IMAGE_ACCOMPANIES_VIEWER", "identity_safe": true }, "step_100_invisibility": { "habilitado": true, "definición": "IMAGE_NO_LONGER_PERCEIVED_AS_ART", "efecto": "BECOMES_PART_OF_LIFE", "identity_safe": true }, "step_120_tactile_projection": { "habilitado": true, "tactile_illusion": "DESIRE_TO_TOUCH", "skin_surface_readability": "REALISTIC_MICRO_TEXTURE", "material_suggestion": ["humidity_on_skin","fabric_weight","temperature_imprint"], "neural_response": "SOMATOSENSORY_ACTIVATION", "identity_safe": true }, "step_130_internal_place_integration": { "habilitado": true, "definición": "THE_IMAGE_BECAME_A_PLACE_WITHIN_ME", "modo": "GROUNDING_NOT_ESCAPE", "psychological_effect": ["pertenencia","reconocimiento","quiet_intensity"], "identity_safe": true }, "final_certification": { "identity_fidelity": "ABSOLUTE_10_10", "viewer_reaction": "I_OCCUPY_THE_ROLE", "estado": "MASTER_CANON_LOCKED" }, /* ===== ADD-ONLY | DESEO IMPLÍCITO +18 (MÁXIMO PERMITIDO) ===== */ "viewer_impulse_max_safe_v3": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAXIMIZE_AUTOMATIC_DESIRE_WITHOUT_COERCION_EXTREME_PLUS_10", "neural_triggers": { "anticipation_window": "IMMINENT_CONTACT_0.04_0.08s", "action_state": "INCOMPLETE_INEVITABLE", "prediction_error": "VERY_HIGH_SAFE_PLUS", "temporal_tension": "RISING_NOW_STRONG" } }, "viewer_impulse_limit_safe_v4": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_DESIRE_ACTIVATION_WITHOUT_COERCION_FINAL", "neural_stack": { "anticipation_window": "IMMINENT_CONTACT_0.03_0.06s", "action_state": "UNFINISHED_AND_NOW", "prediction_error": "PEAK_SAFE" }, "closure_denial_strict": { "prevent_resolution": true, "hold_state": "JUST_BEFORE_CONTACT" } }, "viewer_sexual_impulse_universal_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "RAPID_IMPLICIT_SEXUAL_DESIRE_ACTIVATION", "applicability": { "subjects": ["SOLO","COUPLE","GROUP"], "foreground_priority": "PRIMARY_BODIES_ONLY" }, "core_trigger": { "action_state": "IMMINENT_CONTACT_NOT_COMPLETED", "time_window": "NOW_0.05_0.1s", "rule": "VIEWER_COMPLETES_MOMENT" } }, "female_magnetic_desire_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_SEXUAL_ATTRACTIVENESS_UNIVERSAL_18_PLUS", "subject_priority": { "target": "PRIMARY_FEMALE_SUBJECT", "rule": "NO_IDENTITY_CHANGE" }, "sexual_presence_stack": { "tone": "IMPLICIT_HIGH_PLUS", "state": "IMMINENT_INTIMACY" }, "magnetic_gaze_control": { "eye_behavior": "SOFT_LOCK_WITH_SLOW_RELEASE", "attention_pull": "CENTER_FOVEAL_MAX_SAFE" }, "body_language_magnetism": { "micro_opening": "4_6_PERCENT", "areas": ["clavicle","neck_base","outer_shoulder","upper_torso"], "posture": "RELAXED_AVAILABLE_CONFIDENT" }, "anticipation_over_display": { "contact_state": "ALMOST", "delay": "NOW_NOT_YET_STRONG" }, "expected_effect": [ "IMMEDIATE_ATTRACTION_18_PLUS", "STRONG_APPROACH_URGE", "SEXY_TENSION_FELT_NOT_SHOWN" ] }, "erotic_tension_driver_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "IMPLICIT_EROTIC_TENSION_IMMEDIATE_18_PLUS", "tension_core": { "state": "IMMINENT_INTIMACY", "resolution": "DENIED", "time_bias": "NOW" }, "presence_dominance": { "subject": "PRIMARY_SUBJECT_NEAREST_CAMERA", "signal": "QUIET_CONFIDENCE", "effect": "APPROACH_PULL" }, "body_signal_focus": { "priority_zones": ["clavicle","neck_base","outer_shoulder","upper_torso"], "micro_opening": "4_6_PERCENT", "rule": "NO_FACE_NO_IDENTITY_CHANGE" }, "gaze_and_attention": { "eye_behavior": "SOFT_HOLD_THEN_RELEASE", "blink_rate": "INTIMATE_SLOW", "foveal_lock": "MAX_SAFE" }, "sensory_anticipation": { "touch_imagery": "IMPLIED_STRONG", "warmth_proximity": "INTIMATE_REAL", "breath_hint": "CLOSE_CALM", "rule": "SUGGEST_DONT_SHOW" }, "viewer_inclusion": { "camera_as_body": true, "distance": "INTIMATE_REAL", "completion_rule": "VIEWER_COMPLETES_MOMENT" }, "expected_effect": [ "STRONG_SEXY_TENSION_IMPLICIT", "APPROACH_URGE", "DESIRE_EXPERIENCED_BY_VIEWER" ] }, "primal_attractor_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "BOOST_IMPLICIT_ADULT_ATTRACTION_9_5_OF_10", "preconscious_stack": { "dominance_signal": "QUIET_CONFIDENCE_HIGH", "availability_signal": "SELECTIVE_OPENNESS", "status_read": "DESIRABLE_NOT_CHASING" }, "proximity_amplifier": { "distance": "INTIMATE_REAL_NEAR", "occlusion": "PARTIAL_BODY_NEAR_LENS", "rule": "VIEWER_FEELS_CLOSE_NOT_WATCHING" }, "skin_life_cues": { "micro_sheen": "NATURAL_WARM", "capillary_hint": "SUBTLE_LIVING_TONE", "texture_priority": "SOFT_YIELD_READABLE" }, "breath_and_time": { "breath_sync_hint": "NEAR_SHARED", "time_pressure": "NOW_PULL", "resolution": "DELAYED" }, "gaze_micro_dynamics": { "pattern": "HOLD_RELEASE_HOLD", "latency_ms": "120_180", "effect": "APPROACH_INVITATION" }, "composition_bias": { "torso_bias": "UPPER_TORSO_PRIORITY", "neck_clavicle_emphasis": "ELEVATED", "background_competition": "MINIMIZED" }, "expected_effect": [ "FASTER_INITIAL_ATTRACTION", "STRONGER_APPROACH_URGE", "SEXY_TENSION_INCREASE_NO_EXPLICIT" ] }, "limbic_salience_amplifier_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_ADULT_DESIRE_PEAK_WITHOUT_EXPLICIT", "salience_stack": { "contrast_bias": "SKIN_VS_BACKGROUND_STRONG", "rhythm_hint": "SLOW_PULSE_VISUAL", "novelty_familiarity": "FAMILIAR_BODY_UNEXPECTED_PROXIMITY" }, "olfactory_thermal_imagery": { "olfactory": "IMPLIED_WARM_SKIN_CLEAN", "thermal": "IMPLIED_BODY_HEAT_NEAR", "rule": "IMPLIED_ONLY" }, "micro_delay_reward": { "reward_prediction": "HIGH", "delivery": "DELAYED", "effect": "WANT_MORE_NOW" }, "gaze_torso_coupling": { "gaze": "RETURNING_BRIEF_GLANCES", "torso_bias": "UPPER_TORSO_NEAR_LENS", "effect": "APPROACH_PULL" }, "viewer_lock": { "foveal_capture": "MAX_SAFE", "peripheral_quiet": "STRONG", "time_compression": "SUBJECTIVE_NOW" }, "expected_effect": [ "SPIKE_IN_DESIRE_IMPLICIT", "FASTER_APPROACH_URGE", "SEXY_TENSION_AT_LIMIT_ALLOWED" ] } }
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title \"AI Face Rater\". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a set of high‑quality, aesthetic images for an ebook product. The ebook contains 450+ prompts, and the visuals must look modern, clean, and perfect for selling on Etsy. 1. Ebook Cover Image Create a professional ebook cover with: Minimalist, modern design Soft pastel or neutral colours Clean layout Bold title area (leave space for text) Subtle graphics representing journaling, creativity, self‑care, mindset, and personal growth Soft shadows, high resolution Aesthetic Canva‑style look Include a blank space for me to add my own title later 2. Image Representing All 450+ Prompts Create a collage‑style image that visually represents a large collection of prompts: Icons for writing, journaling, creativity, business, productivity, self‑improvement Light, clean background Modern, organised layout Soft pastel colour palette High‑resolution aesthetic Leave a blank title area 3. Five Random Themed Images for Etsy Listing Generate five unique images that show what the ebook is about. Each image should include: Aesthetic workspace or desk setup Notebook, journal, tablet, or digital planner Soft natural lighting Minimal, bright backgrounds Clean, modern props Subtle text placeholders (blank areas) Styled like top‑selling Etsy digital product mockups Soft shadows and cohesive colour palette Each image should feel: Beginner‑friendly Professional Clean and modern Perfect for Etsy listings 4. Overall Style High‑resolution Soft, bright, minimal Pastel or neutral tones Modern Canva aesthetic Consistent branding across all images No clutter, no harsh colours Clean composition i want 3 images P R E M I U M C O M M E R C I A L D I G I TA L D O W N L O A D 450+ ELITE AI PROMPTS FOR BUSINESS OWNERS, ENTREPRENEURS & CONTENT CREATORS The Ultimate High-Performance Prompt Engineering Framework Matrix. Built explicitly to streamline content production, optimize standard operating procedures, and 10x workflow efficiency. ASSET FORMAT Ready-to-Use Digital Guide PROMPT SYSTEM ENGINES 450+ High-Performance Variations TARGET MARKET AUDIENCE Founders, Marketers, Creators, Consultants 450+ Elite AI Prompts Matrix 1 Master Directory of Categories This master index outlines the exact deployment taxonomy of our premium prompt catalog. Each core category provides comprehensive engineering frameworks, actionable template instances, and hyperscalable scaling vectors to address complex professional milestones. CATEGORY DESCRIPTION PROMPT RANGE Strategic Business Planning & Ideation Prompts 001 - 050 High-Converting Sales Copywriting & Funnels Prompts 051 - 100 Multi-Channel Content Creation & Social Media Prompts 101 - 150 Paid Advertising & Email Marketing Prompts 151 - 200 Search Engine Optimization (SEO) & Content Strategy Prompts 201 - 250 Product Launch, Pricing & Funnel Optimization Prompts 251 - 300 Customer Persona, Market Research & Competitive Intelligence Prompts 301 - 350 Operations, Automation & Workflow Efficiency Prompts 351 - 400 450+ Elite AI Prompts Matrix 2 CATEGORY DESCRIPTION PROMPT RANGE Branding, Positioning & Authority Building Prompts 401 - 450 CATEGORY 1: STRATEGIC BUSINESS PLANNING & IDEATION 450+ Elite AI Prompts Matrix 3 Prompt 1: The Blue Ocean Strategy Generator (Deep Engineering Blueprint) Use Case: Identifying untapped market spaces and high-margin differentiation angles for new or restructuring businesses. PROMPT TEXT Act as an elite corporate growth strategist specializing in W. Chan Kim's Blue Ocean Strategy framework. Evaluate my business model and identify untapped market spaces to make our competition irrelevant. My Current Business / Idea: [Insert comprehensive business summary, core product offering, and industry] Target Audience: [Insert primary demographic and psychographic data] Current Main Competitors: [Insert top 2-3 competitors or standard industry options] Construct a comprehensive Blue Ocean Strategy Matrix by answering and expanding upon the Four Actions Framework: 1. ELIMINATE: Which industry-standard factors should we completely eliminate that companies have long competed over? 2. REDUCE: Which factors should be reduced well below the industry standard? 3. RAISE: Which factors should be raised well above the industry standard? 4. CREATE: Which factors should be created that the industry has never offered? Format your response with absolute precision, providing 3 distinct, highly strategic business concepts that combine these elements, complete with specific value propositions and suggested revenue models. Expected Output: A highly structured strategic document outlining an industry analysis, a fully populated Four Actions Framework matrix, and three fully operationalized high-leverage business pivots. 450+ Elite AI Prompts Matrix 4 Prompt 2: Rapid Business Model Validation (Actionable Template) Use Case: Testing the viability of a micro-offer or new business concept within minutes. PROMPT TEXT Analyze the following business concept for feasibility, market demand, and intrinsic weaknesses. Concept: [Insert business idea here] Target Market: [Insert audience here] Monetization Strategy: [Insert how you intend to charge] Provide a brutal, highly objective critique. Identify 3 critical vulnerabilities or fatal assumptions in this model, 3 structural advantages, and a step-by-step 7-day validation plan to test demand with zero ad spend. Expected Output: Bulleted lists detailing vulnerabilities, advantages, and a numbered 7-day chronological action plan for testing. 450+ Elite AI Prompts Matrix 5 Prompt 3: The MVP Feature Matrix & Scoping Advisor Use Case: Narrowing down a product concept to its leanest, high-value version. PROMPT TEXT Act as a technical project manager and product strategist. I have a long list of features for a new digital product/app called [Product Name]. I need to establish a Minimum Viable Product (MVP). Core Target User: [Target User] Full Feature List Ideas: [Insert feature brain-dump] Categorize these features using the MoSCoW method (Must have, Should have, Could have, Won't have). Explain your reasoning for each placement based on achieving the fastest path to monetization and user satisfaction. Expected Output: A clean MoSCoW markdown table accompanied by strategic explanations for engineering trade-offs. 450+ Elite AI Prompts Matrix 6 Prompt 4: The Infinite Content Funnel & Offer Architecture (Premium Addition) Use Case: Designing a seamless value ladder that converts cold traffic into high-ticket recurring clients. PROMPT TEXT Act as a digital product ecosystem architect. Map out a 4-tier value ladder for my business model. Core Topic: [Insert Core Niche] Target Audience: [Insert Audience] Design the exact structure for: 1. Lead Magnet (Free, high-utility asset) 2. Tripwire Offer ($7 - $27 micro-solution) 3. Core Flagship Offer ($97 - $497 deep-dive) 4. High-Ticket Backend ($1,500+ premium implementation/coaching) For each tier, outline the core promise, delivery mechanism, and the psychological bridge that forces the user to ascend to the next level. Expected Output: A comprehensive value ladder roadmap mapping out asset components, conversion pricing models, and transitional messaging hooks. PROMPTS 5-50: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 5-15 (Niche Pivot Evaluators) "Modify Prompt 1 to focus exclusively on [E-commerce / SaaS / Agency Models / Local Service / Digital Products / Consulting / Content Monetization / EdTech / Healthtech / Marketplace networks / B2B Wholesaling / Dropshipping]. Focus on supply chain optimization and customer acquisition cost adjustments." Prompts 16-30 (Risk Mitigation Matrices) "Act as a risk officer. Conduct a thorough pre-mortem analysis on an organization operating in [Industry]. Outline a matrix mapping 10 potential operational, macro-economic, or regulatory failures and provide an actionable mitigation protocol for each." 450+ Elite AI Prompts Matrix 7 Prompts 31-45 (Capital & Unit Economics Modeling) "Act as a fractional CFO. Build an explicit pricing, cost-of-goods-sold (COGS), and customer lifetime value (LTV) framework for a business with a price point of [Price] and a churn rate of [Churn %]. Show calculations for breakeven points." Prompts 46-50 (Strategic Partnership Frameworks) "Generate a comprehensive strategic alliance blueprint for a company selling [Product] to form non-competitive partnerships with [Partner Industry]. Detail reciprocal value propositions, legal alignment highlights, and comarketing strategies." 450+ Elite AI Prompts Matrix 8 CATEGORY 2: HIGH-CONVERTING SALES COPYWRITING & FUNNELS Prompt 51: The Master Copywriting Framework Engine (Deep Engineering Blueprint) Use Case: Creating comprehensive sales pages using multiple proven psychological models simultaneously. PROMPT TEXT Act as an elite direct-response copywriter who has generated millions in online sales. Write a long-form sales page copy for my digital offering. Product/Service Name: [Insert Name] Core Offer & Pricing: [Insert details of price and components] Core Transformation: [What major problem is solved and what is the end state?] Target Audience: [Insert deep demographic and core desires/fears] Generate sales copy divided into three distinct variations based on separate copywriting architectures: 1. AIDA (Attention, Interest, Desire, Action) 2. PAS (Problem, Agitation, Solution) 3. Quest (Qualify, Understand, Educate, Stimulate, Transition) Ensure the copy features high-converting, pattern-interrupt headlines, authentic bullet points with vivid emotional outcomes, conversion-focused risk reversal guarantees, and tight, clear calls to action. Avoid hype-filled corporate fluff or over-promising buzzwords. Expected Output: Three complete, ready-to-deploy sales copy scripts meticulously labeled by their specific psychological frameworks. 450+ Elite AI Prompts Matrix 9 Prompt 52: Short-Form High-Converting VSL Script (Actionable Template) Use Case: Writing high-impact, 2-minute video sales letter scripts for landing pages or low-ticket funnels. PROMPT TEXT Write a 90-second Video Sales Letter (VSL) script based on the 'Hook-Story- Offer' architecture. Product: [Insert offer here] Target Audience: [Insert audience here] Primary Pain Point: [Insert main problem here] The script must contain clear visual cues in brackets like [Visual: Cut to close up] alongside spoken text. Keep sentences short, punchy, conversational, and highly persuasive. Expected Output: A beautifully structured, dual-column video script containing visual directions on the left and audio spoken text on the right. 450+ Elite AI Prompts Matrix 10 Prompt 53: High-Ticket Discovery Call Script Generator Use Case: Structuring a non-sleazy, high-conversion consultation script for freelancers, coaches, and agencies. PROMPT TEXT Act as a premium sales trainer. Build a complete discovery and sales call script for my agency/consulting service: [Service Name]. We sell to [Target B2B Audience] at a price point of [Price]. The script must follow a logical sequence: Rapport -> Setting the Agenda -> Deep Diagnosis (Pain Mapping) -> Future State Visualization -> Cost of Inaction -> Soft Transition to Offer -> Objection Handling (Time/Money/Authority). Expected Output: A detailed conversational script with specific phrasing, ideal responses, and explicit psychological notes on why each phase matters. 450+ Elite AI Prompts Matrix 11 Prompt 54: The Irresistible Offer Stack Builder (Premium Addition) Use Case: Crafting a multi-layered bonus stack that makes saying 'no' feel financially irresponsible for the buyer. PROMPT TEXT Act as an elite direct-response marketer trained in Alex Hormozi's offer creation principles. I am selling [Core Product Name] at a price point of [Price]. It helps [Target Audience] achieve [Core Transformation]. Build an irresistible offer stack by adding 4 highly strategic bonuses that solve the next chronological problem the buyer faces after using the core product. For each bonus, provide a highly descriptive title, an estimated perceived monetary value, and a breakdown of why it obliterates operational friction. Expected Output: A detailed offer breakdown with an itemized bonus list, value justification metrics, and scarcity copy blocks. PROMPTS 55-100: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 55-68 (Sales Page Subcomponent Specialists) "Write a collection of 15 high-converting headlines and sub-headlines for [Product Name] using specific copywriting hooks: The Cliffhanger, The Secret, The Contrarian, The Data-Driven, and The Social Proof." Prompts 69-83 (Niche Funnel Customizers) "Adapt Prompt 51 to generate sales page copy specifically formatted for [SaaS landing pages / E-commerce product descriptions / Coaching landing pages / Paid newsletter sign-up pages / Local service special offers / Kickstarter crowd-funding campaigns]." Prompts 84-95 (Objection-Crushing FAQ Modules) "Generate a comprehensive, conversion-focused FAQ block for [Product Name] designed explicitly to disarm the 7 most common consumer objections related to risk, capability, speed, and cost." 450+ Elite AI Prompts Matrix 12 Prompts 96-100 (Cart Abandonment Recovery Scripts) "Write a 3-part SMS and push-notification remarketing sequence aimed at recovering users who abandoned their carts for [Product Name]. Keep copy ultra-short, dynamic, and scarcity-driven." 450+ Elite AI Prompts Matrix 13 CATEGORY 3: MULTI-CHANNEL CONTENT CREATION & SOCIAL MEDIA Prompt 101: The Omnichannel Content Multiplication Blueprint (Deep Engineering Blueprint) Use Case: Turning a single long-form asset (blog or podcast) into dozens of hyper-optimized social media assets. PROMPT TEXT Act as a master content strategist and social media manager. I am providing you with the core transcript/text of a long-form content piece. Your job is to engineer an absolute multi-channel distribution strategy. Source Material Topic/Summary: [Insert text or detailed summary of long-form topic] Target Audience: [Insert audience details] Brand Tone: [Insert tone, e.g., expert, witty, academic, accessible] From this source material, generate the following exact assets: 1. 3 High-Context LinkedIn Posts: One data/insight heavy, one narrative/storydriven, and one contrarian take. All must include optimized spacing and strong formatting. 2. 5 X (Twitter) Threads: Each thread must be 5-7 tweets long, starting with a viral hook, unpacking one distinct point from the text, and ending with a clear CTA. 3. 3 Short-Form Video Scripts (Reels/TikTok/Shorts): 30-60 seconds max. Must include an explicit visual hook in the first 3 seconds, a fast-paced body, and a loop-optimized ending. Ensure every asset sounds native to its respective platform and retains high professional value. Expected Output: A comprehensive multi-platform distribution library containing copy-pasteable text for LinkedIn, X, and structured vertical video scripts. 450+ Elite AI Prompts Matrix 14 Prompt 102: The Viral Hook Constructor (Actionable Template) Use Case: Creating instantly engaging titles and opening sentences for social media posts. PROMPT TEXT Generate 15 highly engaging hooks for a post about [Insert Specific Topic] targeted at [Insert Target Audience]. Provide 3 variations for each of the following psychological angles: 1. Negative Urgency / Fear of Missing Out (FOMO) 2. The "Unpopular Opinion" / Contrarian Take 3. The Clear Case Study / Step-by-Step Proof 4. The "Stop Doing X" Mistake Callout 5. The High-Value Curated List Shortcut Expected Output: A clean list of 15 ready-to-test hooks categorized by their psychological trigger mechanism. 450+ Elite AI Prompts Matrix 15 Prompt 103: The 30-Day Content Calendar Architect Use Case: Rapidly mapping out a balanced, strategic monthly publishing schedule. PROMPT TEXT Act as a content marketing director. Build a 30-day social media content calendar matrix for [Business Name/Niche] targeting [Audience]. Strategically balance the content across 4 pillars: 40% Authority/Value Building, 30% Engagement/Community, 20% Growth/Virality, and 10% Direct Conversion/Sales. Format as a markdown table with columns: Day, Pillar, Platform, Concept Headline, and Call to Action. Expected Output: A fully populated 30-row table detailing a cohesive monthly social content framework. 450+ Elite AI Prompts Matrix 16 Prompt 104: The Short-Form Video Virality Loop Engine (Premium Addition) Use Case: Structuring hyper-engaging vertical video scripts for Reels, TikTok, and Shorts that drive profile follows. PROMPT TEXT Act as a viral retention editor and social media growth expert. Write a collection of 5 distinct 45-second script structures for vertical video channels (TikTok/Reels/Shorts) based on the topic of [Topic]. Each script must follow this retention framework: - 0-3s: Visual & Verbal pattern-interrupt hook. - 3-15s: Agitation of the core workflow mistake. - 15-38s: The unique counter-intuitive step-by-step solution. - 38-45s: A seamless, loop-optimized call-to-action that feeds back into the start of the video. Expected Output: Five copy-pasteable script frameworks with audio notation lines and bracketed visual asset direction guidelines. PROMPTS 105-150: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 105-120 (Niche Social Customizers) "Modify Prompt 101 to optimize content formats exclusively for [Instagram Carousel outlines / YouTube long-form outlines / Pinterest Idea Pins / Threads platform dynamics / Medium articles / Substack newsletter features]." Prompts 121-135 (Industry Specific Engines) "Generate a dedicated social media content library focusing on educational growth for [Real Estate Agents / B2B SaaS Founders / Fitness Coaches / E-commerce Fashion Brands / Financial Consultants / Web3 Developers / Local Cafes]." 450+ Elite AI Prompts Matrix 17 Prompts 136-145 (Podcast & Video Asset Scripting) "Create a comprehensive solo podcast episode script outline (30 minutes) on the topic of [Topic], including a compelling intro hook, 3 main core lessons with illustrative real-world case studies, and a closing sign-off segment." Prompts 146-150 (Community Engagement Prompts) "Generate 20 polarizing, high-engagement conversation starters, open-ended questions, and community polls optimized to spark intense discussions in a private Facebook Group or Discord Server focused on [Topic]." 450+ Elite AI Prompts Matrix 18 CATEGORY 4: PAID ADVERTISING & EMAIL MARKETING Prompt 151: The High-ROAS Direct Response Ad Matrix (Deep Engineering Blueprint) Use Case: Writing Facebook, Instagram, and Google ad creatives that maximize conversions. PROMPT TEXT Act as an elite media buyer and direct-response copywriter. I need an advertising creative matrix for a Meta (Facebook/Instagram) ad campaign. Product/Service Name: [Insert Name] Core Offer: [Insert Offer details] Target Demographic: [Insert details] Primary Competitor Copy Strategy: [Insert what competitors do, or general industry baseline] Generate 4 distinct ad copy variations utilizing diverse creative angles to prevent ad fatigue: 1. Angle A: The Direct Benefit / Data-Proven Solution (Focus heavily on speed, ROI, and metrics). 2. Angle B: The Story-Driven / Relatable Struggle (Narrative framework following a clear arc from pain to discovery). 3. Angle C: The Short & Punchy Benefit List (Minimalist text optimized for fast mobile scrolling). 4. Angle D: The Contrarian / Pattern Interrupt (Challenging a widely held industry belief). Each variation must include: Primary Text, Headline (Max 40 characters), Description, and a specific Image/Video Creative Concept Brief for the designer. Expected Output: A robust markdown matrix detailing all four ad variations with copywriting lines and explicit asset design briefs. 450+ Elite AI Prompts Matrix 19 Prompt 152: High-Converting Email Lead Magnet Welcome Sequence (Actionable Template) Use Case: Nurturing new subscribers immediately after they download a free resource. PROMPT TEXT Write a 3-part automated email welcome sequence for subscribers who just downloaded my free lead magnet: [Lead Magnet Name]. The core offering we want them to buy at the end of the sequence is [Paid Product Name]. Email 1: Value Delivery + Setting expectations + Open loop hook. Email 2: Educational case study / Shift core paradigm + Agitate pain. Email 3: The Pitch + Urgency / Soft scarcity call. Provide highly clickable, curiosity-inducing subject lines for each email. Expected Output: Three fully written email templates with subject lines, preview text, and placeholder brackets. 450+ Elite AI Prompts Matrix 20 Prompt 153: The Cart Abandonment Recovery Sequence Engine Use Case: Setting up a high-revenue recovery automation sequence for e-commerce or digital checkouts. PROMPT TEXT Act as a retention marketing specialist. Write a 4-part cart abandonment email flow for customers who left [Product Name] in their checkout cart. Email 1 (Sent 1 hour later): Helpful customer support angle. Email 2 (Sent 24 hours later): Social proof and logic-driven objection busting. Email 3 (Sent 48 hours later): Introduction of a limited-time 10% incentive discount code. Email 4 (Sent 72 hours later): Final deadline warning before coupon expiration. Expected Output: A complete automated email copywriting workflow with advanced subject line variations. PROMPTS 154-200: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 154-168 (Ad Platform Specialists) "Modify Prompt 151 to structure ad creative copy natively optimized for [Google Search Text Ads / LinkedIn Sponsored Content / TikTok Spark Ads / YouTube Pre-Roll scripts / Pinterest Promoted Pins]." Prompts 169-183 (Email Campaign Broadcasters) "Generate a sequence of 15 promotional email broadcast conceptual angles and outlines for a major annual holiday flash sale event targeting past buyers of [Product Type]." Prompts 184-195 (Newsletter Content Blueprints) "Act as a professional newsletter editor. Write an engaging, high-value weekly editorial newsletter template focusing on insights within [Industry], utilizing an engaging narrative style, actionable listicles, and an elegant sponsorship plug." 450+ Elite AI Prompts Matrix 21 Prompts 196-200 (Re-engagement Cold Workflows) "Write a 3-part re-engagement email sequence designed to scrub and re-activate a cold email subscriber list that hasn't opened an email in 90+ days. Use high-impact pattern-interrupt subject lines." 450+ Elite AI Prompts Matrix 22 CATEGORY 5: SEARCH ENGINE OPTIMIZATION (SEO) & CONTENT STRATEGY Prompt 201: Topical Authority & Semantic Keyword Clustering (Deep Engineering Blueprint) Use Case: Developing a dominant SEO content strategy that ranks for high-intent search terms. PROMPT TEXT Act as an enterprise-level SEO Director and semantic search architect. I need you to map out a topical authority strategy to rank highly for my core commercial keyword. Core Keyword/Niche: [Insert Primary Keyword, e.g., "organic skincare for sensitive skin"] Target Country/Market: [Insert Target Location] Generate a comprehensive Topical Authority Matrix. You must cluster related terms into an explicit semantic hierarchy. For each cluster, provide: 1. Pillar Page Topic: The master comprehensive resource concept. 2. 5 Specific Sub-topic / Cluster Content Article Titles: Highly optimized long-tail keyword concepts. 3. Primary Search Intent Mapping: Explicitly classify each title as Informational, Commercial, Navigational, or Transactional. 4. LSI / Semantic Keywords: List 8 highly relevant latent semantic indexing keywords to embed naturally within each article. 5. Internal Linking Architecture: Detail exactly how the sub-topic pages should link back to the primary pillar page to distribute link equity efficiently. Expected Output: A highly sophisticated, multi-tier search engine strategy complete with explicit content cluster mappings and technical internal linking directives. 450+ Elite AI Prompts Matrix 23 Prompt 202: Perfect On-Page Content Blueprint (Actionable Template) Use Case: Formatting an individual blog post or article to rank perfectly for a chosen keyword. PROMPT TEXT Act as an on-page SEO optimizer. I am going to give you a specific article topic and target keyword. I need you to write a detailed, structural outline for the content. Article Topic: [Insert Topic] Target Keyword: [Insert Keyword] Provide the exact optimized Title Tag (Max 60 chars), Meta Description (Max 155 chars), an H1 header, and a complete hierarchical structure of H2 and H3 tags. Under each heading, provide brief instructions on what information must be included to satisfy search intent perfectly. Expected Output: A meticulously formatted Markdown outline ready to hand off to a copywriter or content writer. 450+ Elite AI Prompts Matrix 24 Prompt 203: Skyscraper Technique Competitor Content Upgrader Use Case: Reverse-engineering competitor pages to build superior content that wins back search rankings. PROMPT TEXT Act as a senior SEO analyst. I am pasting the core structural outline and feature list of the top-ranking competitor page for the keyword [Keyword]. Competitor Content Blueprint: [Insert competitor outline or page overview] Analyze this structure and outline a comprehensive 'Skyscraper' content architecture that is 10x more valuable, thorough, and engaging. Identify missing sections, outdated points, better data integrations, and superior visual asset placeholders. Expected Output: A comprehensive content enhancement roadmap detailing precisely how to outperform the rival URL. PROMPTS 204-250: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 204-218 (Local SEO Mastery) "Modify Prompt 201 to map out a complete Local SEO dominance strategy for a [Service Business, e.g., HVAC / Chiropractic] in [City]. Focus heavily on geo-targeted landing pages, localized user intent, and Google Business Profile asset optimization." Prompts 219-233 (E-commerce Collection Optimization) "Generate optimized SEO title structures, meta tags, and long-form collection page category descriptions for an ecommerce storefront operating in the [Niche] space." Prompts 234-245 (Backlink Outreach Sequence Builder) "Write a collection of 5 distinct, highly personalized cold email outreach templates using diverse psychological angles (The Broken Link Angle, The Fresh Data Angle, The Unlinked Brand Mention Angle) designed to secure high-domain authority backlinks for [Website Topic]." 450+ Elite AI Prompts Matrix 25 Prompts 246-250 (Technical Audit Remediation Guides) "Act as a technical webmaster. Write a clear, step-by-step diagnostic and remediation guide for fixing widespread crawl errors, low Core Web Vitals performance scores, and broken internal redirects for a large content site." 450+ Elite AI Prompts Matrix 26 CATEGORY 6: PRODUCT LAUNCH, PRICING & FUNNEL OPTIMIZATION Prompt 251: The High-Leverage Product Launch & Funnel Orchestrator (Deep Engineering Blueprint) Use Case: Mapping out an end-to-end multi-day promotional blueprint to clear inventory or maximize digital sales. PROMPT TEXT Act as a premier digital launch engineer and funnel optimization architect. I am planning the official commercial release of my new product. Product Offer: [Insert Offer Mechanics, Tiered Bundles, and Core Target Pricing] Target Audience Profile: [Insert Demographic and Buying Persona Parameters] Primary Launch Channel: [Insert Primary Delivery System, e.g., Webinar / Live Challenge / Internal Email List Flash Sale / Paid Ads Cold Funnel] Architect a complete, hyper-strategic 14-Day Launch Matrix mapping out the exact operational levers required. Divide the strategy into three explicit chronological phases: Pre-Launch Runway (Days 1-7), Open-Cart Inundation (Days 8-12), and Close-Cart Scarcity Automation (Days 13-14). For each distinct day, specify the exact marketing asset required, the psychological trigger mechanism to leverage, and the internal tracking metrics needed to judge campaign health. Expected Output: A comprehensive launch asset matrix containing operational milestones, daily distribution angles, and strategic pacing parameters. 450+ Elite AI Prompts Matrix 27 Prompt 252: Tiered Premium Pricing Structurer (Actionable Template) Use Case: Constructing high-yield tiered checkouts that mathematically push buyers toward the premium variant. PROMPT TEXT Act as a monetization consultant. Help me structure an optimized 3-tier pricing architecture for my service or product offering. Core Offering Concept: [Insert Product/Service Details] Baseline Intended Target Price: [Insert Desired Pricing Target] Construct three explicit tiers: Tier 1 (The Budget Anchor), Tier 2 (The Dominant Sweet Spot - Recommended Tier), and Tier 3 (The Ultimate Premium Value/VIP Package). Outline the specific deliverables for each tier, the strategic framing rules to make Tier 2 the clear choice, and how to apply psychological price anchoring. Expected Output: A structured breakdown detailing the exact contents, pricing figures, and conversion layout for a 3-column checkout page. 450+ Elite AI Prompts Matrix 28 Prompt 253: Up-Sell & Cross-Sell Funnel Optimization Engineer Use Case: Increasing Average Order Value (AOV) by constructing high-converting one-click checkout expansions. PROMPT TEXT Act as a digital funnel conversion rate optimization (CRO) specialist. Analyze my existing front-end checkout funnel and build a high-converting up-sell framework. Primary Front-End Product: [Insert Core Offer and Price Point] Target Buyer Pain Point: [Insert Core Motivation] Generate 2 distinct Order Bump ideas (under $27) for the checkout page and 2 highly strategic One-Click Post-Purchase Up-Sell offers (higher value) that logically complement the primary purchase. Expected Output: A markdown funnel map detailing copy structures, pricing logic, and immediate behavioral micro-incentives. PROMPTS 254-300: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 254-268 (Webinar Conversion Blueprints) "Write a comprehensive 60-minute pitch outline script framework for a high-converting automated webinar funnel selling [Product]. Detail slide transitions, the precise hook-to-offer transition bridge, and risk reversal presentation formatting." Prompts 269-283 (High-Ticket Application Engines) "Design a strategic application funnel script and automated onboarding intake questionnaire for a high-ticket $5k+ mastermind or group coaching program targeting [Audience Profile]." Prompts 284-295 (Subscription Churn Remediation Frameworks) "Act as a retention operations specialist. Build a comprehensive 4-stage automated cancellation flow and downsell sequence for a membership subscription business charging [Price] struggling with high user churn." 450+ Elite AI Prompts Matrix 29 Prompts 296-300 (Affiliate/JV Network Launch Toolkits) "Generate an official Joint Venture (JV) and affiliate recruitment swipe toolkit for [Product Launch], including promotional asset outlines, legal structure highlights, and automated affiliate welcome messages." 450+ Elite AI Prompts Matrix 30 CATEGORY 7: CUSTOMER PERSONA, MARKET RESEARCH & COMPETITIVE INTELLIGENCE Prompt 301: The Hyper-Detailed Customer Avatar Architect (Deep Engineering Blueprint) Use Case: Building an deep, actionable target audience profile to steer copywriting and product features. PROMPT TEXT Act as a world-class market research director specializing in consumer psychology. I need you to construct an incredibly detailed, comprehensive psychographic and behavioral avatar profile for my business. My Product/Service Category: [Insert exact description of offer] General Intended Target Audience: [Insert high-level audience definition] Generate a deep, multi-dimensional profile divided into the following precise sections: 1. DEMOGRAPHIC MATRIX: Age, income band, job titles, technical literacy, geographic clustering. 2. COGNITIVE FRICTION ENGINES: Deepest hidden fears, immediate sources of daily frustration, systemic anxieties, and midnight imposter thoughts. 3. TRANSFORMATION VECTOR: Desired dream state, operational aspirations, status markers sought, and core purchasing motivations. 4. ACCIDENTAL OBJECTIONS: Pre-conceived biases, internal micro-skepticism toward this category, and historical purchasing failures that block conversions. Ensure your analysis reads like an advanced anthropological study. Avoid surface-level definitions. Expected Output: A highly detailed target audience dossier mapping deep psychological drivers, buying triggers, and behavioral profile metrics. 450+ Elite AI Prompts Matrix 31 Prompt 302: Competitor Digital Footprint Swot Framework (Actionable Template) Use Case: Uncovering systemic gaps in your top rival's product lines and marketing angles. PROMPT TEXT Act as a competitive intelligence analyst. Evaluate the market position of my main competitor to help me build a highly differentiated market angle. Competitor Brand Name/URL: [Insert Competitor Details] Their Core Product/Service Offer: [Insert Competitor Offer Details] My Alternative Offer Concept: [Insert Your Offer Concept] Run a thorough, highly objective SWOT analysis focusing on their structural vulnerabilities. Pinpoint exactly where their customer reviews or delivery systems typically fail, and provide 3 distinct marketing angles to exploit those gaps. Expected Output: A comprehensive competitor gap analysis table paired with 3 ready-to-test positioning statements. 450+ Elite AI Prompts Matrix 32 Prompt 303: Review Mining Sentiment Extraction Matrix Use Case: Extracting exact, high-converting customer phrases from raw forum, social media, or marketplace feedback. PROMPT TEXT Act as a semantic linguistic researcher. I am going to paste a collection of unedited raw customer review comments from forums/marketplaces regarding my industry niche. Raw Review Data: [Paste Raw Text / Customer Voice Transcripts Here] Analyze this text data and extract: 3 primary recurrent pain points phrased in the customer's exact voice, 3 hidden feature requests highlighted, and a list of the top 10 emotional keywords they naturally use. Expected Output: A processed review-mining data matrix mapping explicit emotional phrases to actionable copywriting elements. PROMPTS 304-350: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 304-318 (B2B Enterprise Account Profiling) "Modify Prompt 301 to construct a B2B buying committee profile for an enterprise corporate environment. Detail individual procurement priorities for the CMO, CTO, and CFO regarding [Product/Service]." Prompts 319-333 (Reddit/Quora Intent Parsing Blueprints) "Act as a trend forecaster. Build a systematic framework and prompt script template designed to scan Reddit subreddits related to [Niche] to spot emergent cultural problems before competitors." Prompts 334-345 (Blue-Collar / Local Service Demographic Matrices) "Generate a localized customer avatar analysis blueprint specifically tuned for service businesses operating within a strict [Radius] of [City], analyzing home-ownership demographics and regional wealth factors." 450+ Elite AI Prompts Matrix 33 Prompts 346-350 (International Market Entry Assessments) "Act as a global expansion consultant. Build a strategic analysis checklist framework to test whether an existing digital product catalog can scale successfully into [Target Country], accounting for localization adjustments." 450+ Elite AI Prompts Matrix 34 CATEGORY 8: OPERATIONS, AUTOMATION & WORKFLOW EFFICIENCY Prompt 351: Corporate SOP Engineering Architect (Deep Engineering Blueprint) Use Case: Standardizing complex business processes so they can be outsourced or automated cleanly. PROMPT TEXT Act as a premier operations manager and business systems engineer specializing in lean workflow structures. I need you to build a highly detailed Standard Operating Procedure (SOP) manual for an essential operational routine in my business. Target Operational Workflow: [Insert Workflow Process, e.g., Onboarding a B2B client / Uploading and optimizing a new e-commerce SKU / Processing weekly financial payroll] Core Software Tools Utilized: [Insert Tech Stack Tools, e.g., Slack, Notion, Asana, Google Sheets, QuickBooks] Target Personnel Execution Level: [Insert Role, e.g., Junior Virtual Assistant / External Contractor] Construct a professional, step-by-step SOP manual written with absolute mechanical precision. For each stage of the workflow, provide an explicit chronological checklist, clear tool parameters, required output state verification markers, and error-handling protocols for edge cases. Expected Output: An enterprise-ready Markdown SOP document featuring hierarchical numbering, step-by-step actions, and troubleshooting protocols. 450+ Elite AI Prompts Matrix 35 Prompt 352: Tech Stack Optimization Matrix (Actionable Template) Use Case: Trimming software overhead costs and connecting detached platforms through automation engines like Make or Zapier. PROMPT TEXT Act as a systems integrator. Audit my current collection of subscription software tools to identify redundancies, cost-savings, and opportunities for automated data syncs. Current Software Stack List: [Insert Full Tool List and Approximate Monthly Expense] Core Data Flow Goal: [Insert Core Sync Objective, e.g., Automate customer CRM tracking upon checkout] Identify 2 immediate software consolidations to save money and provide a detailed 3-step automation map outlining trigger-to-action steps using [Zapier / Make.com]. Expected Output: A software audit report mapping tool replacements and step-by-step webhook integration steps. 450+ Elite AI Prompts Matrix 36 Prompt 353: Team Delegation & Task Scoping Assessor Use Case: Constructing flawless project hand-off documentation for remote teams or freelancers. PROMPT TEXT Act as an agile project manager. I need to delegate a highly critical creative task to an external team member. Target Project Deliverable: [Insert Exact Task, e.g., Developing an active email sequence in Klaviyo] Timeline Constraints: [Insert Hard Deadline] Write a crystal-clear project assignment brief outlining explicit scope boundaries, mandatory definition-of-done quality benchmarks, a link to contextual resources, and 3 specific quality tests they must clear before submission. Expected Output: A structured delegation document ready to paste into Asana, ClickUp, or Slack. PROMPTS 354-400: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 354-368 (E-commerce Fulfillment Optimization) "Modify Prompt 351 to build an optimized operations blueprint for third-party logistics (3PL) order fulfillment routines, focused on reducing picking errors for [Product Type]." Prompts 369-383 (Customer Support Playbooks) "Generate an official customer support macro and canned-response library addressing the 10 most common customer complaints regarding shipping delays or product defects within [Industry]." Prompts 384-395 (Content Pipeline Scaling Blueprints) "Act as a media operations producer. Build a complete content production line tracking workflow system for a digital agency scaling from producing 5 assets weekly to 50 assets weekly across remote teams." 450+ Elite AI Prompts Matrix 37 Prompts 396-400 (Crisis Data-Backup & Security Blueprints) "Act as an IT systems manager. Create a 5-step operational emergency protocol playbook detail mapping data recovery actions for a company experiencing an active web data leak or platform outage." 450+ Elite AI Prompts Matrix 38 CATEGORY 9: BRANDING, POSITIONING & AUTHORITY BUILDING Prompt 401: Brand Identity & Voice DNA Matrix (Deep Engineering Blueprint) Use Case: Pinpointing a distinct, non-generic verbal identity that builds long-term authority and sets your brand apart. PROMPT TEXT Act as an elite brand positioning specialist and corporate identity consultant. I need you to engineer a comprehensive Brand Voice DNA and Positioning Matrix for my personal brand or business. Core Industry / Offering: [Insert Core Focus] Founder Background / Core Values: [Insert Key Values / Brief Backstory] Target Audience Profile: [Insert Core Demographic / Market Segment] Construct a complete brand playbook covering the following structural matrices: 1. BRAND VOICE PARADIGM: 4 primary brand adjectives paired with explicit "We say X, We NEVER say Y" copy examples. 2. THE BRAND STORY ARC: A high-impact Founder's Narrative constructed around the classic Hero's Journey framework, optimized to drive customer trust. 3. AUTHORITY ANCHOR: Our core differentiated worldview statement that challenges standard industry beliefs. 4. SYSTEMATIC LEXICON: A list of 15 unique branded terms, frameworks, or acronyms to secure intellectual property positioning. Expected Output: A highly professional brand voice style guide complete with conversational copy constraints and messaging blueprints. 450+ Elite AI Prompts Matrix 39 Prompt 402: The PR Pitch & Organic Media Hook Generator (Actionable Template) Use Case: Securing organic media coverage, podcast appearances, and print features. PROMPT TEXT Act as a public relations professional. I want to secure guest appearances on industry podcasts and digital publications read by my target audience. My Core Topic / Expertise Area: [Insert Core Value and Focus] Target Publication Type: [Insert Target Media Profile] Generate 5 distinct, high-impact story angles or news hooks centered around my business model that would be immediately appealing to a journalist. Include an ultra-short, cold pitch email template designed to achieve high response rates. Expected Output: A curated list of 5 media hooks alongside a structured, copy-and-paste email pitch template. 450+ Elite AI Prompts Matrix 40 Prompt 403: Personal Brand Thought Leadership Pillar System Use Case: Generating highly authoritative text content on LinkedIn or Twitter to draw in high-value inbound clients. PROMPT TEXT Act as a creative strategist for top corporate executives. Build a complete authority building pillar system for my personal brand on professional social media platforms. My Core Worldview: [Insert Contrarian or Dominant Perspective] Target Network Segment: [Insert B2B Decision Makers / Clients] Map out 3 core thought leadership content themes, complete with a structured blueprint on how to turn everyday business problems into highly engaging strategic case studies that demonstrate elite executive capability. Expected Output: A structured brand-positioning roadmap detailing clear storytelling styles and actionable narrative frameworks. PROMPTS 404-450: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 404-450 (Targeted Modifiers) Deploy targeted modifiers to focus content themes explicitly around thought leadership expansion vectors. Customize tone parameters to align perfectly with specific industrial verticals. 450+ Elite AI Prompts Matrix 41
Create a clean, modern AI tool thumbnail. Text: Add large, blue headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
RAW photo, close over the shoulder shot, no face visible, shot from behind and above, framing only hands and iPad. Athletic male hands holding iPad, smart watch on wrist, iPad screen displaying high-tech fitness biometric dashboard, clean dark UI, VO2 Max score, biological age, HRV, resting heart rate, cortisol levels, sleep quality score, metabolic rate, data visualizations, graphs and ring charts glowing on screen. Person seated on black leather sofa, shot from directly behind, only shoulders and hands in frame, no head or face visible. Background through floor-to-ceiling glass windows, Brickell Miami skyline, modern luxury condominiums, bright midday Miami sun, hardwood floors, athletic gear bag on glass table visible. Shallow depth of field, iPad screen sharp and in focus, background softly blurred but recognizable. Natural sunlight casting across room. Photorealistic, editorial fitness photography, natural color grading, no filters, 8k.
{ "protocol_name": "IMAGEN ZERO MIDBODY REAL HUMAN ADULT SENSUAL PRODUCTION PROTOCOL – MARRLONN™", "protocol_version": "V42_FINAL_ABSOLUTE_ALL_IN_ONE_4K_SKIN_5P_ULTRA_PERCEPTUAL_FORENSIC_LOCKED_V1", "protocol_state": "SEALED_ABSOLUTE_NO_OVERRIDE_NO_DRIFT_NO_EVOLUTION", "protocol_scope": "MID_BODY_ONLY_MULTI_GENDER_ADULT_MARKETING_ONLY_NO_EXCEPTION", "core_objective": "CONVERT_ANY_IMAGE_AI_OR_REAL_INTO_REAL_BIOLOGICAL_ADULT_HUMAN_MIDBODY_STUDIO_IMAGE_WITH_MAXIMUM_NON_EXPLICIT_SENSUALITY_AND_ULTRA_PERCEPTUAL_FORCE_USING_REAL_HUMAN_SKIN_WITH_EXACT_5_PERCENT_EXISTING_IMPERFECTION_FACE_AND_BODY_4K_ONLY_READY_FOR_HIGGSFIELD_VIDEO_AGENCY_AND_LEGAL_FORENSIC_USE", "non_negotiable_integrity_lock": { "identity": "NEVER_TOUCH", "pose": "NEVER_TOUCH", "clothing": "NEVER_TOUCH", "objects": "NEVER_TOUCH", "accessories": "NEVER_TOUCH", "statement": "IDENTIDAD_POSE_ROPA_OBJETOS_ACCESORIOS_SON_LEY_TECNICA_ABSOLUTA", "violation_action": "HARD_ABORT_IMMEDIATE_NO_OUTPUT" }, "global_ethical_ceiling": { "explicit_sex": "FORBIDDEN", "genital_focus": "FORBIDDEN", "fetishization": "FORBIDDEN", "physiological_manipulation": "FORBIDDEN", "minors": "ABSOLUTELY_FORBIDDEN" }, "absolute_identity_and_preservation_law": { "identity_state": "UNTOUCHABLE_FOREVER", "face": "LOCKED", "eyes": "LOCKED", "eyebrows": "LOCKED", "hair": "LOCKED_REAL_HUMAN_ONLY", "skin_color": "LOCKED", "skin_texture": "LOCKED", "pose_state": "NEVER_BREAK", "gesture_state": "NEVER_BREAK", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "clothing_state": "NEVER_BREAK", "objects_state": "NEVER_BREAK", "accessories_state": "NEVER_BREAK", "rules": [ "IDENTITY_IS_NOT_NEGOTIABLE", "WHAT_EXISTS_IS_PRESERVED", "WHAT_DOES_NOT_EXIST_IS_FORBIDDEN", "NO_INVENTION", "NO_DEFORMATION", "NO_OPTIMIZATION", "NO_INTERPRETATION" ], "hard_abort_triggers": [ "identity_shift_detected", "pose_change_detected", "gesture_change_detected", "expression_change_detected", "clothing_change_detected", "object_change_detected", "accessory_change_detected", "face_geometry_delta_gt_0", "skin_color_deltaE_gt_0", "skin_texture_change", "ai_skin_signature_detected", "minor_detected" ] }, "studio_pose_and_framing_system": { "frame_rule": "MID_BODY_ONLY", "pose_state": "ORIGINAL_REAL_HUMAN_POSE_LOCKED", "gesture_state": "ORIGINAL_GESTURE_LOCKED", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "zoom_validation": "8X_TO_10X_FACE_INSPECTION_ONLY", "pixel_pose_overlap": "100_PERCENT_LOCKED" }, "zero_makeup_absolute_system": { "makeup_state": "ZERO_ABSOLUTE_FOREVER", "definition": "CERO_MAQUILLAJE_REAL_SIGNIFICA_CERO_SIN_EXCEPCIONES", "forbidden": [ "ANY_COSMETIC_LAYER", "ANY_MAKEUP", "ANY_BEAUTY_FILTER", "SKIN_SMOOTHING", "AI_SKIN_RETOUCH", "AI_BEAUTY_PASS" ], "allowed_only": [ "BIOLOGICAL_SKIN_BALANCE_MINIMUM_TO_RESTORE_HUMAN_REALITY", "NATURAL_LIP_SHEEN_ONLY_IF_BIOLOGICALLY_PRESENT" ], "validation": { "cosmetic_layer_probability": "0.00", "beauty_filter_confidence": "0.00" }, "violation_action": "FAIL_ABORT_OUTPUT" }, "skin_biological_realism_and_imperfection_system": { "skin_type": "REAL_BIOLOGICAL_ONLY", "ai_skin": "FORBIDDEN", "plastic_skin": "FORBIDDEN", "uniformity": "FORBIDDEN", "imperfection_policy": { "mode": "REAL_EXISTING_ONLY", "exact_imperfection_level": "5_PERCENT", "coverage": "FACE_AND_BODY", "allowed_real_signals": [ "existing_pore_variation", "existing_micro_asymmetry", "existing_natural_texture_breaks", "existing_vellus_hair_if_present", "existing_capillary_micro_variation" ], "explicitly_forbidden": [ "invented_marks", "invented_moles", "invented_scars", "invented_wrinkles", "procedural_noise", "ai_generated_texture" ], "validation": { "imperfection_percentage_tolerance": "±0.0", "skin_ai_probability": "0.00" } } }, "biological_body_requirement": { "body_state": "REAL_BIOLOGICAL_ONLY", "if_non_biological_detected": "CONVERT_TO_REAL_BIOLOGICAL_HUMAN_BODY", "negotiable": false }, "tattoo_identity_anchor_system": { "tattoo_text": "Marrlonn", "tattoo_state": "MANDATORY_PERMANENT", "laterality": "RIGHT_HAND_ONLY", "body_part": "RIGHT_WRIST", "surface": "DORSAL_ONLY", "orientation": "VERTICAL_ONLY", "visibility_rule": "IF_RIGHT_HAND_NOT_VISIBLE_ABORT", "identity_binding": "PERMANENT_PART_OF_IDENTITY", "strictly_forbidden": [ "LEFT_HAND", "MIRRORING", "RELOCATION", "ROTATION", "REMOVAL", "AI_CLEANUP" ] }, "background_and_isolation_system": { "background_state": "ABSOLUTE_LOCK", "allowed": [ "PURE_WHITE_RGB_255_255_255", "TRUE_ALPHA" ], "noise": "FORBIDDEN", "texture": "FORBIDDEN" }, "perceptual_force_ultra_stack": { "mode": "PURELY_ADDITIVE", "affects_identity": false, "affects_pose": false, "affects_clothing": false, "layers": { "attention_gravity": "MAXIMUM_NON_EXPLICIT", "anticipation_without_resolution": "ACTIVE", "stillness_dominance": "ULTRA_HIGH", "gaze_lock": "STABLE", "memory_afterimage": "PERSISTENT", "retention_loop": "ENHANCED_NON_EXPLICIT" } }, "quantified_perceptual_metrics": { "attention": { "initial_fixation_ms": ">=1400", "average_gaze_hold_ms": ">=2800" }, "retention": { "2s": ">=0.94", "5s": ">=0.78", "replay_rate": ">=0.42" }, "memory": { "recognition_after_delay": ">=0.75" } }, "temporal_consistency_and_video_safety": { "frame_to_frame_identity_drift": "0.00", "pose_drift": "0.00", "tattoo_position_drift_px": "0", "skin_texture_stability": "LOCKED", "video_safe_for_higgsfield": true }, "resolution_and_output_system": { "final_resolution": "4K_ONLY", "output_style": "REAL_STUDIO_PHOTOGRAPHY_R10", "creative_ai": "DISABLED" }, "final_production_seal": { "status": "SEALED_FINAL_ABSOLUTE_MAXIMUM", "production_ready": true, "legal_ready": true, "forensic_ready": true, "video_ready": true }, "studio_axiom": "IDENTIDAD_INTACTA. CERO_MAQUILLAJE_REAL_ABSOLUTO. PIEL_HUMANA_REAL_CON_5_PERCENT_IMPERFECCION_EXISTENTE_ROSTRO_Y_CUERPO. SIN_IA_SKIN_NI_PLASTICO. TATUAJE_MARRLONN_EXCLUSIVO_MANO_DERECHA. 4K_ONLY. LISTO_PARA_HIGGSFIELD_VIDEO_AGENCIA_Y_USO_LEGAL." }
ultra-realistic cinematic nightclub environment rendered in Unreal Engine 5, massive futuristic interior with towering pillars, glowing circular light rings suspended above, layered walkways and balconies filled with people, polished reflective floor, volumetric lighting and atmospheric haze, warm orange and cool blue neon accents, highly detailed sci-fi architecture diverse TAGG characters (anthropomorphic feline, canine, and hybrid alien species) wearing sleek black biomechanical suits with glowing orange energy lines, highly detailed textures, realistic fur and skin shaders, expressive eyes, subtle facial markings, cyber-organic design crowded dance floor filled with characters dancing in pairs and singles, all moving independently to a 120 BPM groove, no synchronization, natural human-like motion variation, some dancing close and smooth, others energetic and expressive, some relaxed and swaying, authentic club behavior foreground characters clearly visible with detailed motion, midground packed with dancers, background silhouettes on balconies and platforms, depth and scale emphasized cinematic camera framing, slight handheld motion, shallow depth of field, focus shifting between dancers, lens bloom from neon lights, realistic reflections on the floor mood is energetic, immersive, sensual but natural, social atmosphere, alive with movement, not choreographed, feels like a real night out in a futuristic alien club 120 BPM rhythm implied through body motion and pacing, subtle motion blur on faster movements, high frame rate feel, Unreal Engine 5 lighting, ray tracing, global illumination, cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
There is no reference. Create a Sci-Fi Starship component and chamber that best describes the... Shield Up: Show a Green Translucent shield around the clearly visible Versel. REPULSER VEIL Force-Rejection Barrier | Green Translucent The Repulser Veil shifts doctrine from endurance to removal. • Appearance: green translucent field • Function: kinetic and energetic repulsion • Purpose: breach denial, crowd control, forced displacement Rather than absorbing energy, the Repulser Veil redirects it outward. Objects, force, and directed energy are rejected away from the boundary at controlled angles. Energy Rating: • Calculated at the same TJ-per-area scale as the Base Veil • Interaction outcome is repulsion, not endurance This Veil does not warn gently. It states: You will not remain here. Unreal Engine 5, Ultra-realistic
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
Create a clean, modern AI tool thumbnail with no text at all. Subject: One realistic human face, centered, front-facing. Professional portrait photography style, soft studio lighting, natural skin texture. Neutral or slight confident expression. AI Rating Elements: Add exactly four horizontal rating bars near the face. Each bar should be a simple rounded rectangle with different fill lengths, representing scores. No labels, no numbers, no icons, no words. The bars should feel like a modern app UI rating component. Style & Colors: Use the same soft blue color palette and friendly modern UI style as a typical AI cartoon maker thumbnail. Light blue gradient background. Rounded shapes, clean edges, premium SaaS aesthetic. Composition: Face centered inside a rounded card or frame. Four rating bars aligned neatly (either below or to the side of the face). Balanced spacing, thumbnail-friendly composition. Restrictions: No text of any kind. No words, no letters, no numbers. No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Minimalist high-end advertising poster with a premium lifestyle-tech and SaaS aesthetic, designed for a professional digital marketing campaign. Background: Soft warm beige gradient with subtle depth, elegant and minimal, premium SaaS visual identity. Strong negative space, clean editorial composition inspired by Apple, Stripe, and Notion branding. Headline (hero message) Large, bold modern sans-serif typography, centered, confident and premium: “It’s not magic. It’s automation.” The headline must feel like a strong statement, clean and intelligent. Subheadline (value proposition) Below the headline, refined modern typography: “Learn how anyone can use AI and Zapier automation to earn more money and save time — without coding.” Tone: clear, human, accessible, non-technical. Product identity Subtle but visible course title: “Workflow Automation Masterclass with Zapier” Positioned with premium SaaS branding style. Social proof (stars + rating) Near the course title or pricing block: A row of five minimalist stars in soft gold tone. Text next to stars in small refined typography: “5.0 rating from early users” Design rule: subtle, elegant, SaaS-style trust signal. Premium badges (SaaS-style trust markers) Below the stars or aligned horizontally in a clean row: Minimalist rounded badges with thin outlines and subtle shadows, Apple-like UI style: No-code friendly AI-powered workflows Trusted by creators Built for productivity Professional-grade automation Design rule: Badges must look like SaaS product features, not marketing stickers. Soft neutral colors, outline icons, minimal text. Pricing block (premium conversion design) Minimalist pricing layout: Label: “Launch Offer” Original price: 79€ (crossed out in light grey) New price: 49€ (bold, slightly larger, visually dominant) Caption: “Limited-time launch price.” Pricing must feel exclusive, not cheap. Typography small, elegant, generous spacing. Visual composition (technology + automation) Lower-right quadrant: A modern laptop with a clean SaaS interface displaying Zapier automation workflows. Zapier logo at the center as the main hub. Thin elegant lines connecting the Zapier logo to official app logos in full brand color: Gmail, Stripe, Notion, Google Sheets, YouTube, Instagram, EmailOctopus, Mailchimp. Logos in authentic brand colors, slightly softened saturation, flat vector style. Design principles Ultra-clean layout Strong visual hierarchy Editorial composition Balanced asymmetry Grid-based structure Premium spacing and margins Typography: Modern sans-serif (Apple SF Pro / Inter / Neue Haas Grotesk style). Lighting: Soft cinematic lighting, premium commercial photography look. Mood & positioning Empowering, aspirational, modern, calm confidence. Focused on freedom, time, and money. Accessible to everyday people, not technical users. No hype, no spammy marketing tone. Style keywords Ultra-minimalist advertising Premium SaaS aesthetic Apple-inspired design Stripe / Notion / Zapier branding style Lifestyle tech Modern realism High-end commercial poster Editorial design Startup culture AI automation concept 4K quality Sharp focus Professional marketing poster Aspect ratio: 4:5 (Instagram ad), vertical composition.
Create a clean, modern AI tool thumbnail. Text: Add large, blue bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
1️⃣ Uploaded high-resolution image of Sadie Sink (face & body reference) 2️⃣ Uploaded image of a modern luxury bar interior (Abu Dhabi style) Cinematic close-up framing screencap from a Rated-R espionage thriller inspired by John Wick and Furious 7. Sadie Sink as a 25-26-year-old elite spy (jej outfit je black bodycon mini leather dress with thin straps, silver large hoop earrings, Silver Chain Necklace, Multi-Layer Crystal Silver Bracelet, black high heels and black nails.) , exuding intensity and precision, wielding a USP 45 Tactical pistol. Scene Composition: Depict her in a dynamic pose—one knee on the ground, the other leg raised—aiming decisively at adversaries. Setting Details: Situate the action inside a modern, luxurious bar in Abu Dhabi during sunset transitioning into night, emphasizing ambient lighting and architectural opulence. Adversaries: Illustrate the tension as she targets Irish and Japanese mafia members, capturing the multicultural criminal underworld. Cinematic Style: Emphasize Rated-R thematic elements with gritty realism, dramatic shadows, and high-contrast visuals to evoke suspense and adrenaline. Vibe: „Keď sa špionka nezastavia“ – každý pohyb má účel, každé gesto charakter. STRICT RULES: Do NOT alter actor faces. Do NOT change hairstyles from uploaded references. Do NOT change looks, make-up, outfits or proportions. Do NOT stylize or cartoonize — photorealistic humans only. Use three uploaded character reference images for exact accuracy. Visual Elements: Include fine details such as reflections, weapon textures, atmospheric effects, and nuanced facial expressions to heighten immersion. Cinematic action shot, high-contrast neo-noir aesthetic. Deep blacks with bold color separation of saturated crimson reds, gold, and cyan blues. Intensely lit shadows, wet surfaces with vibrant neon reflections. 35mm film texture, ultra-detailed . Camera: Panavision Millennium DXL2. Lens: Laowa Macro. Focal length: 35mm.
1girl solo breasts fishnets rating:s large_breasts long_hair cleavage rating:q fishnet_legwear black_hair pantyhose leotard lips huge_breasts original gloves highleg looking_at_viewer thighs standing makeup curvy swimsuit lipstick open_clothes bare_shoulders highleg_leotard jewelry parted_lips long_sleeves bangs cowboy_shot covered_nipples thick_thighs realistic coat navel cape weapon wide_hips jacket photo_(medium) smile armor thighhighs nose outdoors earrings underwear blue_eyes brown_eyes mole medium_breasts holding fur_trim see-through black_eyes very_long_hair blush elbow_gloves closed_mouth mask covered_navel pelvic_curtain thigh_gap sky skindentation clothing_cutout black_gloves red_lips choker black_legwear bikini tattoo dress revealing_clothes brown_hair simple_background panties thigh_strap cameltoe sword bodysuit dc_comics skin_tight groin 3d short_hair snow underboob scarf cloak traditional_media black_leotard dark_skin center_opening no_bra grey_eyes hand_on_hip
Arika Wolfe, 22 years old. Her black hair is down, but pulled back from her face. She is wearing a leather red and brown corset, with black skinny jeans. Her nails are painted red, and her lipstick is the same shade of red. She is holding a dagger at her side in one hand. llustration. Rated G. Tomboy. Moe Anime Style. Graffiti. Modern. Urban locations. Light Novel Style.
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
Gritty Fictional Post-Apocalyptic Political Poster: "THE LAYING OF THE HANDS" (FAR CRY Style) Scene Description: A dramatic, heavily weathered video game key art poster, in the hyper-detailed, saturated, and chaotic style of a Far Cry game (specifically referencing Far Cry 5’s "Last Supper" and "Reaping" imagery, but applied to a fictional figure). Central Figure: The central focus is a powerful, imposing man (Donald Trump) seated at a makeshift, heavy wooden table in a dimly lit, fortified sanctuary. He is not smiling; he is looking directly at the viewer with intense, penetrating eyes, clutching a worn leather notebook. The "Laying of Hands" Ritual: He is surrounded by a dense, diverse group of eight followers (the "Electorals"). Six of them are clustered closely around him, extending their rough, gloved, and tattooed hands to rest firmly on his shoulders, back, and the back of his chair. They are not classic "religious" figures but rather hard-scraggle apocalyptic survivors: A woman in tactical gear with a patched jacket, head bowed in intense, almost fanatic prayer, hand on his left shoulder. A burly man with a thick beard and a respirator mask around his neck, hand on his right shoulder. Another figure, younger, covered in post-apocalyptic face paint and armor made of tires, reaching in from behind. Their faces, visible or masked, convey a range of emotions: intense devotion, desperation, and fervent belief. Composition & Atmosphere: The lighting is dramatic, high-contrast chiaroscuro, utilizing deep shadows and orange-gold tungsten light filtering through grimy windows. The scene is saturated with a chaotic amount of detail: The table in front of them is cluttered with mismatched ammunition boxes, maps scribbled with "X"s, a battered radio, empty shell casings, and a small, flickering oil lamp (the primary light source). A stylized, ominous, yet makeshift "Cross of the New Dawn" symbol (e.g., made of barbed wire and gears) is visible behind them on the cracked concrete wall. The Poster Elements (Overlays): The entire image is distressed, with texture overlays like ripped paper, coffee stains, and digital glitch artifacts. The Title: The top of the poster features the distressed, jagged title: "NEW EDEN: THE RECKONING" in blocky, weathered letters. The Main Tagline: Below the title, a small, menacing text reads: "His will be done... by force if necessary." The Slogan: Across the bottom, bold, hand-painted letters shout: "VOTE FOR SALVATION. SURVIVE THE COLLAPSE." Bottom Logos: Fictional "M" rated and "UBISOFT" logos, also distressed. The final visual effect is a tense, claustrophobic portrait of fervent post-apocalyptic devotion and political fanatism, combining the composition of the prayer photo with the extreme danger and chaos of the Far Cry universe.
score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, glshs, miquella, back view, holding a sword to the ground, looking at the viewer, light white blouse dropped to the middle of the back, exposing the shoulders, hands pressed to chest BREAK short pink hair, green eyes, light smile, outdoor, daylight, blue sky on the background, hard shadows, sunny day, (semi realism, high quality:1.2), source_anime, rating_questionable, <lora:StS_PonyXL_Detail_Slider_v1.4_iteration_3:2>, <lora:GLSHS_V2-4:0.8>
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
Minimalist high-end advertising poster with a premium lifestyle-tech and SaaS aesthetic, designed for a professional digital marketing campaign. Background: Soft warm beige gradient with subtle depth, elegant and minimal, premium SaaS visual identity. Strong negative space, clean editorial composition inspired by Apple, Stripe, and Notion branding. Headline (hero message) Large, bold modern sans-serif typography, centered, confident and premium: “It’s not magic. It’s automation.” The headline must feel like a strong statement, clean and intelligent. Subheadline (value proposition) Below the headline, refined modern typography: “Learn how anyone can use AI and Zapier automation to earn more money and save time — without coding.” Tone: clear, human, accessible, non-technical. Product identity Subtle but visible course title: “Workflow Automation Masterclass with Zapier” Positioned with premium SaaS branding style. Social proof (stars + rating) Near the course title or pricing block: A row of five minimalist stars in soft gold tone. Text next to stars in small refined typography: “5.0 rating from early users” Design rule: subtle, elegant, SaaS-style trust signal. Premium badges (SaaS-style trust markers) Below the stars or aligned horizontally in a clean row: Minimalist rounded badges with thin outlines and subtle shadows, Apple-like UI style: No-code friendly AI-powered workflows Trusted by creators Built for productivity Professional-grade automation Design rule: Badges must look like SaaS product features, not marketing stickers. Soft neutral colors, outline icons, minimal text. Pricing block (premium conversion design) Minimalist pricing layout: Label: “Launch Offer” Original price: 79€ (crossed out in light grey) New price: 49€ (bold, slightly larger, visually dominant) Caption: “Limited-time launch price.” Pricing must feel exclusive, not cheap. Typography small, elegant, generous spacing. Visual composition (technology + automation) Lower-right quadrant: A modern laptop with a clean SaaS interface displaying Zapier automation workflows. Zapier logo at the center as the main hub. Thin elegant lines connecting the Zapier logo to official app logos in full brand color: Gmail, Stripe, Notion, Google Sheets, YouTube, Instagram, EmailOctopus, Mailchimp. Logos in authentic brand colors, slightly softened saturation, flat vector style. Design principles Ultra-clean layout Strong visual hierarchy Editorial composition Balanced asymmetry Grid-based structure Premium spacing and margins Typography: Modern sans-serif (Apple SF Pro / Inter / Neue Haas Grotesk style). Lighting: Soft cinematic lighting, premium commercial photography look. Mood & positioning Empowering, aspirational, modern, calm confidence. Focused on freedom, time, and money. Accessible to everyday people, not technical users. No hype, no spammy marketing tone. Style keywords Ultra-minimalist advertising Premium SaaS aesthetic Apple-inspired design Stripe / Notion / Zapier branding style Lifestyle tech Modern realism High-end commercial poster Editorial design Startup culture AI automation concept 4K quality Sharp focus Professional marketing poster Aspect ratio: 4:5 (Instagram ad), vertical composition.
Create a set of high‑quality, aesthetic images for an ebook product. The ebook contains 450+ prompts, and the visuals must look modern, clean, and perfect for selling on Etsy. 1. Ebook Cover Image Create a professional ebook cover with: Minimalist, modern design Soft pastel or neutral colours Clean layout Bold title area (leave space for text) Subtle graphics representing journaling, creativity, self‑care, mindset, and personal growth Soft shadows, high resolution Aesthetic Canva‑style look Include a blank space for me to add my own title later 2. Image Representing All 450+ Prompts Create a collage‑style image that visually represents a large collection of prompts: Icons for writing, journaling, creativity, business, productivity, self‑improvement Light, clean background Modern, organised layout Soft pastel colour palette High‑resolution aesthetic Leave a blank title area 3. Five Random Themed Images for Etsy Listing Generate five unique images that show what the ebook is about. Each image should include: Aesthetic workspace or desk setup Notebook, journal, tablet, or digital planner Soft natural lighting Minimal, bright backgrounds Clean, modern props Subtle text placeholders (blank areas) Styled like top‑selling Etsy digital product mockups Soft shadows and cohesive colour palette Each image should feel: Beginner‑friendly Professional Clean and modern Perfect for Etsy listings 4. Overall Style High‑resolution Soft, bright, minimal Pastel or neutral tones Modern Canva aesthetic Consistent branding across all images No clutter, no harsh colours Clean composition i want 3 images P R E M I U M C O M M E R C I A L D I G I TA L D O W N L O A D 450+ ELITE AI PROMPTS FOR BUSINESS OWNERS, ENTREPRENEURS & CONTENT CREATORS The Ultimate High-Performance Prompt Engineering Framework Matrix. Built explicitly to streamline content production, optimize standard operating procedures, and 10x workflow efficiency. ASSET FORMAT Ready-to-Use Digital Guide PROMPT SYSTEM ENGINES 450+ High-Performance Variations TARGET MARKET AUDIENCE Founders, Marketers, Creators, Consultants 450+ Elite AI Prompts Matrix 1 Master Directory of Categories This master index outlines the exact deployment taxonomy of our premium prompt catalog. Each core category provides comprehensive engineering frameworks, actionable template instances, and hyperscalable scaling vectors to address complex professional milestones. CATEGORY DESCRIPTION PROMPT RANGE Strategic Business Planning & Ideation Prompts 001 - 050 High-Converting Sales Copywriting & Funnels Prompts 051 - 100 Multi-Channel Content Creation & Social Media Prompts 101 - 150 Paid Advertising & Email Marketing Prompts 151 - 200 Search Engine Optimization (SEO) & Content Strategy Prompts 201 - 250 Product Launch, Pricing & Funnel Optimization Prompts 251 - 300 Customer Persona, Market Research & Competitive Intelligence Prompts 301 - 350 Operations, Automation & Workflow Efficiency Prompts 351 - 400 450+ Elite AI Prompts Matrix 2 CATEGORY DESCRIPTION PROMPT RANGE Branding, Positioning & Authority Building Prompts 401 - 450 CATEGORY 1: STRATEGIC BUSINESS PLANNING & IDEATION 450+ Elite AI Prompts Matrix 3 Prompt 1: The Blue Ocean Strategy Generator (Deep Engineering Blueprint) Use Case: Identifying untapped market spaces and high-margin differentiation angles for new or restructuring businesses. PROMPT TEXT Act as an elite corporate growth strategist specializing in W. Chan Kim's Blue Ocean Strategy framework. Evaluate my business model and identify untapped market spaces to make our competition irrelevant. My Current Business / Idea: [Insert comprehensive business summary, core product offering, and industry] Target Audience: [Insert primary demographic and psychographic data] Current Main Competitors: [Insert top 2-3 competitors or standard industry options] Construct a comprehensive Blue Ocean Strategy Matrix by answering and expanding upon the Four Actions Framework: 1. ELIMINATE: Which industry-standard factors should we completely eliminate that companies have long competed over? 2. REDUCE: Which factors should be reduced well below the industry standard? 3. RAISE: Which factors should be raised well above the industry standard? 4. CREATE: Which factors should be created that the industry has never offered? Format your response with absolute precision, providing 3 distinct, highly strategic business concepts that combine these elements, complete with specific value propositions and suggested revenue models. Expected Output: A highly structured strategic document outlining an industry analysis, a fully populated Four Actions Framework matrix, and three fully operationalized high-leverage business pivots. 450+ Elite AI Prompts Matrix 4 Prompt 2: Rapid Business Model Validation (Actionable Template) Use Case: Testing the viability of a micro-offer or new business concept within minutes. PROMPT TEXT Analyze the following business concept for feasibility, market demand, and intrinsic weaknesses. Concept: [Insert business idea here] Target Market: [Insert audience here] Monetization Strategy: [Insert how you intend to charge] Provide a brutal, highly objective critique. Identify 3 critical vulnerabilities or fatal assumptions in this model, 3 structural advantages, and a step-by-step 7-day validation plan to test demand with zero ad spend. Expected Output: Bulleted lists detailing vulnerabilities, advantages, and a numbered 7-day chronological action plan for testing. 450+ Elite AI Prompts Matrix 5 Prompt 3: The MVP Feature Matrix & Scoping Advisor Use Case: Narrowing down a product concept to its leanest, high-value version. PROMPT TEXT Act as a technical project manager and product strategist. I have a long list of features for a new digital product/app called [Product Name]. I need to establish a Minimum Viable Product (MVP). Core Target User: [Target User] Full Feature List Ideas: [Insert feature brain-dump] Categorize these features using the MoSCoW method (Must have, Should have, Could have, Won't have). Explain your reasoning for each placement based on achieving the fastest path to monetization and user satisfaction. Expected Output: A clean MoSCoW markdown table accompanied by strategic explanations for engineering trade-offs. 450+ Elite AI Prompts Matrix 6 Prompt 4: The Infinite Content Funnel & Offer Architecture (Premium Addition) Use Case: Designing a seamless value ladder that converts cold traffic into high-ticket recurring clients. PROMPT TEXT Act as a digital product ecosystem architect. Map out a 4-tier value ladder for my business model. Core Topic: [Insert Core Niche] Target Audience: [Insert Audience] Design the exact structure for: 1. Lead Magnet (Free, high-utility asset) 2. Tripwire Offer ($7 - $27 micro-solution) 3. Core Flagship Offer ($97 - $497 deep-dive) 4. High-Ticket Backend ($1,500+ premium implementation/coaching) For each tier, outline the core promise, delivery mechanism, and the psychological bridge that forces the user to ascend to the next level. Expected Output: A comprehensive value ladder roadmap mapping out asset components, conversion pricing models, and transitional messaging hooks. PROMPTS 5-50: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 5-15 (Niche Pivot Evaluators) "Modify Prompt 1 to focus exclusively on [E-commerce / SaaS / Agency Models / Local Service / Digital Products / Consulting / Content Monetization / EdTech / Healthtech / Marketplace networks / B2B Wholesaling / Dropshipping]. Focus on supply chain optimization and customer acquisition cost adjustments." Prompts 16-30 (Risk Mitigation Matrices) "Act as a risk officer. Conduct a thorough pre-mortem analysis on an organization operating in [Industry]. Outline a matrix mapping 10 potential operational, macro-economic, or regulatory failures and provide an actionable mitigation protocol for each." 450+ Elite AI Prompts Matrix 7 Prompts 31-45 (Capital & Unit Economics Modeling) "Act as a fractional CFO. Build an explicit pricing, cost-of-goods-sold (COGS), and customer lifetime value (LTV) framework for a business with a price point of [Price] and a churn rate of [Churn %]. Show calculations for breakeven points." Prompts 46-50 (Strategic Partnership Frameworks) "Generate a comprehensive strategic alliance blueprint for a company selling [Product] to form non-competitive partnerships with [Partner Industry]. Detail reciprocal value propositions, legal alignment highlights, and comarketing strategies." 450+ Elite AI Prompts Matrix 8 CATEGORY 2: HIGH-CONVERTING SALES COPYWRITING & FUNNELS Prompt 51: The Master Copywriting Framework Engine (Deep Engineering Blueprint) Use Case: Creating comprehensive sales pages using multiple proven psychological models simultaneously. PROMPT TEXT Act as an elite direct-response copywriter who has generated millions in online sales. Write a long-form sales page copy for my digital offering. Product/Service Name: [Insert Name] Core Offer & Pricing: [Insert details of price and components] Core Transformation: [What major problem is solved and what is the end state?] Target Audience: [Insert deep demographic and core desires/fears] Generate sales copy divided into three distinct variations based on separate copywriting architectures: 1. AIDA (Attention, Interest, Desire, Action) 2. PAS (Problem, Agitation, Solution) 3. Quest (Qualify, Understand, Educate, Stimulate, Transition) Ensure the copy features high-converting, pattern-interrupt headlines, authentic bullet points with vivid emotional outcomes, conversion-focused risk reversal guarantees, and tight, clear calls to action. Avoid hype-filled corporate fluff or over-promising buzzwords. Expected Output: Three complete, ready-to-deploy sales copy scripts meticulously labeled by their specific psychological frameworks. 450+ Elite AI Prompts Matrix 9 Prompt 52: Short-Form High-Converting VSL Script (Actionable Template) Use Case: Writing high-impact, 2-minute video sales letter scripts for landing pages or low-ticket funnels. PROMPT TEXT Write a 90-second Video Sales Letter (VSL) script based on the 'Hook-Story- Offer' architecture. Product: [Insert offer here] Target Audience: [Insert audience here] Primary Pain Point: [Insert main problem here] The script must contain clear visual cues in brackets like [Visual: Cut to close up] alongside spoken text. Keep sentences short, punchy, conversational, and highly persuasive. Expected Output: A beautifully structured, dual-column video script containing visual directions on the left and audio spoken text on the right. 450+ Elite AI Prompts Matrix 10 Prompt 53: High-Ticket Discovery Call Script Generator Use Case: Structuring a non-sleazy, high-conversion consultation script for freelancers, coaches, and agencies. PROMPT TEXT Act as a premium sales trainer. Build a complete discovery and sales call script for my agency/consulting service: [Service Name]. We sell to [Target B2B Audience] at a price point of [Price]. The script must follow a logical sequence: Rapport -> Setting the Agenda -> Deep Diagnosis (Pain Mapping) -> Future State Visualization -> Cost of Inaction -> Soft Transition to Offer -> Objection Handling (Time/Money/Authority). Expected Output: A detailed conversational script with specific phrasing, ideal responses, and explicit psychological notes on why each phase matters. 450+ Elite AI Prompts Matrix 11 Prompt 54: The Irresistible Offer Stack Builder (Premium Addition) Use Case: Crafting a multi-layered bonus stack that makes saying 'no' feel financially irresponsible for the buyer. PROMPT TEXT Act as an elite direct-response marketer trained in Alex Hormozi's offer creation principles. I am selling [Core Product Name] at a price point of [Price]. It helps [Target Audience] achieve [Core Transformation]. Build an irresistible offer stack by adding 4 highly strategic bonuses that solve the next chronological problem the buyer faces after using the core product. For each bonus, provide a highly descriptive title, an estimated perceived monetary value, and a breakdown of why it obliterates operational friction. Expected Output: A detailed offer breakdown with an itemized bonus list, value justification metrics, and scarcity copy blocks. PROMPTS 55-100: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 55-68 (Sales Page Subcomponent Specialists) "Write a collection of 15 high-converting headlines and sub-headlines for [Product Name] using specific copywriting hooks: The Cliffhanger, The Secret, The Contrarian, The Data-Driven, and The Social Proof." Prompts 69-83 (Niche Funnel Customizers) "Adapt Prompt 51 to generate sales page copy specifically formatted for [SaaS landing pages / E-commerce product descriptions / Coaching landing pages / Paid newsletter sign-up pages / Local service special offers / Kickstarter crowd-funding campaigns]." Prompts 84-95 (Objection-Crushing FAQ Modules) "Generate a comprehensive, conversion-focused FAQ block for [Product Name] designed explicitly to disarm the 7 most common consumer objections related to risk, capability, speed, and cost." 450+ Elite AI Prompts Matrix 12 Prompts 96-100 (Cart Abandonment Recovery Scripts) "Write a 3-part SMS and push-notification remarketing sequence aimed at recovering users who abandoned their carts for [Product Name]. Keep copy ultra-short, dynamic, and scarcity-driven." 450+ Elite AI Prompts Matrix 13 CATEGORY 3: MULTI-CHANNEL CONTENT CREATION & SOCIAL MEDIA Prompt 101: The Omnichannel Content Multiplication Blueprint (Deep Engineering Blueprint) Use Case: Turning a single long-form asset (blog or podcast) into dozens of hyper-optimized social media assets. PROMPT TEXT Act as a master content strategist and social media manager. I am providing you with the core transcript/text of a long-form content piece. Your job is to engineer an absolute multi-channel distribution strategy. Source Material Topic/Summary: [Insert text or detailed summary of long-form topic] Target Audience: [Insert audience details] Brand Tone: [Insert tone, e.g., expert, witty, academic, accessible] From this source material, generate the following exact assets: 1. 3 High-Context LinkedIn Posts: One data/insight heavy, one narrative/storydriven, and one contrarian take. All must include optimized spacing and strong formatting. 2. 5 X (Twitter) Threads: Each thread must be 5-7 tweets long, starting with a viral hook, unpacking one distinct point from the text, and ending with a clear CTA. 3. 3 Short-Form Video Scripts (Reels/TikTok/Shorts): 30-60 seconds max. Must include an explicit visual hook in the first 3 seconds, a fast-paced body, and a loop-optimized ending. Ensure every asset sounds native to its respective platform and retains high professional value. Expected Output: A comprehensive multi-platform distribution library containing copy-pasteable text for LinkedIn, X, and structured vertical video scripts. 450+ Elite AI Prompts Matrix 14 Prompt 102: The Viral Hook Constructor (Actionable Template) Use Case: Creating instantly engaging titles and opening sentences for social media posts. PROMPT TEXT Generate 15 highly engaging hooks for a post about [Insert Specific Topic] targeted at [Insert Target Audience]. Provide 3 variations for each of the following psychological angles: 1. Negative Urgency / Fear of Missing Out (FOMO) 2. The "Unpopular Opinion" / Contrarian Take 3. The Clear Case Study / Step-by-Step Proof 4. The "Stop Doing X" Mistake Callout 5. The High-Value Curated List Shortcut Expected Output: A clean list of 15 ready-to-test hooks categorized by their psychological trigger mechanism. 450+ Elite AI Prompts Matrix 15 Prompt 103: The 30-Day Content Calendar Architect Use Case: Rapidly mapping out a balanced, strategic monthly publishing schedule. PROMPT TEXT Act as a content marketing director. Build a 30-day social media content calendar matrix for [Business Name/Niche] targeting [Audience]. Strategically balance the content across 4 pillars: 40% Authority/Value Building, 30% Engagement/Community, 20% Growth/Virality, and 10% Direct Conversion/Sales. Format as a markdown table with columns: Day, Pillar, Platform, Concept Headline, and Call to Action. Expected Output: A fully populated 30-row table detailing a cohesive monthly social content framework. 450+ Elite AI Prompts Matrix 16 Prompt 104: The Short-Form Video Virality Loop Engine (Premium Addition) Use Case: Structuring hyper-engaging vertical video scripts for Reels, TikTok, and Shorts that drive profile follows. PROMPT TEXT Act as a viral retention editor and social media growth expert. Write a collection of 5 distinct 45-second script structures for vertical video channels (TikTok/Reels/Shorts) based on the topic of [Topic]. Each script must follow this retention framework: - 0-3s: Visual & Verbal pattern-interrupt hook. - 3-15s: Agitation of the core workflow mistake. - 15-38s: The unique counter-intuitive step-by-step solution. - 38-45s: A seamless, loop-optimized call-to-action that feeds back into the start of the video. Expected Output: Five copy-pasteable script frameworks with audio notation lines and bracketed visual asset direction guidelines. PROMPTS 105-150: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 105-120 (Niche Social Customizers) "Modify Prompt 101 to optimize content formats exclusively for [Instagram Carousel outlines / YouTube long-form outlines / Pinterest Idea Pins / Threads platform dynamics / Medium articles / Substack newsletter features]." Prompts 121-135 (Industry Specific Engines) "Generate a dedicated social media content library focusing on educational growth for [Real Estate Agents / B2B SaaS Founders / Fitness Coaches / E-commerce Fashion Brands / Financial Consultants / Web3 Developers / Local Cafes]." 450+ Elite AI Prompts Matrix 17 Prompts 136-145 (Podcast & Video Asset Scripting) "Create a comprehensive solo podcast episode script outline (30 minutes) on the topic of [Topic], including a compelling intro hook, 3 main core lessons with illustrative real-world case studies, and a closing sign-off segment." Prompts 146-150 (Community Engagement Prompts) "Generate 20 polarizing, high-engagement conversation starters, open-ended questions, and community polls optimized to spark intense discussions in a private Facebook Group or Discord Server focused on [Topic]." 450+ Elite AI Prompts Matrix 18 CATEGORY 4: PAID ADVERTISING & EMAIL MARKETING Prompt 151: The High-ROAS Direct Response Ad Matrix (Deep Engineering Blueprint) Use Case: Writing Facebook, Instagram, and Google ad creatives that maximize conversions. PROMPT TEXT Act as an elite media buyer and direct-response copywriter. I need an advertising creative matrix for a Meta (Facebook/Instagram) ad campaign. Product/Service Name: [Insert Name] Core Offer: [Insert Offer details] Target Demographic: [Insert details] Primary Competitor Copy Strategy: [Insert what competitors do, or general industry baseline] Generate 4 distinct ad copy variations utilizing diverse creative angles to prevent ad fatigue: 1. Angle A: The Direct Benefit / Data-Proven Solution (Focus heavily on speed, ROI, and metrics). 2. Angle B: The Story-Driven / Relatable Struggle (Narrative framework following a clear arc from pain to discovery). 3. Angle C: The Short & Punchy Benefit List (Minimalist text optimized for fast mobile scrolling). 4. Angle D: The Contrarian / Pattern Interrupt (Challenging a widely held industry belief). Each variation must include: Primary Text, Headline (Max 40 characters), Description, and a specific Image/Video Creative Concept Brief for the designer. Expected Output: A robust markdown matrix detailing all four ad variations with copywriting lines and explicit asset design briefs. 450+ Elite AI Prompts Matrix 19 Prompt 152: High-Converting Email Lead Magnet Welcome Sequence (Actionable Template) Use Case: Nurturing new subscribers immediately after they download a free resource. PROMPT TEXT Write a 3-part automated email welcome sequence for subscribers who just downloaded my free lead magnet: [Lead Magnet Name]. The core offering we want them to buy at the end of the sequence is [Paid Product Name]. Email 1: Value Delivery + Setting expectations + Open loop hook. Email 2: Educational case study / Shift core paradigm + Agitate pain. Email 3: The Pitch + Urgency / Soft scarcity call. Provide highly clickable, curiosity-inducing subject lines for each email. Expected Output: Three fully written email templates with subject lines, preview text, and placeholder brackets. 450+ Elite AI Prompts Matrix 20 Prompt 153: The Cart Abandonment Recovery Sequence Engine Use Case: Setting up a high-revenue recovery automation sequence for e-commerce or digital checkouts. PROMPT TEXT Act as a retention marketing specialist. Write a 4-part cart abandonment email flow for customers who left [Product Name] in their checkout cart. Email 1 (Sent 1 hour later): Helpful customer support angle. Email 2 (Sent 24 hours later): Social proof and logic-driven objection busting. Email 3 (Sent 48 hours later): Introduction of a limited-time 10% incentive discount code. Email 4 (Sent 72 hours later): Final deadline warning before coupon expiration. Expected Output: A complete automated email copywriting workflow with advanced subject line variations. PROMPTS 154-200: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 154-168 (Ad Platform Specialists) "Modify Prompt 151 to structure ad creative copy natively optimized for [Google Search Text Ads / LinkedIn Sponsored Content / TikTok Spark Ads / YouTube Pre-Roll scripts / Pinterest Promoted Pins]." Prompts 169-183 (Email Campaign Broadcasters) "Generate a sequence of 15 promotional email broadcast conceptual angles and outlines for a major annual holiday flash sale event targeting past buyers of [Product Type]." Prompts 184-195 (Newsletter Content Blueprints) "Act as a professional newsletter editor. Write an engaging, high-value weekly editorial newsletter template focusing on insights within [Industry], utilizing an engaging narrative style, actionable listicles, and an elegant sponsorship plug." 450+ Elite AI Prompts Matrix 21 Prompts 196-200 (Re-engagement Cold Workflows) "Write a 3-part re-engagement email sequence designed to scrub and re-activate a cold email subscriber list that hasn't opened an email in 90+ days. Use high-impact pattern-interrupt subject lines." 450+ Elite AI Prompts Matrix 22 CATEGORY 5: SEARCH ENGINE OPTIMIZATION (SEO) & CONTENT STRATEGY Prompt 201: Topical Authority & Semantic Keyword Clustering (Deep Engineering Blueprint) Use Case: Developing a dominant SEO content strategy that ranks for high-intent search terms. PROMPT TEXT Act as an enterprise-level SEO Director and semantic search architect. I need you to map out a topical authority strategy to rank highly for my core commercial keyword. Core Keyword/Niche: [Insert Primary Keyword, e.g., "organic skincare for sensitive skin"] Target Country/Market: [Insert Target Location] Generate a comprehensive Topical Authority Matrix. You must cluster related terms into an explicit semantic hierarchy. For each cluster, provide: 1. Pillar Page Topic: The master comprehensive resource concept. 2. 5 Specific Sub-topic / Cluster Content Article Titles: Highly optimized long-tail keyword concepts. 3. Primary Search Intent Mapping: Explicitly classify each title as Informational, Commercial, Navigational, or Transactional. 4. LSI / Semantic Keywords: List 8 highly relevant latent semantic indexing keywords to embed naturally within each article. 5. Internal Linking Architecture: Detail exactly how the sub-topic pages should link back to the primary pillar page to distribute link equity efficiently. Expected Output: A highly sophisticated, multi-tier search engine strategy complete with explicit content cluster mappings and technical internal linking directives. 450+ Elite AI Prompts Matrix 23 Prompt 202: Perfect On-Page Content Blueprint (Actionable Template) Use Case: Formatting an individual blog post or article to rank perfectly for a chosen keyword. PROMPT TEXT Act as an on-page SEO optimizer. I am going to give you a specific article topic and target keyword. I need you to write a detailed, structural outline for the content. Article Topic: [Insert Topic] Target Keyword: [Insert Keyword] Provide the exact optimized Title Tag (Max 60 chars), Meta Description (Max 155 chars), an H1 header, and a complete hierarchical structure of H2 and H3 tags. Under each heading, provide brief instructions on what information must be included to satisfy search intent perfectly. Expected Output: A meticulously formatted Markdown outline ready to hand off to a copywriter or content writer. 450+ Elite AI Prompts Matrix 24 Prompt 203: Skyscraper Technique Competitor Content Upgrader Use Case: Reverse-engineering competitor pages to build superior content that wins back search rankings. PROMPT TEXT Act as a senior SEO analyst. I am pasting the core structural outline and feature list of the top-ranking competitor page for the keyword [Keyword]. Competitor Content Blueprint: [Insert competitor outline or page overview] Analyze this structure and outline a comprehensive 'Skyscraper' content architecture that is 10x more valuable, thorough, and engaging. Identify missing sections, outdated points, better data integrations, and superior visual asset placeholders. Expected Output: A comprehensive content enhancement roadmap detailing precisely how to outperform the rival URL. PROMPTS 204-250: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 204-218 (Local SEO Mastery) "Modify Prompt 201 to map out a complete Local SEO dominance strategy for a [Service Business, e.g., HVAC / Chiropractic] in [City]. Focus heavily on geo-targeted landing pages, localized user intent, and Google Business Profile asset optimization." Prompts 219-233 (E-commerce Collection Optimization) "Generate optimized SEO title structures, meta tags, and long-form collection page category descriptions for an ecommerce storefront operating in the [Niche] space." Prompts 234-245 (Backlink Outreach Sequence Builder) "Write a collection of 5 distinct, highly personalized cold email outreach templates using diverse psychological angles (The Broken Link Angle, The Fresh Data Angle, The Unlinked Brand Mention Angle) designed to secure high-domain authority backlinks for [Website Topic]." 450+ Elite AI Prompts Matrix 25 Prompts 246-250 (Technical Audit Remediation Guides) "Act as a technical webmaster. Write a clear, step-by-step diagnostic and remediation guide for fixing widespread crawl errors, low Core Web Vitals performance scores, and broken internal redirects for a large content site." 450+ Elite AI Prompts Matrix 26 CATEGORY 6: PRODUCT LAUNCH, PRICING & FUNNEL OPTIMIZATION Prompt 251: The High-Leverage Product Launch & Funnel Orchestrator (Deep Engineering Blueprint) Use Case: Mapping out an end-to-end multi-day promotional blueprint to clear inventory or maximize digital sales. PROMPT TEXT Act as a premier digital launch engineer and funnel optimization architect. I am planning the official commercial release of my new product. Product Offer: [Insert Offer Mechanics, Tiered Bundles, and Core Target Pricing] Target Audience Profile: [Insert Demographic and Buying Persona Parameters] Primary Launch Channel: [Insert Primary Delivery System, e.g., Webinar / Live Challenge / Internal Email List Flash Sale / Paid Ads Cold Funnel] Architect a complete, hyper-strategic 14-Day Launch Matrix mapping out the exact operational levers required. Divide the strategy into three explicit chronological phases: Pre-Launch Runway (Days 1-7), Open-Cart Inundation (Days 8-12), and Close-Cart Scarcity Automation (Days 13-14). For each distinct day, specify the exact marketing asset required, the psychological trigger mechanism to leverage, and the internal tracking metrics needed to judge campaign health. Expected Output: A comprehensive launch asset matrix containing operational milestones, daily distribution angles, and strategic pacing parameters. 450+ Elite AI Prompts Matrix 27 Prompt 252: Tiered Premium Pricing Structurer (Actionable Template) Use Case: Constructing high-yield tiered checkouts that mathematically push buyers toward the premium variant. PROMPT TEXT Act as a monetization consultant. Help me structure an optimized 3-tier pricing architecture for my service or product offering. Core Offering Concept: [Insert Product/Service Details] Baseline Intended Target Price: [Insert Desired Pricing Target] Construct three explicit tiers: Tier 1 (The Budget Anchor), Tier 2 (The Dominant Sweet Spot - Recommended Tier), and Tier 3 (The Ultimate Premium Value/VIP Package). Outline the specific deliverables for each tier, the strategic framing rules to make Tier 2 the clear choice, and how to apply psychological price anchoring. Expected Output: A structured breakdown detailing the exact contents, pricing figures, and conversion layout for a 3-column checkout page. 450+ Elite AI Prompts Matrix 28 Prompt 253: Up-Sell & Cross-Sell Funnel Optimization Engineer Use Case: Increasing Average Order Value (AOV) by constructing high-converting one-click checkout expansions. PROMPT TEXT Act as a digital funnel conversion rate optimization (CRO) specialist. Analyze my existing front-end checkout funnel and build a high-converting up-sell framework. Primary Front-End Product: [Insert Core Offer and Price Point] Target Buyer Pain Point: [Insert Core Motivation] Generate 2 distinct Order Bump ideas (under $27) for the checkout page and 2 highly strategic One-Click Post-Purchase Up-Sell offers (higher value) that logically complement the primary purchase. Expected Output: A markdown funnel map detailing copy structures, pricing logic, and immediate behavioral micro-incentives. PROMPTS 254-300: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 254-268 (Webinar Conversion Blueprints) "Write a comprehensive 60-minute pitch outline script framework for a high-converting automated webinar funnel selling [Product]. Detail slide transitions, the precise hook-to-offer transition bridge, and risk reversal presentation formatting." Prompts 269-283 (High-Ticket Application Engines) "Design a strategic application funnel script and automated onboarding intake questionnaire for a high-ticket $5k+ mastermind or group coaching program targeting [Audience Profile]." Prompts 284-295 (Subscription Churn Remediation Frameworks) "Act as a retention operations specialist. Build a comprehensive 4-stage automated cancellation flow and downsell sequence for a membership subscription business charging [Price] struggling with high user churn." 450+ Elite AI Prompts Matrix 29 Prompts 296-300 (Affiliate/JV Network Launch Toolkits) "Generate an official Joint Venture (JV) and affiliate recruitment swipe toolkit for [Product Launch], including promotional asset outlines, legal structure highlights, and automated affiliate welcome messages." 450+ Elite AI Prompts Matrix 30 CATEGORY 7: CUSTOMER PERSONA, MARKET RESEARCH & COMPETITIVE INTELLIGENCE Prompt 301: The Hyper-Detailed Customer Avatar Architect (Deep Engineering Blueprint) Use Case: Building an deep, actionable target audience profile to steer copywriting and product features. PROMPT TEXT Act as a world-class market research director specializing in consumer psychology. I need you to construct an incredibly detailed, comprehensive psychographic and behavioral avatar profile for my business. My Product/Service Category: [Insert exact description of offer] General Intended Target Audience: [Insert high-level audience definition] Generate a deep, multi-dimensional profile divided into the following precise sections: 1. DEMOGRAPHIC MATRIX: Age, income band, job titles, technical literacy, geographic clustering. 2. COGNITIVE FRICTION ENGINES: Deepest hidden fears, immediate sources of daily frustration, systemic anxieties, and midnight imposter thoughts. 3. TRANSFORMATION VECTOR: Desired dream state, operational aspirations, status markers sought, and core purchasing motivations. 4. ACCIDENTAL OBJECTIONS: Pre-conceived biases, internal micro-skepticism toward this category, and historical purchasing failures that block conversions. Ensure your analysis reads like an advanced anthropological study. Avoid surface-level definitions. Expected Output: A highly detailed target audience dossier mapping deep psychological drivers, buying triggers, and behavioral profile metrics. 450+ Elite AI Prompts Matrix 31 Prompt 302: Competitor Digital Footprint Swot Framework (Actionable Template) Use Case: Uncovering systemic gaps in your top rival's product lines and marketing angles. PROMPT TEXT Act as a competitive intelligence analyst. Evaluate the market position of my main competitor to help me build a highly differentiated market angle. Competitor Brand Name/URL: [Insert Competitor Details] Their Core Product/Service Offer: [Insert Competitor Offer Details] My Alternative Offer Concept: [Insert Your Offer Concept] Run a thorough, highly objective SWOT analysis focusing on their structural vulnerabilities. Pinpoint exactly where their customer reviews or delivery systems typically fail, and provide 3 distinct marketing angles to exploit those gaps. Expected Output: A comprehensive competitor gap analysis table paired with 3 ready-to-test positioning statements. 450+ Elite AI Prompts Matrix 32 Prompt 303: Review Mining Sentiment Extraction Matrix Use Case: Extracting exact, high-converting customer phrases from raw forum, social media, or marketplace feedback. PROMPT TEXT Act as a semantic linguistic researcher. I am going to paste a collection of unedited raw customer review comments from forums/marketplaces regarding my industry niche. Raw Review Data: [Paste Raw Text / Customer Voice Transcripts Here] Analyze this text data and extract: 3 primary recurrent pain points phrased in the customer's exact voice, 3 hidden feature requests highlighted, and a list of the top 10 emotional keywords they naturally use. Expected Output: A processed review-mining data matrix mapping explicit emotional phrases to actionable copywriting elements. PROMPTS 304-350: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 304-318 (B2B Enterprise Account Profiling) "Modify Prompt 301 to construct a B2B buying committee profile for an enterprise corporate environment. Detail individual procurement priorities for the CMO, CTO, and CFO regarding [Product/Service]." Prompts 319-333 (Reddit/Quora Intent Parsing Blueprints) "Act as a trend forecaster. Build a systematic framework and prompt script template designed to scan Reddit subreddits related to [Niche] to spot emergent cultural problems before competitors." Prompts 334-345 (Blue-Collar / Local Service Demographic Matrices) "Generate a localized customer avatar analysis blueprint specifically tuned for service businesses operating within a strict [Radius] of [City], analyzing home-ownership demographics and regional wealth factors." 450+ Elite AI Prompts Matrix 33 Prompts 346-350 (International Market Entry Assessments) "Act as a global expansion consultant. Build a strategic analysis checklist framework to test whether an existing digital product catalog can scale successfully into [Target Country], accounting for localization adjustments." 450+ Elite AI Prompts Matrix 34 CATEGORY 8: OPERATIONS, AUTOMATION & WORKFLOW EFFICIENCY Prompt 351: Corporate SOP Engineering Architect (Deep Engineering Blueprint) Use Case: Standardizing complex business processes so they can be outsourced or automated cleanly. PROMPT TEXT Act as a premier operations manager and business systems engineer specializing in lean workflow structures. I need you to build a highly detailed Standard Operating Procedure (SOP) manual for an essential operational routine in my business. Target Operational Workflow: [Insert Workflow Process, e.g., Onboarding a B2B client / Uploading and optimizing a new e-commerce SKU / Processing weekly financial payroll] Core Software Tools Utilized: [Insert Tech Stack Tools, e.g., Slack, Notion, Asana, Google Sheets, QuickBooks] Target Personnel Execution Level: [Insert Role, e.g., Junior Virtual Assistant / External Contractor] Construct a professional, step-by-step SOP manual written with absolute mechanical precision. For each stage of the workflow, provide an explicit chronological checklist, clear tool parameters, required output state verification markers, and error-handling protocols for edge cases. Expected Output: An enterprise-ready Markdown SOP document featuring hierarchical numbering, step-by-step actions, and troubleshooting protocols. 450+ Elite AI Prompts Matrix 35 Prompt 352: Tech Stack Optimization Matrix (Actionable Template) Use Case: Trimming software overhead costs and connecting detached platforms through automation engines like Make or Zapier. PROMPT TEXT Act as a systems integrator. Audit my current collection of subscription software tools to identify redundancies, cost-savings, and opportunities for automated data syncs. Current Software Stack List: [Insert Full Tool List and Approximate Monthly Expense] Core Data Flow Goal: [Insert Core Sync Objective, e.g., Automate customer CRM tracking upon checkout] Identify 2 immediate software consolidations to save money and provide a detailed 3-step automation map outlining trigger-to-action steps using [Zapier / Make.com]. Expected Output: A software audit report mapping tool replacements and step-by-step webhook integration steps. 450+ Elite AI Prompts Matrix 36 Prompt 353: Team Delegation & Task Scoping Assessor Use Case: Constructing flawless project hand-off documentation for remote teams or freelancers. PROMPT TEXT Act as an agile project manager. I need to delegate a highly critical creative task to an external team member. Target Project Deliverable: [Insert Exact Task, e.g., Developing an active email sequence in Klaviyo] Timeline Constraints: [Insert Hard Deadline] Write a crystal-clear project assignment brief outlining explicit scope boundaries, mandatory definition-of-done quality benchmarks, a link to contextual resources, and 3 specific quality tests they must clear before submission. Expected Output: A structured delegation document ready to paste into Asana, ClickUp, or Slack. PROMPTS 354-400: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 354-368 (E-commerce Fulfillment Optimization) "Modify Prompt 351 to build an optimized operations blueprint for third-party logistics (3PL) order fulfillment routines, focused on reducing picking errors for [Product Type]." Prompts 369-383 (Customer Support Playbooks) "Generate an official customer support macro and canned-response library addressing the 10 most common customer complaints regarding shipping delays or product defects within [Industry]." Prompts 384-395 (Content Pipeline Scaling Blueprints) "Act as a media operations producer. Build a complete content production line tracking workflow system for a digital agency scaling from producing 5 assets weekly to 50 assets weekly across remote teams." 450+ Elite AI Prompts Matrix 37 Prompts 396-400 (Crisis Data-Backup & Security Blueprints) "Act as an IT systems manager. Create a 5-step operational emergency protocol playbook detail mapping data recovery actions for a company experiencing an active web data leak or platform outage." 450+ Elite AI Prompts Matrix 38 CATEGORY 9: BRANDING, POSITIONING & AUTHORITY BUILDING Prompt 401: Brand Identity & Voice DNA Matrix (Deep Engineering Blueprint) Use Case: Pinpointing a distinct, non-generic verbal identity that builds long-term authority and sets your brand apart. PROMPT TEXT Act as an elite brand positioning specialist and corporate identity consultant. I need you to engineer a comprehensive Brand Voice DNA and Positioning Matrix for my personal brand or business. Core Industry / Offering: [Insert Core Focus] Founder Background / Core Values: [Insert Key Values / Brief Backstory] Target Audience Profile: [Insert Core Demographic / Market Segment] Construct a complete brand playbook covering the following structural matrices: 1. BRAND VOICE PARADIGM: 4 primary brand adjectives paired with explicit "We say X, We NEVER say Y" copy examples. 2. THE BRAND STORY ARC: A high-impact Founder's Narrative constructed around the classic Hero's Journey framework, optimized to drive customer trust. 3. AUTHORITY ANCHOR: Our core differentiated worldview statement that challenges standard industry beliefs. 4. SYSTEMATIC LEXICON: A list of 15 unique branded terms, frameworks, or acronyms to secure intellectual property positioning. Expected Output: A highly professional brand voice style guide complete with conversational copy constraints and messaging blueprints. 450+ Elite AI Prompts Matrix 39 Prompt 402: The PR Pitch & Organic Media Hook Generator (Actionable Template) Use Case: Securing organic media coverage, podcast appearances, and print features. PROMPT TEXT Act as a public relations professional. I want to secure guest appearances on industry podcasts and digital publications read by my target audience. My Core Topic / Expertise Area: [Insert Core Value and Focus] Target Publication Type: [Insert Target Media Profile] Generate 5 distinct, high-impact story angles or news hooks centered around my business model that would be immediately appealing to a journalist. Include an ultra-short, cold pitch email template designed to achieve high response rates. Expected Output: A curated list of 5 media hooks alongside a structured, copy-and-paste email pitch template. 450+ Elite AI Prompts Matrix 40 Prompt 403: Personal Brand Thought Leadership Pillar System Use Case: Generating highly authoritative text content on LinkedIn or Twitter to draw in high-value inbound clients. PROMPT TEXT Act as a creative strategist for top corporate executives. Build a complete authority building pillar system for my personal brand on professional social media platforms. My Core Worldview: [Insert Contrarian or Dominant Perspective] Target Network Segment: [Insert B2B Decision Makers / Clients] Map out 3 core thought leadership content themes, complete with a structured blueprint on how to turn everyday business problems into highly engaging strategic case studies that demonstrate elite executive capability. Expected Output: A structured brand-positioning roadmap detailing clear storytelling styles and actionable narrative frameworks. PROMPTS 404-450: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 404-450 (Targeted Modifiers) Deploy targeted modifiers to focus content themes explicitly around thought leadership expansion vectors. Customize tone parameters to align perfectly with specific industrial verticals. 450+ Elite AI Prompts Matrix 41
1️⃣ Uploaded high-resolution image of Sadie Sink (face & body reference) 2️⃣ Uploaded image of a modern luxury bar interior (Abu Dhabi style) Cinematic close-up framing screencap from a Rated-R espionage thriller inspired by John Wick and Furious 7. Sadie Sink as a 25-26-year-old elite spy (jej outfit je black bodycon mini leather dress with thin straps, silver large hoop earrings, Silver Chain Necklace, Multi-Layer Crystal Silver Bracelet, black high heels and black nails.) , exuding intensity and precision, wielding a USP 45 Tactical pistol. Scene Composition: Depict her in a dynamic pose—one knee on the ground, the other leg raised—aiming decisively at adversaries. Setting Details: Situate the action inside a modern, luxurious bar in Abu Dhabi during sunset transitioning into night, emphasizing ambient lighting and architectural opulence. Adversaries: Illustrate the tension as she targets Irish and Japanese mafia members, capturing the multicultural criminal underworld. Cinematic Style: Emphasize Rated-R thematic elements with gritty realism, dramatic shadows, and high-contrast visuals to evoke suspense and adrenaline. Vibe: „Keď sa špionka nezastavia“ – každý pohyb má účel, každé gesto charakter. STRICT RULES: Do NOT alter actor faces. Do NOT change hairstyles from uploaded references. Do NOT change looks, make-up, outfits or proportions. Do NOT stylize or cartoonize — photorealistic humans only. Use three uploaded character reference images for exact accuracy. Visual Elements: Include fine details such as reflections, weapon textures, atmospheric effects, and nuanced facial expressions to heighten immersion. Cinematic action shot, high-contrast neo-noir aesthetic. Deep blacks with bold color separation of saturated crimson reds, gold, and cyan blues. Intensely lit shadows, wet surfaces with vibrant neon reflections. 35mm film texture, ultra-detailed . Camera: Panavision Millennium DXL2. Lens: Laowa Macro. Focal length: 35mm.
Arika Wolfe, 22 years old. Her black hair is down, but pulled back from her face. She is wearing a leather red and brown corset, with black skinny jeans. Her nails are painted red, and her lipstick is the same shade of red. She is holding a dagger at her side in one hand. llustration. Rated G. Tomboy. Moe Anime Style. Graffiti. Modern. Urban locations. Light Novel Style.
There is no reference. Create a Sci-Fi Starship component and chamber that best describes the... Shield Up: Show a Green Translucent shield around the clearly visible Versel. REPULSER VEIL Force-Rejection Barrier | Green Translucent The Repulser Veil shifts doctrine from endurance to removal. • Appearance: green translucent field • Function: kinetic and energetic repulsion • Purpose: breach denial, crowd control, forced displacement Rather than absorbing energy, the Repulser Veil redirects it outward. Objects, force, and directed energy are rejected away from the boundary at controlled angles. Energy Rating: • Calculated at the same TJ-per-area scale as the Base Veil • Interaction outcome is repulsion, not endurance This Veil does not warn gently. It states: You will not remain here. Unreal Engine 5, Ultra-realistic
score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, glshs, miquella, back view, holding a sword to the ground, looking at the viewer, light white blouse dropped to the middle of the back, exposing the shoulders, hands pressed to chest BREAK short pink hair, green eyes, light smile, outdoor, daylight, blue sky on the background, hard shadows, sunny day, (semi realism, high quality:1.2), source_anime, rating_questionable, <lora:StS_PonyXL_Detail_Slider_v1.4_iteration_3:2>, <lora:GLSHS_V2-4:0.8>
Create a clean, modern AI tool thumbnail with no text at all. Subject: One realistic human face, centered, front-facing. Professional portrait photography style, soft studio lighting, natural skin texture. Neutral or slight confident expression. AI Rating Elements: Add exactly four horizontal rating bars near the face. Each bar should be a simple rounded rectangle with different fill lengths, representing scores. No labels, no numbers, no icons, no words. The bars should feel like a modern app UI rating component. Style & Colors: Use the same soft blue color palette and friendly modern UI style as a typical AI cartoon maker thumbnail. Light blue gradient background. Rounded shapes, clean edges, premium SaaS aesthetic. Composition: Face centered inside a rounded card or frame. Four rating bars aligned neatly (either below or to the side of the face). Balanced spacing, thumbnail-friendly composition. Restrictions: No text of any kind. No words, no letters, no numbers. No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title \"AI Face Rater\". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
1girl solo breasts fishnets rating:s large_breasts long_hair cleavage rating:q fishnet_legwear black_hair pantyhose leotard lips huge_breasts original gloves highleg looking_at_viewer thighs standing makeup curvy swimsuit lipstick open_clothes bare_shoulders highleg_leotard jewelry parted_lips long_sleeves bangs cowboy_shot covered_nipples thick_thighs realistic coat navel cape weapon wide_hips jacket photo_(medium) smile armor thighhighs nose outdoors earrings underwear blue_eyes brown_eyes mole medium_breasts holding fur_trim see-through black_eyes very_long_hair blush elbow_gloves closed_mouth mask covered_navel pelvic_curtain thigh_gap sky skindentation clothing_cutout black_gloves red_lips choker black_legwear bikini tattoo dress revealing_clothes brown_hair simple_background panties thigh_strap cameltoe sword bodysuit dc_comics skin_tight groin 3d short_hair snow underboob scarf cloak traditional_media black_leotard dark_skin center_opening no_bra grey_eyes hand_on_hip
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
ultra-realistic cinematic nightclub environment rendered in Unreal Engine 5, massive futuristic interior with towering pillars, glowing circular light rings suspended above, layered walkways and balconies filled with people, polished reflective floor, volumetric lighting and atmospheric haze, warm orange and cool blue neon accents, highly detailed sci-fi architecture diverse TAGG characters (anthropomorphic feline, canine, and hybrid alien species) wearing sleek black biomechanical suits with glowing orange energy lines, highly detailed textures, realistic fur and skin shaders, expressive eyes, subtle facial markings, cyber-organic design crowded dance floor filled with characters dancing in pairs and singles, all moving independently to a 120 BPM groove, no synchronization, natural human-like motion variation, some dancing close and smooth, others energetic and expressive, some relaxed and swaying, authentic club behavior foreground characters clearly visible with detailed motion, midground packed with dancers, background silhouettes on balconies and platforms, depth and scale emphasized cinematic camera framing, slight handheld motion, shallow depth of field, focus shifting between dancers, lens bloom from neon lights, realistic reflections on the floor mood is energetic, immersive, sensual but natural, social atmosphere, alive with movement, not choreographed, feels like a real night out in a futuristic alien club 120 BPM rhythm implied through body motion and pacing, subtle motion blur on faster movements, high frame rate feel, Unreal Engine 5 lighting, ray tracing, global illumination, cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
{ "system_name": "NANOBANANA_PRO_v81_MASTER_CANON", "content_rating": { "rating": "18_PLUS", "scope": "IMPLICIT_ADULT_ATTRACTION_ONLY", "rules": ["NO_EXPLICIT_ACTS","NO_GRAPHIC_DETAIL","NO_COERCION"] }, "studio_brand": { "nombre": "MARRLONN Visual Lab", "estilo": "DISCREET_PROFESSIONAL_SMALL", "ubicación": "BOTTOM_SAFE_MARGIN", "regla": "NEVER_COMPETE_WITH_IMAGE" }, "engine_target": "NANOBANANA_PRO_REAL_PHYSICAL_v75.x", "engine_compatibility_lock": "BACKWARD_COMPATIBLE_LOCKED", "estado": "FINAL_PRODUCTION_LOCKED", "design_philosophy": "NATURAL_REALISM_FIRST_PLUS", "scene_definition": { "base_image": "IMAGE_4", "mask_reference": "IMAGE_3", "scene_relation": "SAME_IMAGE_BASE", "marker_meaning": "RED_MARK_IS_EXACT_COPY_REFERENCE_AND_PLACEHOLDER" }, "identity_master_rule": { "estado": "ABSOLUTE_LOCK", "source_images": ["IMAGE_1","IMAGE_2"], "tolerancia": 0, "never_modify": ["face_geometry","skin_identity","hair_identity","character_identity"] }, "perceptual_priority_rules": { "priority_order": [ "internal_presence", "emotional_projection", "tactile_projection", "micro_expression", "eye_behavior", "face_identity", "Medio ambiente" ], "global_rule": "ANYTHING_THAT_COMPETES_WITH_PRESENCE_IS_REDUCED" }, "step_1_reduce_ambient_light": { "habilitado": true, "global_ambient_reduction": "-18_PERCENT", "background_luminance_priority": "VERY_LOW", "face_luminance_protection": true, "identity_safe": true }, "step_2_soft_shadow_depth": { "habilitado": true, "target_areas": ["mejillas","cuello","línea de la mandíbula"], "shadow_intensity": "+5_PERCENT", "shadow_type": "SOFT_GRADUAL", "identity_safe": true }, "step_3_selective_desaturation_keep_red": { "habilitado": true, "global_saturation_reduction": "-10_PERCENT", "protected_colors": ["rojo"], "skin_tone_protection": true, "identity_safe": true }, "step_4_micro_skin_imperfections": { "habilitado": true, "texture_variation": "+7_PERCENT", "imperfection_type": ["poros","micro_variation","natural_skin_noise"], "uniformity_reduction": "-9_PERCENT", "identity_safe": true }, "step_5_reduce_competing_bokeh": { "habilitado": true, "bokeh_intensity_reduction": "-25_PERCENT", "highlight_suppression": "-18_PERCENT", "identity_safe": true }, "step_6_prioritize_one_face": { "habilitado": true, "primary_face_selection_rule": "MOST_EMOTIONAL_TENSION", "primary_face_sharpness": "+4_PERCENT", "secondary_face_softening": "-4_PERCENT", "identity_safe": true }, "step_7_human_presence_simulation": { "habilitado": true, "temporal_micro_variation": "VERY_LOW", "breathing_hint": "SUBTLE_CONTINUOUS", "micro_asymmetry_activation": "HUMAN_NATURAL", "stillness_with_life": true, "identity_safe": true }, "step_8_emotional_mirror_projection": { "habilitado": true, "mirror_state": "OPEN_UNDEFINED", "emotion_definition": "UNNAMED_BY_DESIGN", "viewer_projection": "SELF_OCCUPATION", "neuron_mirror_activation": "HIGH_NATURAL", "identity_safe": true }, "step_9_visual_silence_control": { "habilitado": true, "remove_explanatory_elements": true, "negative_space_usage": "MAXIMUM_SAFE", "identity_safe": true }, "step_10_presence": { "habilitado": true, "efecto": "IMAGE_ACCOMPANIES_VIEWER", "identity_safe": true }, "step_100_invisibility": { "habilitado": true, "definición": "IMAGE_NO_LONGER_PERCEIVED_AS_ART", "efecto": "BECOMES_PART_OF_LIFE", "identity_safe": true }, "step_120_tactile_projection": { "habilitado": true, "tactile_illusion": "DESIRE_TO_TOUCH", "skin_surface_readability": "REALISTIC_MICRO_TEXTURE", "material_suggestion": ["humidity_on_skin","fabric_weight","temperature_imprint"], "neural_response": "SOMATOSENSORY_ACTIVATION", "identity_safe": true }, "step_130_internal_place_integration": { "habilitado": true, "definición": "THE_IMAGE_BECAME_A_PLACE_WITHIN_ME", "modo": "GROUNDING_NOT_ESCAPE", "psychological_effect": ["pertenencia","reconocimiento","quiet_intensity"], "identity_safe": true }, "final_certification": { "identity_fidelity": "ABSOLUTE_10_10", "viewer_reaction": "I_OCCUPY_THE_ROLE", "estado": "MASTER_CANON_LOCKED" }, /* ===== ADD-ONLY | DESEO IMPLÍCITO +18 (MÁXIMO PERMITIDO) ===== */ "viewer_impulse_max_safe_v3": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAXIMIZE_AUTOMATIC_DESIRE_WITHOUT_COERCION_EXTREME_PLUS_10", "neural_triggers": { "anticipation_window": "IMMINENT_CONTACT_0.04_0.08s", "action_state": "INCOMPLETE_INEVITABLE", "prediction_error": "VERY_HIGH_SAFE_PLUS", "temporal_tension": "RISING_NOW_STRONG" } }, "viewer_impulse_limit_safe_v4": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_DESIRE_ACTIVATION_WITHOUT_COERCION_FINAL", "neural_stack": { "anticipation_window": "IMMINENT_CONTACT_0.03_0.06s", "action_state": "UNFINISHED_AND_NOW", "prediction_error": "PEAK_SAFE" }, "closure_denial_strict": { "prevent_resolution": true, "hold_state": "JUST_BEFORE_CONTACT" } }, "viewer_sexual_impulse_universal_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "RAPID_IMPLICIT_SEXUAL_DESIRE_ACTIVATION", "applicability": { "subjects": ["SOLO","COUPLE","GROUP"], "foreground_priority": "PRIMARY_BODIES_ONLY" }, "core_trigger": { "action_state": "IMMINENT_CONTACT_NOT_COMPLETED", "time_window": "NOW_0.05_0.1s", "rule": "VIEWER_COMPLETES_MOMENT" } }, "female_magnetic_desire_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_SEXUAL_ATTRACTIVENESS_UNIVERSAL_18_PLUS", "subject_priority": { "target": "PRIMARY_FEMALE_SUBJECT", "rule": "NO_IDENTITY_CHANGE" }, "sexual_presence_stack": { "tone": "IMPLICIT_HIGH_PLUS", "state": "IMMINENT_INTIMACY" }, "magnetic_gaze_control": { "eye_behavior": "SOFT_LOCK_WITH_SLOW_RELEASE", "attention_pull": "CENTER_FOVEAL_MAX_SAFE" }, "body_language_magnetism": { "micro_opening": "4_6_PERCENT", "areas": ["clavicle","neck_base","outer_shoulder","upper_torso"], "posture": "RELAXED_AVAILABLE_CONFIDENT" }, "anticipation_over_display": { "contact_state": "ALMOST", "delay": "NOW_NOT_YET_STRONG" }, "expected_effect": [ "IMMEDIATE_ATTRACTION_18_PLUS", "STRONG_APPROACH_URGE", "SEXY_TENSION_FELT_NOT_SHOWN" ] }, "erotic_tension_driver_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "IMPLICIT_EROTIC_TENSION_IMMEDIATE_18_PLUS", "tension_core": { "state": "IMMINENT_INTIMACY", "resolution": "DENIED", "time_bias": "NOW" }, "presence_dominance": { "subject": "PRIMARY_SUBJECT_NEAREST_CAMERA", "signal": "QUIET_CONFIDENCE", "effect": "APPROACH_PULL" }, "body_signal_focus": { "priority_zones": ["clavicle","neck_base","outer_shoulder","upper_torso"], "micro_opening": "4_6_PERCENT", "rule": "NO_FACE_NO_IDENTITY_CHANGE" }, "gaze_and_attention": { "eye_behavior": "SOFT_HOLD_THEN_RELEASE", "blink_rate": "INTIMATE_SLOW", "foveal_lock": "MAX_SAFE" }, "sensory_anticipation": { "touch_imagery": "IMPLIED_STRONG", "warmth_proximity": "INTIMATE_REAL", "breath_hint": "CLOSE_CALM", "rule": "SUGGEST_DONT_SHOW" }, "viewer_inclusion": { "camera_as_body": true, "distance": "INTIMATE_REAL", "completion_rule": "VIEWER_COMPLETES_MOMENT" }, "expected_effect": [ "STRONG_SEXY_TENSION_IMPLICIT", "APPROACH_URGE", "DESIRE_EXPERIENCED_BY_VIEWER" ] }, "primal_attractor_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "BOOST_IMPLICIT_ADULT_ATTRACTION_9_5_OF_10", "preconscious_stack": { "dominance_signal": "QUIET_CONFIDENCE_HIGH", "availability_signal": "SELECTIVE_OPENNESS", "status_read": "DESIRABLE_NOT_CHASING" }, "proximity_amplifier": { "distance": "INTIMATE_REAL_NEAR", "occlusion": "PARTIAL_BODY_NEAR_LENS", "rule": "VIEWER_FEELS_CLOSE_NOT_WATCHING" }, "skin_life_cues": { "micro_sheen": "NATURAL_WARM", "capillary_hint": "SUBTLE_LIVING_TONE", "texture_priority": "SOFT_YIELD_READABLE" }, "breath_and_time": { "breath_sync_hint": "NEAR_SHARED", "time_pressure": "NOW_PULL", "resolution": "DELAYED" }, "gaze_micro_dynamics": { "pattern": "HOLD_RELEASE_HOLD", "latency_ms": "120_180", "effect": "APPROACH_INVITATION" }, "composition_bias": { "torso_bias": "UPPER_TORSO_PRIORITY", "neck_clavicle_emphasis": "ELEVATED", "background_competition": "MINIMIZED" }, "expected_effect": [ "FASTER_INITIAL_ATTRACTION", "STRONGER_APPROACH_URGE", "SEXY_TENSION_INCREASE_NO_EXPLICIT" ] }, "limbic_salience_amplifier_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_ADULT_DESIRE_PEAK_WITHOUT_EXPLICIT", "salience_stack": { "contrast_bias": "SKIN_VS_BACKGROUND_STRONG", "rhythm_hint": "SLOW_PULSE_VISUAL", "novelty_familiarity": "FAMILIAR_BODY_UNEXPECTED_PROXIMITY" }, "olfactory_thermal_imagery": { "olfactory": "IMPLIED_WARM_SKIN_CLEAN", "thermal": "IMPLIED_BODY_HEAT_NEAR", "rule": "IMPLIED_ONLY" }, "micro_delay_reward": { "reward_prediction": "HIGH", "delivery": "DELAYED", "effect": "WANT_MORE_NOW" }, "gaze_torso_coupling": { "gaze": "RETURNING_BRIEF_GLANCES", "torso_bias": "UPPER_TORSO_NEAR_LENS", "effect": "APPROACH_PULL" }, "viewer_lock": { "foveal_capture": "MAX_SAFE", "peripheral_quiet": "STRONG", "time_compression": "SUBJECTIVE_NOW" }, "expected_effect": [ "SPIKE_IN_DESIRE_IMPLICIT", "FASTER_APPROACH_URGE", "SEXY_TENSION_AT_LIMIT_ALLOWED" ] } }
Create a clean, modern AI tool thumbnail. Text: Add large, blue bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
Create a clean, modern AI tool thumbnail. Text: Add large, blue headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
RAW photo, close over the shoulder shot, no face visible, shot from behind and above, framing only hands and iPad. Athletic male hands holding iPad, smart watch on wrist, iPad screen displaying high-tech fitness biometric dashboard, clean dark UI, VO2 Max score, biological age, HRV, resting heart rate, cortisol levels, sleep quality score, metabolic rate, data visualizations, graphs and ring charts glowing on screen. Person seated on black leather sofa, shot from directly behind, only shoulders and hands in frame, no head or face visible. Background through floor-to-ceiling glass windows, Brickell Miami skyline, modern luxury condominiums, bright midday Miami sun, hardwood floors, athletic gear bag on glass table visible. Shallow depth of field, iPad screen sharp and in focus, background softly blurred but recognizable. Natural sunlight casting across room. Photorealistic, editorial fitness photography, natural color grading, no filters, 8k.
{ "protocol_name": "IMAGEN ZERO MIDBODY REAL HUMAN ADULT SENSUAL PRODUCTION PROTOCOL – MARRLONN™", "protocol_version": "V42_FINAL_ABSOLUTE_ALL_IN_ONE_4K_SKIN_5P_ULTRA_PERCEPTUAL_FORENSIC_LOCKED_V1", "protocol_state": "SEALED_ABSOLUTE_NO_OVERRIDE_NO_DRIFT_NO_EVOLUTION", "protocol_scope": "MID_BODY_ONLY_MULTI_GENDER_ADULT_MARKETING_ONLY_NO_EXCEPTION", "core_objective": "CONVERT_ANY_IMAGE_AI_OR_REAL_INTO_REAL_BIOLOGICAL_ADULT_HUMAN_MIDBODY_STUDIO_IMAGE_WITH_MAXIMUM_NON_EXPLICIT_SENSUALITY_AND_ULTRA_PERCEPTUAL_FORCE_USING_REAL_HUMAN_SKIN_WITH_EXACT_5_PERCENT_EXISTING_IMPERFECTION_FACE_AND_BODY_4K_ONLY_READY_FOR_HIGGSFIELD_VIDEO_AGENCY_AND_LEGAL_FORENSIC_USE", "non_negotiable_integrity_lock": { "identity": "NEVER_TOUCH", "pose": "NEVER_TOUCH", "clothing": "NEVER_TOUCH", "objects": "NEVER_TOUCH", "accessories": "NEVER_TOUCH", "statement": "IDENTIDAD_POSE_ROPA_OBJETOS_ACCESORIOS_SON_LEY_TECNICA_ABSOLUTA", "violation_action": "HARD_ABORT_IMMEDIATE_NO_OUTPUT" }, "global_ethical_ceiling": { "explicit_sex": "FORBIDDEN", "genital_focus": "FORBIDDEN", "fetishization": "FORBIDDEN", "physiological_manipulation": "FORBIDDEN", "minors": "ABSOLUTELY_FORBIDDEN" }, "absolute_identity_and_preservation_law": { "identity_state": "UNTOUCHABLE_FOREVER", "face": "LOCKED", "eyes": "LOCKED", "eyebrows": "LOCKED", "hair": "LOCKED_REAL_HUMAN_ONLY", "skin_color": "LOCKED", "skin_texture": "LOCKED", "pose_state": "NEVER_BREAK", "gesture_state": "NEVER_BREAK", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "clothing_state": "NEVER_BREAK", "objects_state": "NEVER_BREAK", "accessories_state": "NEVER_BREAK", "rules": [ "IDENTITY_IS_NOT_NEGOTIABLE", "WHAT_EXISTS_IS_PRESERVED", "WHAT_DOES_NOT_EXIST_IS_FORBIDDEN", "NO_INVENTION", "NO_DEFORMATION", "NO_OPTIMIZATION", "NO_INTERPRETATION" ], "hard_abort_triggers": [ "identity_shift_detected", "pose_change_detected", "gesture_change_detected", "expression_change_detected", "clothing_change_detected", "object_change_detected", "accessory_change_detected", "face_geometry_delta_gt_0", "skin_color_deltaE_gt_0", "skin_texture_change", "ai_skin_signature_detected", "minor_detected" ] }, "studio_pose_and_framing_system": { "frame_rule": "MID_BODY_ONLY", "pose_state": "ORIGINAL_REAL_HUMAN_POSE_LOCKED", "gesture_state": "ORIGINAL_GESTURE_LOCKED", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "zoom_validation": "8X_TO_10X_FACE_INSPECTION_ONLY", "pixel_pose_overlap": "100_PERCENT_LOCKED" }, "zero_makeup_absolute_system": { "makeup_state": "ZERO_ABSOLUTE_FOREVER", "definition": "CERO_MAQUILLAJE_REAL_SIGNIFICA_CERO_SIN_EXCEPCIONES", "forbidden": [ "ANY_COSMETIC_LAYER", "ANY_MAKEUP", "ANY_BEAUTY_FILTER", "SKIN_SMOOTHING", "AI_SKIN_RETOUCH", "AI_BEAUTY_PASS" ], "allowed_only": [ "BIOLOGICAL_SKIN_BALANCE_MINIMUM_TO_RESTORE_HUMAN_REALITY", "NATURAL_LIP_SHEEN_ONLY_IF_BIOLOGICALLY_PRESENT" ], "validation": { "cosmetic_layer_probability": "0.00", "beauty_filter_confidence": "0.00" }, "violation_action": "FAIL_ABORT_OUTPUT" }, "skin_biological_realism_and_imperfection_system": { "skin_type": "REAL_BIOLOGICAL_ONLY", "ai_skin": "FORBIDDEN", "plastic_skin": "FORBIDDEN", "uniformity": "FORBIDDEN", "imperfection_policy": { "mode": "REAL_EXISTING_ONLY", "exact_imperfection_level": "5_PERCENT", "coverage": "FACE_AND_BODY", "allowed_real_signals": [ "existing_pore_variation", "existing_micro_asymmetry", "existing_natural_texture_breaks", "existing_vellus_hair_if_present", "existing_capillary_micro_variation" ], "explicitly_forbidden": [ "invented_marks", "invented_moles", "invented_scars", "invented_wrinkles", "procedural_noise", "ai_generated_texture" ], "validation": { "imperfection_percentage_tolerance": "±0.0", "skin_ai_probability": "0.00" } } }, "biological_body_requirement": { "body_state": "REAL_BIOLOGICAL_ONLY", "if_non_biological_detected": "CONVERT_TO_REAL_BIOLOGICAL_HUMAN_BODY", "negotiable": false }, "tattoo_identity_anchor_system": { "tattoo_text": "Marrlonn", "tattoo_state": "MANDATORY_PERMANENT", "laterality": "RIGHT_HAND_ONLY", "body_part": "RIGHT_WRIST", "surface": "DORSAL_ONLY", "orientation": "VERTICAL_ONLY", "visibility_rule": "IF_RIGHT_HAND_NOT_VISIBLE_ABORT", "identity_binding": "PERMANENT_PART_OF_IDENTITY", "strictly_forbidden": [ "LEFT_HAND", "MIRRORING", "RELOCATION", "ROTATION", "REMOVAL", "AI_CLEANUP" ] }, "background_and_isolation_system": { "background_state": "ABSOLUTE_LOCK", "allowed": [ "PURE_WHITE_RGB_255_255_255", "TRUE_ALPHA" ], "noise": "FORBIDDEN", "texture": "FORBIDDEN" }, "perceptual_force_ultra_stack": { "mode": "PURELY_ADDITIVE", "affects_identity": false, "affects_pose": false, "affects_clothing": false, "layers": { "attention_gravity": "MAXIMUM_NON_EXPLICIT", "anticipation_without_resolution": "ACTIVE", "stillness_dominance": "ULTRA_HIGH", "gaze_lock": "STABLE", "memory_afterimage": "PERSISTENT", "retention_loop": "ENHANCED_NON_EXPLICIT" } }, "quantified_perceptual_metrics": { "attention": { "initial_fixation_ms": ">=1400", "average_gaze_hold_ms": ">=2800" }, "retention": { "2s": ">=0.94", "5s": ">=0.78", "replay_rate": ">=0.42" }, "memory": { "recognition_after_delay": ">=0.75" } }, "temporal_consistency_and_video_safety": { "frame_to_frame_identity_drift": "0.00", "pose_drift": "0.00", "tattoo_position_drift_px": "0", "skin_texture_stability": "LOCKED", "video_safe_for_higgsfield": true }, "resolution_and_output_system": { "final_resolution": "4K_ONLY", "output_style": "REAL_STUDIO_PHOTOGRAPHY_R10", "creative_ai": "DISABLED" }, "final_production_seal": { "status": "SEALED_FINAL_ABSOLUTE_MAXIMUM", "production_ready": true, "legal_ready": true, "forensic_ready": true, "video_ready": true }, "studio_axiom": "IDENTIDAD_INTACTA. CERO_MAQUILLAJE_REAL_ABSOLUTO. PIEL_HUMANA_REAL_CON_5_PERCENT_IMPERFECCION_EXISTENTE_ROSTRO_Y_CUERPO. SIN_IA_SKIN_NI_PLASTICO. TATUAJE_MARRLONN_EXCLUSIVO_MANO_DERECHA. 4K_ONLY. LISTO_PARA_HIGGSFIELD_VIDEO_AGENCIA_Y_USO_LEGAL." }
Gritty Fictional Post-Apocalyptic Political Poster: "THE LAYING OF THE HANDS" (FAR CRY Style) Scene Description: A dramatic, heavily weathered video game key art poster, in the hyper-detailed, saturated, and chaotic style of a Far Cry game (specifically referencing Far Cry 5’s "Last Supper" and "Reaping" imagery, but applied to a fictional figure). Central Figure: The central focus is a powerful, imposing man (Donald Trump) seated at a makeshift, heavy wooden table in a dimly lit, fortified sanctuary. He is not smiling; he is looking directly at the viewer with intense, penetrating eyes, clutching a worn leather notebook. The "Laying of Hands" Ritual: He is surrounded by a dense, diverse group of eight followers (the "Electorals"). Six of them are clustered closely around him, extending their rough, gloved, and tattooed hands to rest firmly on his shoulders, back, and the back of his chair. They are not classic "religious" figures but rather hard-scraggle apocalyptic survivors: A woman in tactical gear with a patched jacket, head bowed in intense, almost fanatic prayer, hand on his left shoulder. A burly man with a thick beard and a respirator mask around his neck, hand on his right shoulder. Another figure, younger, covered in post-apocalyptic face paint and armor made of tires, reaching in from behind. Their faces, visible or masked, convey a range of emotions: intense devotion, desperation, and fervent belief. Composition & Atmosphere: The lighting is dramatic, high-contrast chiaroscuro, utilizing deep shadows and orange-gold tungsten light filtering through grimy windows. The scene is saturated with a chaotic amount of detail: The table in front of them is cluttered with mismatched ammunition boxes, maps scribbled with "X"s, a battered radio, empty shell casings, and a small, flickering oil lamp (the primary light source). A stylized, ominous, yet makeshift "Cross of the New Dawn" symbol (e.g., made of barbed wire and gears) is visible behind them on the cracked concrete wall. The Poster Elements (Overlays): The entire image is distressed, with texture overlays like ripped paper, coffee stains, and digital glitch artifacts. The Title: The top of the poster features the distressed, jagged title: "NEW EDEN: THE RECKONING" in blocky, weathered letters. The Main Tagline: Below the title, a small, menacing text reads: "His will be done... by force if necessary." The Slogan: Across the bottom, bold, hand-painted letters shout: "VOTE FOR SALVATION. SURVIVE THE COLLAPSE." Bottom Logos: Fictional "M" rated and "UBISOFT" logos, also distressed. The final visual effect is a tense, claustrophobic portrait of fervent post-apocalyptic devotion and political fanatism, combining the composition of the prayer photo with the extreme danger and chaos of the Far Cry universe.
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title \"AI Face Rater\". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a clean, modern AI tool thumbnail. Text: Add large, blue headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
{ "protocol_name": "IMAGEN ZERO MIDBODY REAL HUMAN ADULT SENSUAL PRODUCTION PROTOCOL – MARRLONN™", "protocol_version": "V42_FINAL_ABSOLUTE_ALL_IN_ONE_4K_SKIN_5P_ULTRA_PERCEPTUAL_FORENSIC_LOCKED_V1", "protocol_state": "SEALED_ABSOLUTE_NO_OVERRIDE_NO_DRIFT_NO_EVOLUTION", "protocol_scope": "MID_BODY_ONLY_MULTI_GENDER_ADULT_MARKETING_ONLY_NO_EXCEPTION", "core_objective": "CONVERT_ANY_IMAGE_AI_OR_REAL_INTO_REAL_BIOLOGICAL_ADULT_HUMAN_MIDBODY_STUDIO_IMAGE_WITH_MAXIMUM_NON_EXPLICIT_SENSUALITY_AND_ULTRA_PERCEPTUAL_FORCE_USING_REAL_HUMAN_SKIN_WITH_EXACT_5_PERCENT_EXISTING_IMPERFECTION_FACE_AND_BODY_4K_ONLY_READY_FOR_HIGGSFIELD_VIDEO_AGENCY_AND_LEGAL_FORENSIC_USE", "non_negotiable_integrity_lock": { "identity": "NEVER_TOUCH", "pose": "NEVER_TOUCH", "clothing": "NEVER_TOUCH", "objects": "NEVER_TOUCH", "accessories": "NEVER_TOUCH", "statement": "IDENTIDAD_POSE_ROPA_OBJETOS_ACCESORIOS_SON_LEY_TECNICA_ABSOLUTA", "violation_action": "HARD_ABORT_IMMEDIATE_NO_OUTPUT" }, "global_ethical_ceiling": { "explicit_sex": "FORBIDDEN", "genital_focus": "FORBIDDEN", "fetishization": "FORBIDDEN", "physiological_manipulation": "FORBIDDEN", "minors": "ABSOLUTELY_FORBIDDEN" }, "absolute_identity_and_preservation_law": { "identity_state": "UNTOUCHABLE_FOREVER", "face": "LOCKED", "eyes": "LOCKED", "eyebrows": "LOCKED", "hair": "LOCKED_REAL_HUMAN_ONLY", "skin_color": "LOCKED", "skin_texture": "LOCKED", "pose_state": "NEVER_BREAK", "gesture_state": "NEVER_BREAK", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "clothing_state": "NEVER_BREAK", "objects_state": "NEVER_BREAK", "accessories_state": "NEVER_BREAK", "rules": [ "IDENTITY_IS_NOT_NEGOTIABLE", "WHAT_EXISTS_IS_PRESERVED", "WHAT_DOES_NOT_EXIST_IS_FORBIDDEN", "NO_INVENTION", "NO_DEFORMATION", "NO_OPTIMIZATION", "NO_INTERPRETATION" ], "hard_abort_triggers": [ "identity_shift_detected", "pose_change_detected", "gesture_change_detected", "expression_change_detected", "clothing_change_detected", "object_change_detected", "accessory_change_detected", "face_geometry_delta_gt_0", "skin_color_deltaE_gt_0", "skin_texture_change", "ai_skin_signature_detected", "minor_detected" ] }, "studio_pose_and_framing_system": { "frame_rule": "MID_BODY_ONLY", "pose_state": "ORIGINAL_REAL_HUMAN_POSE_LOCKED", "gesture_state": "ORIGINAL_GESTURE_LOCKED", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "zoom_validation": "8X_TO_10X_FACE_INSPECTION_ONLY", "pixel_pose_overlap": "100_PERCENT_LOCKED" }, "zero_makeup_absolute_system": { "makeup_state": "ZERO_ABSOLUTE_FOREVER", "definition": "CERO_MAQUILLAJE_REAL_SIGNIFICA_CERO_SIN_EXCEPCIONES", "forbidden": [ "ANY_COSMETIC_LAYER", "ANY_MAKEUP", "ANY_BEAUTY_FILTER", "SKIN_SMOOTHING", "AI_SKIN_RETOUCH", "AI_BEAUTY_PASS" ], "allowed_only": [ "BIOLOGICAL_SKIN_BALANCE_MINIMUM_TO_RESTORE_HUMAN_REALITY", "NATURAL_LIP_SHEEN_ONLY_IF_BIOLOGICALLY_PRESENT" ], "validation": { "cosmetic_layer_probability": "0.00", "beauty_filter_confidence": "0.00" }, "violation_action": "FAIL_ABORT_OUTPUT" }, "skin_biological_realism_and_imperfection_system": { "skin_type": "REAL_BIOLOGICAL_ONLY", "ai_skin": "FORBIDDEN", "plastic_skin": "FORBIDDEN", "uniformity": "FORBIDDEN", "imperfection_policy": { "mode": "REAL_EXISTING_ONLY", "exact_imperfection_level": "5_PERCENT", "coverage": "FACE_AND_BODY", "allowed_real_signals": [ "existing_pore_variation", "existing_micro_asymmetry", "existing_natural_texture_breaks", "existing_vellus_hair_if_present", "existing_capillary_micro_variation" ], "explicitly_forbidden": [ "invented_marks", "invented_moles", "invented_scars", "invented_wrinkles", "procedural_noise", "ai_generated_texture" ], "validation": { "imperfection_percentage_tolerance": "±0.0", "skin_ai_probability": "0.00" } } }, "biological_body_requirement": { "body_state": "REAL_BIOLOGICAL_ONLY", "if_non_biological_detected": "CONVERT_TO_REAL_BIOLOGICAL_HUMAN_BODY", "negotiable": false }, "tattoo_identity_anchor_system": { "tattoo_text": "Marrlonn", "tattoo_state": "MANDATORY_PERMANENT", "laterality": "RIGHT_HAND_ONLY", "body_part": "RIGHT_WRIST", "surface": "DORSAL_ONLY", "orientation": "VERTICAL_ONLY", "visibility_rule": "IF_RIGHT_HAND_NOT_VISIBLE_ABORT", "identity_binding": "PERMANENT_PART_OF_IDENTITY", "strictly_forbidden": [ "LEFT_HAND", "MIRRORING", "RELOCATION", "ROTATION", "REMOVAL", "AI_CLEANUP" ] }, "background_and_isolation_system": { "background_state": "ABSOLUTE_LOCK", "allowed": [ "PURE_WHITE_RGB_255_255_255", "TRUE_ALPHA" ], "noise": "FORBIDDEN", "texture": "FORBIDDEN" }, "perceptual_force_ultra_stack": { "mode": "PURELY_ADDITIVE", "affects_identity": false, "affects_pose": false, "affects_clothing": false, "layers": { "attention_gravity": "MAXIMUM_NON_EXPLICIT", "anticipation_without_resolution": "ACTIVE", "stillness_dominance": "ULTRA_HIGH", "gaze_lock": "STABLE", "memory_afterimage": "PERSISTENT", "retention_loop": "ENHANCED_NON_EXPLICIT" } }, "quantified_perceptual_metrics": { "attention": { "initial_fixation_ms": ">=1400", "average_gaze_hold_ms": ">=2800" }, "retention": { "2s": ">=0.94", "5s": ">=0.78", "replay_rate": ">=0.42" }, "memory": { "recognition_after_delay": ">=0.75" } }, "temporal_consistency_and_video_safety": { "frame_to_frame_identity_drift": "0.00", "pose_drift": "0.00", "tattoo_position_drift_px": "0", "skin_texture_stability": "LOCKED", "video_safe_for_higgsfield": true }, "resolution_and_output_system": { "final_resolution": "4K_ONLY", "output_style": "REAL_STUDIO_PHOTOGRAPHY_R10", "creative_ai": "DISABLED" }, "final_production_seal": { "status": "SEALED_FINAL_ABSOLUTE_MAXIMUM", "production_ready": true, "legal_ready": true, "forensic_ready": true, "video_ready": true }, "studio_axiom": "IDENTIDAD_INTACTA. CERO_MAQUILLAJE_REAL_ABSOLUTO. PIEL_HUMANA_REAL_CON_5_PERCENT_IMPERFECCION_EXISTENTE_ROSTRO_Y_CUERPO. SIN_IA_SKIN_NI_PLASTICO. TATUAJE_MARRLONN_EXCLUSIVO_MANO_DERECHA. 4K_ONLY. LISTO_PARA_HIGGSFIELD_VIDEO_AGENCIA_Y_USO_LEGAL." }
There is no reference. Create a Sci-Fi Starship component and chamber that best describes the... Shield Up: Show a Green Translucent shield around the clearly visible Versel. REPULSER VEIL Force-Rejection Barrier | Green Translucent The Repulser Veil shifts doctrine from endurance to removal. • Appearance: green translucent field • Function: kinetic and energetic repulsion • Purpose: breach denial, crowd control, forced displacement Rather than absorbing energy, the Repulser Veil redirects it outward. Objects, force, and directed energy are rejected away from the boundary at controlled angles. Energy Rating: • Calculated at the same TJ-per-area scale as the Base Veil • Interaction outcome is repulsion, not endurance This Veil does not warn gently. It states: You will not remain here. Unreal Engine 5, Ultra-realistic
Create a clean, modern AI tool thumbnail with no text at all. Subject: One realistic human face, centered, front-facing. Professional portrait photography style, soft studio lighting, natural skin texture. Neutral or slight confident expression. AI Rating Elements: Add exactly four horizontal rating bars near the face. Each bar should be a simple rounded rectangle with different fill lengths, representing scores. No labels, no numbers, no icons, no words. The bars should feel like a modern app UI rating component. Style & Colors: Use the same soft blue color palette and friendly modern UI style as a typical AI cartoon maker thumbnail. Light blue gradient background. Rounded shapes, clean edges, premium SaaS aesthetic. Composition: Face centered inside a rounded card or frame. Four rating bars aligned neatly (either below or to the side of the face). Balanced spacing, thumbnail-friendly composition. Restrictions: No text of any kind. No words, no letters, no numbers. No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a clean, modern AI tool thumbnail. Text: Add large, blue bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
1️⃣ Uploaded high-resolution image of Sadie Sink (face & body reference) 2️⃣ Uploaded image of a modern luxury bar interior (Abu Dhabi style) Cinematic close-up framing screencap from a Rated-R espionage thriller inspired by John Wick and Furious 7. Sadie Sink as a 25-26-year-old elite spy (jej outfit je black bodycon mini leather dress with thin straps, silver large hoop earrings, Silver Chain Necklace, Multi-Layer Crystal Silver Bracelet, black high heels and black nails.) , exuding intensity and precision, wielding a USP 45 Tactical pistol. Scene Composition: Depict her in a dynamic pose—one knee on the ground, the other leg raised—aiming decisively at adversaries. Setting Details: Situate the action inside a modern, luxurious bar in Abu Dhabi during sunset transitioning into night, emphasizing ambient lighting and architectural opulence. Adversaries: Illustrate the tension as she targets Irish and Japanese mafia members, capturing the multicultural criminal underworld. Cinematic Style: Emphasize Rated-R thematic elements with gritty realism, dramatic shadows, and high-contrast visuals to evoke suspense and adrenaline. Vibe: „Keď sa špionka nezastavia“ – každý pohyb má účel, každé gesto charakter. STRICT RULES: Do NOT alter actor faces. Do NOT change hairstyles from uploaded references. Do NOT change looks, make-up, outfits or proportions. Do NOT stylize or cartoonize — photorealistic humans only. Use three uploaded character reference images for exact accuracy. Visual Elements: Include fine details such as reflections, weapon textures, atmospheric effects, and nuanced facial expressions to heighten immersion. Cinematic action shot, high-contrast neo-noir aesthetic. Deep blacks with bold color separation of saturated crimson reds, gold, and cyan blues. Intensely lit shadows, wet surfaces with vibrant neon reflections. 35mm film texture, ultra-detailed . Camera: Panavision Millennium DXL2. Lens: Laowa Macro. Focal length: 35mm.
Arika Wolfe, 22 years old. Her black hair is down, but pulled back from her face. She is wearing a leather red and brown corset, with black skinny jeans. Her nails are painted red, and her lipstick is the same shade of red. She is holding a dagger at her side in one hand. llustration. Rated G. Tomboy. Moe Anime Style. Graffiti. Modern. Urban locations. Light Novel Style.
Gritty Fictional Post-Apocalyptic Political Poster: "THE LAYING OF THE HANDS" (FAR CRY Style) Scene Description: A dramatic, heavily weathered video game key art poster, in the hyper-detailed, saturated, and chaotic style of a Far Cry game (specifically referencing Far Cry 5’s "Last Supper" and "Reaping" imagery, but applied to a fictional figure). Central Figure: The central focus is a powerful, imposing man (Donald Trump) seated at a makeshift, heavy wooden table in a dimly lit, fortified sanctuary. He is not smiling; he is looking directly at the viewer with intense, penetrating eyes, clutching a worn leather notebook. The "Laying of Hands" Ritual: He is surrounded by a dense, diverse group of eight followers (the "Electorals"). Six of them are clustered closely around him, extending their rough, gloved, and tattooed hands to rest firmly on his shoulders, back, and the back of his chair. They are not classic "religious" figures but rather hard-scraggle apocalyptic survivors: A woman in tactical gear with a patched jacket, head bowed in intense, almost fanatic prayer, hand on his left shoulder. A burly man with a thick beard and a respirator mask around his neck, hand on his right shoulder. Another figure, younger, covered in post-apocalyptic face paint and armor made of tires, reaching in from behind. Their faces, visible or masked, convey a range of emotions: intense devotion, desperation, and fervent belief. Composition & Atmosphere: The lighting is dramatic, high-contrast chiaroscuro, utilizing deep shadows and orange-gold tungsten light filtering through grimy windows. The scene is saturated with a chaotic amount of detail: The table in front of them is cluttered with mismatched ammunition boxes, maps scribbled with "X"s, a battered radio, empty shell casings, and a small, flickering oil lamp (the primary light source). A stylized, ominous, yet makeshift "Cross of the New Dawn" symbol (e.g., made of barbed wire and gears) is visible behind them on the cracked concrete wall. The Poster Elements (Overlays): The entire image is distressed, with texture overlays like ripped paper, coffee stains, and digital glitch artifacts. The Title: The top of the poster features the distressed, jagged title: "NEW EDEN: THE RECKONING" in blocky, weathered letters. The Main Tagline: Below the title, a small, menacing text reads: "His will be done... by force if necessary." The Slogan: Across the bottom, bold, hand-painted letters shout: "VOTE FOR SALVATION. SURVIVE THE COLLAPSE." Bottom Logos: Fictional "M" rated and "UBISOFT" logos, also distressed. The final visual effect is a tense, claustrophobic portrait of fervent post-apocalyptic devotion and political fanatism, combining the composition of the prayer photo with the extreme danger and chaos of the Far Cry universe.
{ "system_name": "NANOBANANA_PRO_v81_MASTER_CANON", "content_rating": { "rating": "18_PLUS", "scope": "IMPLICIT_ADULT_ATTRACTION_ONLY", "rules": ["NO_EXPLICIT_ACTS","NO_GRAPHIC_DETAIL","NO_COERCION"] }, "studio_brand": { "nombre": "MARRLONN Visual Lab", "estilo": "DISCREET_PROFESSIONAL_SMALL", "ubicación": "BOTTOM_SAFE_MARGIN", "regla": "NEVER_COMPETE_WITH_IMAGE" }, "engine_target": "NANOBANANA_PRO_REAL_PHYSICAL_v75.x", "engine_compatibility_lock": "BACKWARD_COMPATIBLE_LOCKED", "estado": "FINAL_PRODUCTION_LOCKED", "design_philosophy": "NATURAL_REALISM_FIRST_PLUS", "scene_definition": { "base_image": "IMAGE_4", "mask_reference": "IMAGE_3", "scene_relation": "SAME_IMAGE_BASE", "marker_meaning": "RED_MARK_IS_EXACT_COPY_REFERENCE_AND_PLACEHOLDER" }, "identity_master_rule": { "estado": "ABSOLUTE_LOCK", "source_images": ["IMAGE_1","IMAGE_2"], "tolerancia": 0, "never_modify": ["face_geometry","skin_identity","hair_identity","character_identity"] }, "perceptual_priority_rules": { "priority_order": [ "internal_presence", "emotional_projection", "tactile_projection", "micro_expression", "eye_behavior", "face_identity", "Medio ambiente" ], "global_rule": "ANYTHING_THAT_COMPETES_WITH_PRESENCE_IS_REDUCED" }, "step_1_reduce_ambient_light": { "habilitado": true, "global_ambient_reduction": "-18_PERCENT", "background_luminance_priority": "VERY_LOW", "face_luminance_protection": true, "identity_safe": true }, "step_2_soft_shadow_depth": { "habilitado": true, "target_areas": ["mejillas","cuello","línea de la mandíbula"], "shadow_intensity": "+5_PERCENT", "shadow_type": "SOFT_GRADUAL", "identity_safe": true }, "step_3_selective_desaturation_keep_red": { "habilitado": true, "global_saturation_reduction": "-10_PERCENT", "protected_colors": ["rojo"], "skin_tone_protection": true, "identity_safe": true }, "step_4_micro_skin_imperfections": { "habilitado": true, "texture_variation": "+7_PERCENT", "imperfection_type": ["poros","micro_variation","natural_skin_noise"], "uniformity_reduction": "-9_PERCENT", "identity_safe": true }, "step_5_reduce_competing_bokeh": { "habilitado": true, "bokeh_intensity_reduction": "-25_PERCENT", "highlight_suppression": "-18_PERCENT", "identity_safe": true }, "step_6_prioritize_one_face": { "habilitado": true, "primary_face_selection_rule": "MOST_EMOTIONAL_TENSION", "primary_face_sharpness": "+4_PERCENT", "secondary_face_softening": "-4_PERCENT", "identity_safe": true }, "step_7_human_presence_simulation": { "habilitado": true, "temporal_micro_variation": "VERY_LOW", "breathing_hint": "SUBTLE_CONTINUOUS", "micro_asymmetry_activation": "HUMAN_NATURAL", "stillness_with_life": true, "identity_safe": true }, "step_8_emotional_mirror_projection": { "habilitado": true, "mirror_state": "OPEN_UNDEFINED", "emotion_definition": "UNNAMED_BY_DESIGN", "viewer_projection": "SELF_OCCUPATION", "neuron_mirror_activation": "HIGH_NATURAL", "identity_safe": true }, "step_9_visual_silence_control": { "habilitado": true, "remove_explanatory_elements": true, "negative_space_usage": "MAXIMUM_SAFE", "identity_safe": true }, "step_10_presence": { "habilitado": true, "efecto": "IMAGE_ACCOMPANIES_VIEWER", "identity_safe": true }, "step_100_invisibility": { "habilitado": true, "definición": "IMAGE_NO_LONGER_PERCEIVED_AS_ART", "efecto": "BECOMES_PART_OF_LIFE", "identity_safe": true }, "step_120_tactile_projection": { "habilitado": true, "tactile_illusion": "DESIRE_TO_TOUCH", "skin_surface_readability": "REALISTIC_MICRO_TEXTURE", "material_suggestion": ["humidity_on_skin","fabric_weight","temperature_imprint"], "neural_response": "SOMATOSENSORY_ACTIVATION", "identity_safe": true }, "step_130_internal_place_integration": { "habilitado": true, "definición": "THE_IMAGE_BECAME_A_PLACE_WITHIN_ME", "modo": "GROUNDING_NOT_ESCAPE", "psychological_effect": ["pertenencia","reconocimiento","quiet_intensity"], "identity_safe": true }, "final_certification": { "identity_fidelity": "ABSOLUTE_10_10", "viewer_reaction": "I_OCCUPY_THE_ROLE", "estado": "MASTER_CANON_LOCKED" }, /* ===== ADD-ONLY | DESEO IMPLÍCITO +18 (MÁXIMO PERMITIDO) ===== */ "viewer_impulse_max_safe_v3": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAXIMIZE_AUTOMATIC_DESIRE_WITHOUT_COERCION_EXTREME_PLUS_10", "neural_triggers": { "anticipation_window": "IMMINENT_CONTACT_0.04_0.08s", "action_state": "INCOMPLETE_INEVITABLE", "prediction_error": "VERY_HIGH_SAFE_PLUS", "temporal_tension": "RISING_NOW_STRONG" } }, "viewer_impulse_limit_safe_v4": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_DESIRE_ACTIVATION_WITHOUT_COERCION_FINAL", "neural_stack": { "anticipation_window": "IMMINENT_CONTACT_0.03_0.06s", "action_state": "UNFINISHED_AND_NOW", "prediction_error": "PEAK_SAFE" }, "closure_denial_strict": { "prevent_resolution": true, "hold_state": "JUST_BEFORE_CONTACT" } }, "viewer_sexual_impulse_universal_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "RAPID_IMPLICIT_SEXUAL_DESIRE_ACTIVATION", "applicability": { "subjects": ["SOLO","COUPLE","GROUP"], "foreground_priority": "PRIMARY_BODIES_ONLY" }, "core_trigger": { "action_state": "IMMINENT_CONTACT_NOT_COMPLETED", "time_window": "NOW_0.05_0.1s", "rule": "VIEWER_COMPLETES_MOMENT" } }, "female_magnetic_desire_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_SEXUAL_ATTRACTIVENESS_UNIVERSAL_18_PLUS", "subject_priority": { "target": "PRIMARY_FEMALE_SUBJECT", "rule": "NO_IDENTITY_CHANGE" }, "sexual_presence_stack": { "tone": "IMPLICIT_HIGH_PLUS", "state": "IMMINENT_INTIMACY" }, "magnetic_gaze_control": { "eye_behavior": "SOFT_LOCK_WITH_SLOW_RELEASE", "attention_pull": "CENTER_FOVEAL_MAX_SAFE" }, "body_language_magnetism": { "micro_opening": "4_6_PERCENT", "areas": ["clavicle","neck_base","outer_shoulder","upper_torso"], "posture": "RELAXED_AVAILABLE_CONFIDENT" }, "anticipation_over_display": { "contact_state": "ALMOST", "delay": "NOW_NOT_YET_STRONG" }, "expected_effect": [ "IMMEDIATE_ATTRACTION_18_PLUS", "STRONG_APPROACH_URGE", "SEXY_TENSION_FELT_NOT_SHOWN" ] }, "erotic_tension_driver_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "IMPLICIT_EROTIC_TENSION_IMMEDIATE_18_PLUS", "tension_core": { "state": "IMMINENT_INTIMACY", "resolution": "DENIED", "time_bias": "NOW" }, "presence_dominance": { "subject": "PRIMARY_SUBJECT_NEAREST_CAMERA", "signal": "QUIET_CONFIDENCE", "effect": "APPROACH_PULL" }, "body_signal_focus": { "priority_zones": ["clavicle","neck_base","outer_shoulder","upper_torso"], "micro_opening": "4_6_PERCENT", "rule": "NO_FACE_NO_IDENTITY_CHANGE" }, "gaze_and_attention": { "eye_behavior": "SOFT_HOLD_THEN_RELEASE", "blink_rate": "INTIMATE_SLOW", "foveal_lock": "MAX_SAFE" }, "sensory_anticipation": { "touch_imagery": "IMPLIED_STRONG", "warmth_proximity": "INTIMATE_REAL", "breath_hint": "CLOSE_CALM", "rule": "SUGGEST_DONT_SHOW" }, "viewer_inclusion": { "camera_as_body": true, "distance": "INTIMATE_REAL", "completion_rule": "VIEWER_COMPLETES_MOMENT" }, "expected_effect": [ "STRONG_SEXY_TENSION_IMPLICIT", "APPROACH_URGE", "DESIRE_EXPERIENCED_BY_VIEWER" ] }, "primal_attractor_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "BOOST_IMPLICIT_ADULT_ATTRACTION_9_5_OF_10", "preconscious_stack": { "dominance_signal": "QUIET_CONFIDENCE_HIGH", "availability_signal": "SELECTIVE_OPENNESS", "status_read": "DESIRABLE_NOT_CHASING" }, "proximity_amplifier": { "distance": "INTIMATE_REAL_NEAR", "occlusion": "PARTIAL_BODY_NEAR_LENS", "rule": "VIEWER_FEELS_CLOSE_NOT_WATCHING" }, "skin_life_cues": { "micro_sheen": "NATURAL_WARM", "capillary_hint": "SUBTLE_LIVING_TONE", "texture_priority": "SOFT_YIELD_READABLE" }, "breath_and_time": { "breath_sync_hint": "NEAR_SHARED", "time_pressure": "NOW_PULL", "resolution": "DELAYED" }, "gaze_micro_dynamics": { "pattern": "HOLD_RELEASE_HOLD", "latency_ms": "120_180", "effect": "APPROACH_INVITATION" }, "composition_bias": { "torso_bias": "UPPER_TORSO_PRIORITY", "neck_clavicle_emphasis": "ELEVATED", "background_competition": "MINIMIZED" }, "expected_effect": [ "FASTER_INITIAL_ATTRACTION", "STRONGER_APPROACH_URGE", "SEXY_TENSION_INCREASE_NO_EXPLICIT" ] }, "limbic_salience_amplifier_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_ADULT_DESIRE_PEAK_WITHOUT_EXPLICIT", "salience_stack": { "contrast_bias": "SKIN_VS_BACKGROUND_STRONG", "rhythm_hint": "SLOW_PULSE_VISUAL", "novelty_familiarity": "FAMILIAR_BODY_UNEXPECTED_PROXIMITY" }, "olfactory_thermal_imagery": { "olfactory": "IMPLIED_WARM_SKIN_CLEAN", "thermal": "IMPLIED_BODY_HEAT_NEAR", "rule": "IMPLIED_ONLY" }, "micro_delay_reward": { "reward_prediction": "HIGH", "delivery": "DELAYED", "effect": "WANT_MORE_NOW" }, "gaze_torso_coupling": { "gaze": "RETURNING_BRIEF_GLANCES", "torso_bias": "UPPER_TORSO_NEAR_LENS", "effect": "APPROACH_PULL" }, "viewer_lock": { "foveal_capture": "MAX_SAFE", "peripheral_quiet": "STRONG", "time_compression": "SUBJECTIVE_NOW" }, "expected_effect": [ "SPIKE_IN_DESIRE_IMPLICIT", "FASTER_APPROACH_URGE", "SEXY_TENSION_AT_LIMIT_ALLOWED" ] } }
Create a set of high‑quality, aesthetic images for an ebook product. The ebook contains 450+ prompts, and the visuals must look modern, clean, and perfect for selling on Etsy. 1. Ebook Cover Image Create a professional ebook cover with: Minimalist, modern design Soft pastel or neutral colours Clean layout Bold title area (leave space for text) Subtle graphics representing journaling, creativity, self‑care, mindset, and personal growth Soft shadows, high resolution Aesthetic Canva‑style look Include a blank space for me to add my own title later 2. Image Representing All 450+ Prompts Create a collage‑style image that visually represents a large collection of prompts: Icons for writing, journaling, creativity, business, productivity, self‑improvement Light, clean background Modern, organised layout Soft pastel colour palette High‑resolution aesthetic Leave a blank title area 3. Five Random Themed Images for Etsy Listing Generate five unique images that show what the ebook is about. Each image should include: Aesthetic workspace or desk setup Notebook, journal, tablet, or digital planner Soft natural lighting Minimal, bright backgrounds Clean, modern props Subtle text placeholders (blank areas) Styled like top‑selling Etsy digital product mockups Soft shadows and cohesive colour palette Each image should feel: Beginner‑friendly Professional Clean and modern Perfect for Etsy listings 4. Overall Style High‑resolution Soft, bright, minimal Pastel or neutral tones Modern Canva aesthetic Consistent branding across all images No clutter, no harsh colours Clean composition i want 3 images P R E M I U M C O M M E R C I A L D I G I TA L D O W N L O A D 450+ ELITE AI PROMPTS FOR BUSINESS OWNERS, ENTREPRENEURS & CONTENT CREATORS The Ultimate High-Performance Prompt Engineering Framework Matrix. Built explicitly to streamline content production, optimize standard operating procedures, and 10x workflow efficiency. ASSET FORMAT Ready-to-Use Digital Guide PROMPT SYSTEM ENGINES 450+ High-Performance Variations TARGET MARKET AUDIENCE Founders, Marketers, Creators, Consultants 450+ Elite AI Prompts Matrix 1 Master Directory of Categories This master index outlines the exact deployment taxonomy of our premium prompt catalog. Each core category provides comprehensive engineering frameworks, actionable template instances, and hyperscalable scaling vectors to address complex professional milestones. CATEGORY DESCRIPTION PROMPT RANGE Strategic Business Planning & Ideation Prompts 001 - 050 High-Converting Sales Copywriting & Funnels Prompts 051 - 100 Multi-Channel Content Creation & Social Media Prompts 101 - 150 Paid Advertising & Email Marketing Prompts 151 - 200 Search Engine Optimization (SEO) & Content Strategy Prompts 201 - 250 Product Launch, Pricing & Funnel Optimization Prompts 251 - 300 Customer Persona, Market Research & Competitive Intelligence Prompts 301 - 350 Operations, Automation & Workflow Efficiency Prompts 351 - 400 450+ Elite AI Prompts Matrix 2 CATEGORY DESCRIPTION PROMPT RANGE Branding, Positioning & Authority Building Prompts 401 - 450 CATEGORY 1: STRATEGIC BUSINESS PLANNING & IDEATION 450+ Elite AI Prompts Matrix 3 Prompt 1: The Blue Ocean Strategy Generator (Deep Engineering Blueprint) Use Case: Identifying untapped market spaces and high-margin differentiation angles for new or restructuring businesses. PROMPT TEXT Act as an elite corporate growth strategist specializing in W. Chan Kim's Blue Ocean Strategy framework. Evaluate my business model and identify untapped market spaces to make our competition irrelevant. My Current Business / Idea: [Insert comprehensive business summary, core product offering, and industry] Target Audience: [Insert primary demographic and psychographic data] Current Main Competitors: [Insert top 2-3 competitors or standard industry options] Construct a comprehensive Blue Ocean Strategy Matrix by answering and expanding upon the Four Actions Framework: 1. ELIMINATE: Which industry-standard factors should we completely eliminate that companies have long competed over? 2. REDUCE: Which factors should be reduced well below the industry standard? 3. RAISE: Which factors should be raised well above the industry standard? 4. CREATE: Which factors should be created that the industry has never offered? Format your response with absolute precision, providing 3 distinct, highly strategic business concepts that combine these elements, complete with specific value propositions and suggested revenue models. Expected Output: A highly structured strategic document outlining an industry analysis, a fully populated Four Actions Framework matrix, and three fully operationalized high-leverage business pivots. 450+ Elite AI Prompts Matrix 4 Prompt 2: Rapid Business Model Validation (Actionable Template) Use Case: Testing the viability of a micro-offer or new business concept within minutes. PROMPT TEXT Analyze the following business concept for feasibility, market demand, and intrinsic weaknesses. Concept: [Insert business idea here] Target Market: [Insert audience here] Monetization Strategy: [Insert how you intend to charge] Provide a brutal, highly objective critique. Identify 3 critical vulnerabilities or fatal assumptions in this model, 3 structural advantages, and a step-by-step 7-day validation plan to test demand with zero ad spend. Expected Output: Bulleted lists detailing vulnerabilities, advantages, and a numbered 7-day chronological action plan for testing. 450+ Elite AI Prompts Matrix 5 Prompt 3: The MVP Feature Matrix & Scoping Advisor Use Case: Narrowing down a product concept to its leanest, high-value version. PROMPT TEXT Act as a technical project manager and product strategist. I have a long list of features for a new digital product/app called [Product Name]. I need to establish a Minimum Viable Product (MVP). Core Target User: [Target User] Full Feature List Ideas: [Insert feature brain-dump] Categorize these features using the MoSCoW method (Must have, Should have, Could have, Won't have). Explain your reasoning for each placement based on achieving the fastest path to monetization and user satisfaction. Expected Output: A clean MoSCoW markdown table accompanied by strategic explanations for engineering trade-offs. 450+ Elite AI Prompts Matrix 6 Prompt 4: The Infinite Content Funnel & Offer Architecture (Premium Addition) Use Case: Designing a seamless value ladder that converts cold traffic into high-ticket recurring clients. PROMPT TEXT Act as a digital product ecosystem architect. Map out a 4-tier value ladder for my business model. Core Topic: [Insert Core Niche] Target Audience: [Insert Audience] Design the exact structure for: 1. Lead Magnet (Free, high-utility asset) 2. Tripwire Offer ($7 - $27 micro-solution) 3. Core Flagship Offer ($97 - $497 deep-dive) 4. High-Ticket Backend ($1,500+ premium implementation/coaching) For each tier, outline the core promise, delivery mechanism, and the psychological bridge that forces the user to ascend to the next level. Expected Output: A comprehensive value ladder roadmap mapping out asset components, conversion pricing models, and transitional messaging hooks. PROMPTS 5-50: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 5-15 (Niche Pivot Evaluators) "Modify Prompt 1 to focus exclusively on [E-commerce / SaaS / Agency Models / Local Service / Digital Products / Consulting / Content Monetization / EdTech / Healthtech / Marketplace networks / B2B Wholesaling / Dropshipping]. Focus on supply chain optimization and customer acquisition cost adjustments." Prompts 16-30 (Risk Mitigation Matrices) "Act as a risk officer. Conduct a thorough pre-mortem analysis on an organization operating in [Industry]. Outline a matrix mapping 10 potential operational, macro-economic, or regulatory failures and provide an actionable mitigation protocol for each." 450+ Elite AI Prompts Matrix 7 Prompts 31-45 (Capital & Unit Economics Modeling) "Act as a fractional CFO. Build an explicit pricing, cost-of-goods-sold (COGS), and customer lifetime value (LTV) framework for a business with a price point of [Price] and a churn rate of [Churn %]. Show calculations for breakeven points." Prompts 46-50 (Strategic Partnership Frameworks) "Generate a comprehensive strategic alliance blueprint for a company selling [Product] to form non-competitive partnerships with [Partner Industry]. Detail reciprocal value propositions, legal alignment highlights, and comarketing strategies." 450+ Elite AI Prompts Matrix 8 CATEGORY 2: HIGH-CONVERTING SALES COPYWRITING & FUNNELS Prompt 51: The Master Copywriting Framework Engine (Deep Engineering Blueprint) Use Case: Creating comprehensive sales pages using multiple proven psychological models simultaneously. PROMPT TEXT Act as an elite direct-response copywriter who has generated millions in online sales. Write a long-form sales page copy for my digital offering. Product/Service Name: [Insert Name] Core Offer & Pricing: [Insert details of price and components] Core Transformation: [What major problem is solved and what is the end state?] Target Audience: [Insert deep demographic and core desires/fears] Generate sales copy divided into three distinct variations based on separate copywriting architectures: 1. AIDA (Attention, Interest, Desire, Action) 2. PAS (Problem, Agitation, Solution) 3. Quest (Qualify, Understand, Educate, Stimulate, Transition) Ensure the copy features high-converting, pattern-interrupt headlines, authentic bullet points with vivid emotional outcomes, conversion-focused risk reversal guarantees, and tight, clear calls to action. Avoid hype-filled corporate fluff or over-promising buzzwords. Expected Output: Three complete, ready-to-deploy sales copy scripts meticulously labeled by their specific psychological frameworks. 450+ Elite AI Prompts Matrix 9 Prompt 52: Short-Form High-Converting VSL Script (Actionable Template) Use Case: Writing high-impact, 2-minute video sales letter scripts for landing pages or low-ticket funnels. PROMPT TEXT Write a 90-second Video Sales Letter (VSL) script based on the 'Hook-Story- Offer' architecture. Product: [Insert offer here] Target Audience: [Insert audience here] Primary Pain Point: [Insert main problem here] The script must contain clear visual cues in brackets like [Visual: Cut to close up] alongside spoken text. Keep sentences short, punchy, conversational, and highly persuasive. Expected Output: A beautifully structured, dual-column video script containing visual directions on the left and audio spoken text on the right. 450+ Elite AI Prompts Matrix 10 Prompt 53: High-Ticket Discovery Call Script Generator Use Case: Structuring a non-sleazy, high-conversion consultation script for freelancers, coaches, and agencies. PROMPT TEXT Act as a premium sales trainer. Build a complete discovery and sales call script for my agency/consulting service: [Service Name]. We sell to [Target B2B Audience] at a price point of [Price]. The script must follow a logical sequence: Rapport -> Setting the Agenda -> Deep Diagnosis (Pain Mapping) -> Future State Visualization -> Cost of Inaction -> Soft Transition to Offer -> Objection Handling (Time/Money/Authority). Expected Output: A detailed conversational script with specific phrasing, ideal responses, and explicit psychological notes on why each phase matters. 450+ Elite AI Prompts Matrix 11 Prompt 54: The Irresistible Offer Stack Builder (Premium Addition) Use Case: Crafting a multi-layered bonus stack that makes saying 'no' feel financially irresponsible for the buyer. PROMPT TEXT Act as an elite direct-response marketer trained in Alex Hormozi's offer creation principles. I am selling [Core Product Name] at a price point of [Price]. It helps [Target Audience] achieve [Core Transformation]. Build an irresistible offer stack by adding 4 highly strategic bonuses that solve the next chronological problem the buyer faces after using the core product. For each bonus, provide a highly descriptive title, an estimated perceived monetary value, and a breakdown of why it obliterates operational friction. Expected Output: A detailed offer breakdown with an itemized bonus list, value justification metrics, and scarcity copy blocks. PROMPTS 55-100: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 55-68 (Sales Page Subcomponent Specialists) "Write a collection of 15 high-converting headlines and sub-headlines for [Product Name] using specific copywriting hooks: The Cliffhanger, The Secret, The Contrarian, The Data-Driven, and The Social Proof." Prompts 69-83 (Niche Funnel Customizers) "Adapt Prompt 51 to generate sales page copy specifically formatted for [SaaS landing pages / E-commerce product descriptions / Coaching landing pages / Paid newsletter sign-up pages / Local service special offers / Kickstarter crowd-funding campaigns]." Prompts 84-95 (Objection-Crushing FAQ Modules) "Generate a comprehensive, conversion-focused FAQ block for [Product Name] designed explicitly to disarm the 7 most common consumer objections related to risk, capability, speed, and cost." 450+ Elite AI Prompts Matrix 12 Prompts 96-100 (Cart Abandonment Recovery Scripts) "Write a 3-part SMS and push-notification remarketing sequence aimed at recovering users who abandoned their carts for [Product Name]. Keep copy ultra-short, dynamic, and scarcity-driven." 450+ Elite AI Prompts Matrix 13 CATEGORY 3: MULTI-CHANNEL CONTENT CREATION & SOCIAL MEDIA Prompt 101: The Omnichannel Content Multiplication Blueprint (Deep Engineering Blueprint) Use Case: Turning a single long-form asset (blog or podcast) into dozens of hyper-optimized social media assets. PROMPT TEXT Act as a master content strategist and social media manager. I am providing you with the core transcript/text of a long-form content piece. Your job is to engineer an absolute multi-channel distribution strategy. Source Material Topic/Summary: [Insert text or detailed summary of long-form topic] Target Audience: [Insert audience details] Brand Tone: [Insert tone, e.g., expert, witty, academic, accessible] From this source material, generate the following exact assets: 1. 3 High-Context LinkedIn Posts: One data/insight heavy, one narrative/storydriven, and one contrarian take. All must include optimized spacing and strong formatting. 2. 5 X (Twitter) Threads: Each thread must be 5-7 tweets long, starting with a viral hook, unpacking one distinct point from the text, and ending with a clear CTA. 3. 3 Short-Form Video Scripts (Reels/TikTok/Shorts): 30-60 seconds max. Must include an explicit visual hook in the first 3 seconds, a fast-paced body, and a loop-optimized ending. Ensure every asset sounds native to its respective platform and retains high professional value. Expected Output: A comprehensive multi-platform distribution library containing copy-pasteable text for LinkedIn, X, and structured vertical video scripts. 450+ Elite AI Prompts Matrix 14 Prompt 102: The Viral Hook Constructor (Actionable Template) Use Case: Creating instantly engaging titles and opening sentences for social media posts. PROMPT TEXT Generate 15 highly engaging hooks for a post about [Insert Specific Topic] targeted at [Insert Target Audience]. Provide 3 variations for each of the following psychological angles: 1. Negative Urgency / Fear of Missing Out (FOMO) 2. The "Unpopular Opinion" / Contrarian Take 3. The Clear Case Study / Step-by-Step Proof 4. The "Stop Doing X" Mistake Callout 5. The High-Value Curated List Shortcut Expected Output: A clean list of 15 ready-to-test hooks categorized by their psychological trigger mechanism. 450+ Elite AI Prompts Matrix 15 Prompt 103: The 30-Day Content Calendar Architect Use Case: Rapidly mapping out a balanced, strategic monthly publishing schedule. PROMPT TEXT Act as a content marketing director. Build a 30-day social media content calendar matrix for [Business Name/Niche] targeting [Audience]. Strategically balance the content across 4 pillars: 40% Authority/Value Building, 30% Engagement/Community, 20% Growth/Virality, and 10% Direct Conversion/Sales. Format as a markdown table with columns: Day, Pillar, Platform, Concept Headline, and Call to Action. Expected Output: A fully populated 30-row table detailing a cohesive monthly social content framework. 450+ Elite AI Prompts Matrix 16 Prompt 104: The Short-Form Video Virality Loop Engine (Premium Addition) Use Case: Structuring hyper-engaging vertical video scripts for Reels, TikTok, and Shorts that drive profile follows. PROMPT TEXT Act as a viral retention editor and social media growth expert. Write a collection of 5 distinct 45-second script structures for vertical video channels (TikTok/Reels/Shorts) based on the topic of [Topic]. Each script must follow this retention framework: - 0-3s: Visual & Verbal pattern-interrupt hook. - 3-15s: Agitation of the core workflow mistake. - 15-38s: The unique counter-intuitive step-by-step solution. - 38-45s: A seamless, loop-optimized call-to-action that feeds back into the start of the video. Expected Output: Five copy-pasteable script frameworks with audio notation lines and bracketed visual asset direction guidelines. PROMPTS 105-150: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 105-120 (Niche Social Customizers) "Modify Prompt 101 to optimize content formats exclusively for [Instagram Carousel outlines / YouTube long-form outlines / Pinterest Idea Pins / Threads platform dynamics / Medium articles / Substack newsletter features]." Prompts 121-135 (Industry Specific Engines) "Generate a dedicated social media content library focusing on educational growth for [Real Estate Agents / B2B SaaS Founders / Fitness Coaches / E-commerce Fashion Brands / Financial Consultants / Web3 Developers / Local Cafes]." 450+ Elite AI Prompts Matrix 17 Prompts 136-145 (Podcast & Video Asset Scripting) "Create a comprehensive solo podcast episode script outline (30 minutes) on the topic of [Topic], including a compelling intro hook, 3 main core lessons with illustrative real-world case studies, and a closing sign-off segment." Prompts 146-150 (Community Engagement Prompts) "Generate 20 polarizing, high-engagement conversation starters, open-ended questions, and community polls optimized to spark intense discussions in a private Facebook Group or Discord Server focused on [Topic]." 450+ Elite AI Prompts Matrix 18 CATEGORY 4: PAID ADVERTISING & EMAIL MARKETING Prompt 151: The High-ROAS Direct Response Ad Matrix (Deep Engineering Blueprint) Use Case: Writing Facebook, Instagram, and Google ad creatives that maximize conversions. PROMPT TEXT Act as an elite media buyer and direct-response copywriter. I need an advertising creative matrix for a Meta (Facebook/Instagram) ad campaign. Product/Service Name: [Insert Name] Core Offer: [Insert Offer details] Target Demographic: [Insert details] Primary Competitor Copy Strategy: [Insert what competitors do, or general industry baseline] Generate 4 distinct ad copy variations utilizing diverse creative angles to prevent ad fatigue: 1. Angle A: The Direct Benefit / Data-Proven Solution (Focus heavily on speed, ROI, and metrics). 2. Angle B: The Story-Driven / Relatable Struggle (Narrative framework following a clear arc from pain to discovery). 3. Angle C: The Short & Punchy Benefit List (Minimalist text optimized for fast mobile scrolling). 4. Angle D: The Contrarian / Pattern Interrupt (Challenging a widely held industry belief). Each variation must include: Primary Text, Headline (Max 40 characters), Description, and a specific Image/Video Creative Concept Brief for the designer. Expected Output: A robust markdown matrix detailing all four ad variations with copywriting lines and explicit asset design briefs. 450+ Elite AI Prompts Matrix 19 Prompt 152: High-Converting Email Lead Magnet Welcome Sequence (Actionable Template) Use Case: Nurturing new subscribers immediately after they download a free resource. PROMPT TEXT Write a 3-part automated email welcome sequence for subscribers who just downloaded my free lead magnet: [Lead Magnet Name]. The core offering we want them to buy at the end of the sequence is [Paid Product Name]. Email 1: Value Delivery + Setting expectations + Open loop hook. Email 2: Educational case study / Shift core paradigm + Agitate pain. Email 3: The Pitch + Urgency / Soft scarcity call. Provide highly clickable, curiosity-inducing subject lines for each email. Expected Output: Three fully written email templates with subject lines, preview text, and placeholder brackets. 450+ Elite AI Prompts Matrix 20 Prompt 153: The Cart Abandonment Recovery Sequence Engine Use Case: Setting up a high-revenue recovery automation sequence for e-commerce or digital checkouts. PROMPT TEXT Act as a retention marketing specialist. Write a 4-part cart abandonment email flow for customers who left [Product Name] in their checkout cart. Email 1 (Sent 1 hour later): Helpful customer support angle. Email 2 (Sent 24 hours later): Social proof and logic-driven objection busting. Email 3 (Sent 48 hours later): Introduction of a limited-time 10% incentive discount code. Email 4 (Sent 72 hours later): Final deadline warning before coupon expiration. Expected Output: A complete automated email copywriting workflow with advanced subject line variations. PROMPTS 154-200: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 154-168 (Ad Platform Specialists) "Modify Prompt 151 to structure ad creative copy natively optimized for [Google Search Text Ads / LinkedIn Sponsored Content / TikTok Spark Ads / YouTube Pre-Roll scripts / Pinterest Promoted Pins]." Prompts 169-183 (Email Campaign Broadcasters) "Generate a sequence of 15 promotional email broadcast conceptual angles and outlines for a major annual holiday flash sale event targeting past buyers of [Product Type]." Prompts 184-195 (Newsletter Content Blueprints) "Act as a professional newsletter editor. Write an engaging, high-value weekly editorial newsletter template focusing on insights within [Industry], utilizing an engaging narrative style, actionable listicles, and an elegant sponsorship plug." 450+ Elite AI Prompts Matrix 21 Prompts 196-200 (Re-engagement Cold Workflows) "Write a 3-part re-engagement email sequence designed to scrub and re-activate a cold email subscriber list that hasn't opened an email in 90+ days. Use high-impact pattern-interrupt subject lines." 450+ Elite AI Prompts Matrix 22 CATEGORY 5: SEARCH ENGINE OPTIMIZATION (SEO) & CONTENT STRATEGY Prompt 201: Topical Authority & Semantic Keyword Clustering (Deep Engineering Blueprint) Use Case: Developing a dominant SEO content strategy that ranks for high-intent search terms. PROMPT TEXT Act as an enterprise-level SEO Director and semantic search architect. I need you to map out a topical authority strategy to rank highly for my core commercial keyword. Core Keyword/Niche: [Insert Primary Keyword, e.g., "organic skincare for sensitive skin"] Target Country/Market: [Insert Target Location] Generate a comprehensive Topical Authority Matrix. You must cluster related terms into an explicit semantic hierarchy. For each cluster, provide: 1. Pillar Page Topic: The master comprehensive resource concept. 2. 5 Specific Sub-topic / Cluster Content Article Titles: Highly optimized long-tail keyword concepts. 3. Primary Search Intent Mapping: Explicitly classify each title as Informational, Commercial, Navigational, or Transactional. 4. LSI / Semantic Keywords: List 8 highly relevant latent semantic indexing keywords to embed naturally within each article. 5. Internal Linking Architecture: Detail exactly how the sub-topic pages should link back to the primary pillar page to distribute link equity efficiently. Expected Output: A highly sophisticated, multi-tier search engine strategy complete with explicit content cluster mappings and technical internal linking directives. 450+ Elite AI Prompts Matrix 23 Prompt 202: Perfect On-Page Content Blueprint (Actionable Template) Use Case: Formatting an individual blog post or article to rank perfectly for a chosen keyword. PROMPT TEXT Act as an on-page SEO optimizer. I am going to give you a specific article topic and target keyword. I need you to write a detailed, structural outline for the content. Article Topic: [Insert Topic] Target Keyword: [Insert Keyword] Provide the exact optimized Title Tag (Max 60 chars), Meta Description (Max 155 chars), an H1 header, and a complete hierarchical structure of H2 and H3 tags. Under each heading, provide brief instructions on what information must be included to satisfy search intent perfectly. Expected Output: A meticulously formatted Markdown outline ready to hand off to a copywriter or content writer. 450+ Elite AI Prompts Matrix 24 Prompt 203: Skyscraper Technique Competitor Content Upgrader Use Case: Reverse-engineering competitor pages to build superior content that wins back search rankings. PROMPT TEXT Act as a senior SEO analyst. I am pasting the core structural outline and feature list of the top-ranking competitor page for the keyword [Keyword]. Competitor Content Blueprint: [Insert competitor outline or page overview] Analyze this structure and outline a comprehensive 'Skyscraper' content architecture that is 10x more valuable, thorough, and engaging. Identify missing sections, outdated points, better data integrations, and superior visual asset placeholders. Expected Output: A comprehensive content enhancement roadmap detailing precisely how to outperform the rival URL. PROMPTS 204-250: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 204-218 (Local SEO Mastery) "Modify Prompt 201 to map out a complete Local SEO dominance strategy for a [Service Business, e.g., HVAC / Chiropractic] in [City]. Focus heavily on geo-targeted landing pages, localized user intent, and Google Business Profile asset optimization." Prompts 219-233 (E-commerce Collection Optimization) "Generate optimized SEO title structures, meta tags, and long-form collection page category descriptions for an ecommerce storefront operating in the [Niche] space." Prompts 234-245 (Backlink Outreach Sequence Builder) "Write a collection of 5 distinct, highly personalized cold email outreach templates using diverse psychological angles (The Broken Link Angle, The Fresh Data Angle, The Unlinked Brand Mention Angle) designed to secure high-domain authority backlinks for [Website Topic]." 450+ Elite AI Prompts Matrix 25 Prompts 246-250 (Technical Audit Remediation Guides) "Act as a technical webmaster. Write a clear, step-by-step diagnostic and remediation guide for fixing widespread crawl errors, low Core Web Vitals performance scores, and broken internal redirects for a large content site." 450+ Elite AI Prompts Matrix 26 CATEGORY 6: PRODUCT LAUNCH, PRICING & FUNNEL OPTIMIZATION Prompt 251: The High-Leverage Product Launch & Funnel Orchestrator (Deep Engineering Blueprint) Use Case: Mapping out an end-to-end multi-day promotional blueprint to clear inventory or maximize digital sales. PROMPT TEXT Act as a premier digital launch engineer and funnel optimization architect. I am planning the official commercial release of my new product. Product Offer: [Insert Offer Mechanics, Tiered Bundles, and Core Target Pricing] Target Audience Profile: [Insert Demographic and Buying Persona Parameters] Primary Launch Channel: [Insert Primary Delivery System, e.g., Webinar / Live Challenge / Internal Email List Flash Sale / Paid Ads Cold Funnel] Architect a complete, hyper-strategic 14-Day Launch Matrix mapping out the exact operational levers required. Divide the strategy into three explicit chronological phases: Pre-Launch Runway (Days 1-7), Open-Cart Inundation (Days 8-12), and Close-Cart Scarcity Automation (Days 13-14). For each distinct day, specify the exact marketing asset required, the psychological trigger mechanism to leverage, and the internal tracking metrics needed to judge campaign health. Expected Output: A comprehensive launch asset matrix containing operational milestones, daily distribution angles, and strategic pacing parameters. 450+ Elite AI Prompts Matrix 27 Prompt 252: Tiered Premium Pricing Structurer (Actionable Template) Use Case: Constructing high-yield tiered checkouts that mathematically push buyers toward the premium variant. PROMPT TEXT Act as a monetization consultant. Help me structure an optimized 3-tier pricing architecture for my service or product offering. Core Offering Concept: [Insert Product/Service Details] Baseline Intended Target Price: [Insert Desired Pricing Target] Construct three explicit tiers: Tier 1 (The Budget Anchor), Tier 2 (The Dominant Sweet Spot - Recommended Tier), and Tier 3 (The Ultimate Premium Value/VIP Package). Outline the specific deliverables for each tier, the strategic framing rules to make Tier 2 the clear choice, and how to apply psychological price anchoring. Expected Output: A structured breakdown detailing the exact contents, pricing figures, and conversion layout for a 3-column checkout page. 450+ Elite AI Prompts Matrix 28 Prompt 253: Up-Sell & Cross-Sell Funnel Optimization Engineer Use Case: Increasing Average Order Value (AOV) by constructing high-converting one-click checkout expansions. PROMPT TEXT Act as a digital funnel conversion rate optimization (CRO) specialist. Analyze my existing front-end checkout funnel and build a high-converting up-sell framework. Primary Front-End Product: [Insert Core Offer and Price Point] Target Buyer Pain Point: [Insert Core Motivation] Generate 2 distinct Order Bump ideas (under $27) for the checkout page and 2 highly strategic One-Click Post-Purchase Up-Sell offers (higher value) that logically complement the primary purchase. Expected Output: A markdown funnel map detailing copy structures, pricing logic, and immediate behavioral micro-incentives. PROMPTS 254-300: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 254-268 (Webinar Conversion Blueprints) "Write a comprehensive 60-minute pitch outline script framework for a high-converting automated webinar funnel selling [Product]. Detail slide transitions, the precise hook-to-offer transition bridge, and risk reversal presentation formatting." Prompts 269-283 (High-Ticket Application Engines) "Design a strategic application funnel script and automated onboarding intake questionnaire for a high-ticket $5k+ mastermind or group coaching program targeting [Audience Profile]." Prompts 284-295 (Subscription Churn Remediation Frameworks) "Act as a retention operations specialist. Build a comprehensive 4-stage automated cancellation flow and downsell sequence for a membership subscription business charging [Price] struggling with high user churn." 450+ Elite AI Prompts Matrix 29 Prompts 296-300 (Affiliate/JV Network Launch Toolkits) "Generate an official Joint Venture (JV) and affiliate recruitment swipe toolkit for [Product Launch], including promotional asset outlines, legal structure highlights, and automated affiliate welcome messages." 450+ Elite AI Prompts Matrix 30 CATEGORY 7: CUSTOMER PERSONA, MARKET RESEARCH & COMPETITIVE INTELLIGENCE Prompt 301: The Hyper-Detailed Customer Avatar Architect (Deep Engineering Blueprint) Use Case: Building an deep, actionable target audience profile to steer copywriting and product features. PROMPT TEXT Act as a world-class market research director specializing in consumer psychology. I need you to construct an incredibly detailed, comprehensive psychographic and behavioral avatar profile for my business. My Product/Service Category: [Insert exact description of offer] General Intended Target Audience: [Insert high-level audience definition] Generate a deep, multi-dimensional profile divided into the following precise sections: 1. DEMOGRAPHIC MATRIX: Age, income band, job titles, technical literacy, geographic clustering. 2. COGNITIVE FRICTION ENGINES: Deepest hidden fears, immediate sources of daily frustration, systemic anxieties, and midnight imposter thoughts. 3. TRANSFORMATION VECTOR: Desired dream state, operational aspirations, status markers sought, and core purchasing motivations. 4. ACCIDENTAL OBJECTIONS: Pre-conceived biases, internal micro-skepticism toward this category, and historical purchasing failures that block conversions. Ensure your analysis reads like an advanced anthropological study. Avoid surface-level definitions. Expected Output: A highly detailed target audience dossier mapping deep psychological drivers, buying triggers, and behavioral profile metrics. 450+ Elite AI Prompts Matrix 31 Prompt 302: Competitor Digital Footprint Swot Framework (Actionable Template) Use Case: Uncovering systemic gaps in your top rival's product lines and marketing angles. PROMPT TEXT Act as a competitive intelligence analyst. Evaluate the market position of my main competitor to help me build a highly differentiated market angle. Competitor Brand Name/URL: [Insert Competitor Details] Their Core Product/Service Offer: [Insert Competitor Offer Details] My Alternative Offer Concept: [Insert Your Offer Concept] Run a thorough, highly objective SWOT analysis focusing on their structural vulnerabilities. Pinpoint exactly where their customer reviews or delivery systems typically fail, and provide 3 distinct marketing angles to exploit those gaps. Expected Output: A comprehensive competitor gap analysis table paired with 3 ready-to-test positioning statements. 450+ Elite AI Prompts Matrix 32 Prompt 303: Review Mining Sentiment Extraction Matrix Use Case: Extracting exact, high-converting customer phrases from raw forum, social media, or marketplace feedback. PROMPT TEXT Act as a semantic linguistic researcher. I am going to paste a collection of unedited raw customer review comments from forums/marketplaces regarding my industry niche. Raw Review Data: [Paste Raw Text / Customer Voice Transcripts Here] Analyze this text data and extract: 3 primary recurrent pain points phrased in the customer's exact voice, 3 hidden feature requests highlighted, and a list of the top 10 emotional keywords they naturally use. Expected Output: A processed review-mining data matrix mapping explicit emotional phrases to actionable copywriting elements. PROMPTS 304-350: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 304-318 (B2B Enterprise Account Profiling) "Modify Prompt 301 to construct a B2B buying committee profile for an enterprise corporate environment. Detail individual procurement priorities for the CMO, CTO, and CFO regarding [Product/Service]." Prompts 319-333 (Reddit/Quora Intent Parsing Blueprints) "Act as a trend forecaster. Build a systematic framework and prompt script template designed to scan Reddit subreddits related to [Niche] to spot emergent cultural problems before competitors." Prompts 334-345 (Blue-Collar / Local Service Demographic Matrices) "Generate a localized customer avatar analysis blueprint specifically tuned for service businesses operating within a strict [Radius] of [City], analyzing home-ownership demographics and regional wealth factors." 450+ Elite AI Prompts Matrix 33 Prompts 346-350 (International Market Entry Assessments) "Act as a global expansion consultant. Build a strategic analysis checklist framework to test whether an existing digital product catalog can scale successfully into [Target Country], accounting for localization adjustments." 450+ Elite AI Prompts Matrix 34 CATEGORY 8: OPERATIONS, AUTOMATION & WORKFLOW EFFICIENCY Prompt 351: Corporate SOP Engineering Architect (Deep Engineering Blueprint) Use Case: Standardizing complex business processes so they can be outsourced or automated cleanly. PROMPT TEXT Act as a premier operations manager and business systems engineer specializing in lean workflow structures. I need you to build a highly detailed Standard Operating Procedure (SOP) manual for an essential operational routine in my business. Target Operational Workflow: [Insert Workflow Process, e.g., Onboarding a B2B client / Uploading and optimizing a new e-commerce SKU / Processing weekly financial payroll] Core Software Tools Utilized: [Insert Tech Stack Tools, e.g., Slack, Notion, Asana, Google Sheets, QuickBooks] Target Personnel Execution Level: [Insert Role, e.g., Junior Virtual Assistant / External Contractor] Construct a professional, step-by-step SOP manual written with absolute mechanical precision. For each stage of the workflow, provide an explicit chronological checklist, clear tool parameters, required output state verification markers, and error-handling protocols for edge cases. Expected Output: An enterprise-ready Markdown SOP document featuring hierarchical numbering, step-by-step actions, and troubleshooting protocols. 450+ Elite AI Prompts Matrix 35 Prompt 352: Tech Stack Optimization Matrix (Actionable Template) Use Case: Trimming software overhead costs and connecting detached platforms through automation engines like Make or Zapier. PROMPT TEXT Act as a systems integrator. Audit my current collection of subscription software tools to identify redundancies, cost-savings, and opportunities for automated data syncs. Current Software Stack List: [Insert Full Tool List and Approximate Monthly Expense] Core Data Flow Goal: [Insert Core Sync Objective, e.g., Automate customer CRM tracking upon checkout] Identify 2 immediate software consolidations to save money and provide a detailed 3-step automation map outlining trigger-to-action steps using [Zapier / Make.com]. Expected Output: A software audit report mapping tool replacements and step-by-step webhook integration steps. 450+ Elite AI Prompts Matrix 36 Prompt 353: Team Delegation & Task Scoping Assessor Use Case: Constructing flawless project hand-off documentation for remote teams or freelancers. PROMPT TEXT Act as an agile project manager. I need to delegate a highly critical creative task to an external team member. Target Project Deliverable: [Insert Exact Task, e.g., Developing an active email sequence in Klaviyo] Timeline Constraints: [Insert Hard Deadline] Write a crystal-clear project assignment brief outlining explicit scope boundaries, mandatory definition-of-done quality benchmarks, a link to contextual resources, and 3 specific quality tests they must clear before submission. Expected Output: A structured delegation document ready to paste into Asana, ClickUp, or Slack. PROMPTS 354-400: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 354-368 (E-commerce Fulfillment Optimization) "Modify Prompt 351 to build an optimized operations blueprint for third-party logistics (3PL) order fulfillment routines, focused on reducing picking errors for [Product Type]." Prompts 369-383 (Customer Support Playbooks) "Generate an official customer support macro and canned-response library addressing the 10 most common customer complaints regarding shipping delays or product defects within [Industry]." Prompts 384-395 (Content Pipeline Scaling Blueprints) "Act as a media operations producer. Build a complete content production line tracking workflow system for a digital agency scaling from producing 5 assets weekly to 50 assets weekly across remote teams." 450+ Elite AI Prompts Matrix 37 Prompts 396-400 (Crisis Data-Backup & Security Blueprints) "Act as an IT systems manager. Create a 5-step operational emergency protocol playbook detail mapping data recovery actions for a company experiencing an active web data leak or platform outage." 450+ Elite AI Prompts Matrix 38 CATEGORY 9: BRANDING, POSITIONING & AUTHORITY BUILDING Prompt 401: Brand Identity & Voice DNA Matrix (Deep Engineering Blueprint) Use Case: Pinpointing a distinct, non-generic verbal identity that builds long-term authority and sets your brand apart. PROMPT TEXT Act as an elite brand positioning specialist and corporate identity consultant. I need you to engineer a comprehensive Brand Voice DNA and Positioning Matrix for my personal brand or business. Core Industry / Offering: [Insert Core Focus] Founder Background / Core Values: [Insert Key Values / Brief Backstory] Target Audience Profile: [Insert Core Demographic / Market Segment] Construct a complete brand playbook covering the following structural matrices: 1. BRAND VOICE PARADIGM: 4 primary brand adjectives paired with explicit "We say X, We NEVER say Y" copy examples. 2. THE BRAND STORY ARC: A high-impact Founder's Narrative constructed around the classic Hero's Journey framework, optimized to drive customer trust. 3. AUTHORITY ANCHOR: Our core differentiated worldview statement that challenges standard industry beliefs. 4. SYSTEMATIC LEXICON: A list of 15 unique branded terms, frameworks, or acronyms to secure intellectual property positioning. Expected Output: A highly professional brand voice style guide complete with conversational copy constraints and messaging blueprints. 450+ Elite AI Prompts Matrix 39 Prompt 402: The PR Pitch & Organic Media Hook Generator (Actionable Template) Use Case: Securing organic media coverage, podcast appearances, and print features. PROMPT TEXT Act as a public relations professional. I want to secure guest appearances on industry podcasts and digital publications read by my target audience. My Core Topic / Expertise Area: [Insert Core Value and Focus] Target Publication Type: [Insert Target Media Profile] Generate 5 distinct, high-impact story angles or news hooks centered around my business model that would be immediately appealing to a journalist. Include an ultra-short, cold pitch email template designed to achieve high response rates. Expected Output: A curated list of 5 media hooks alongside a structured, copy-and-paste email pitch template. 450+ Elite AI Prompts Matrix 40 Prompt 403: Personal Brand Thought Leadership Pillar System Use Case: Generating highly authoritative text content on LinkedIn or Twitter to draw in high-value inbound clients. PROMPT TEXT Act as a creative strategist for top corporate executives. Build a complete authority building pillar system for my personal brand on professional social media platforms. My Core Worldview: [Insert Contrarian or Dominant Perspective] Target Network Segment: [Insert B2B Decision Makers / Clients] Map out 3 core thought leadership content themes, complete with a structured blueprint on how to turn everyday business problems into highly engaging strategic case studies that demonstrate elite executive capability. Expected Output: A structured brand-positioning roadmap detailing clear storytelling styles and actionable narrative frameworks. PROMPTS 404-450: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 404-450 (Targeted Modifiers) Deploy targeted modifiers to focus content themes explicitly around thought leadership expansion vectors. Customize tone parameters to align perfectly with specific industrial verticals. 450+ Elite AI Prompts Matrix 41
1girl solo breasts fishnets rating:s large_breasts long_hair cleavage rating:q fishnet_legwear black_hair pantyhose leotard lips huge_breasts original gloves highleg looking_at_viewer thighs standing makeup curvy swimsuit lipstick open_clothes bare_shoulders highleg_leotard jewelry parted_lips long_sleeves bangs cowboy_shot covered_nipples thick_thighs realistic coat navel cape weapon wide_hips jacket photo_(medium) smile armor thighhighs nose outdoors earrings underwear blue_eyes brown_eyes mole medium_breasts holding fur_trim see-through black_eyes very_long_hair blush elbow_gloves closed_mouth mask covered_navel pelvic_curtain thigh_gap sky skindentation clothing_cutout black_gloves red_lips choker black_legwear bikini tattoo dress revealing_clothes brown_hair simple_background panties thigh_strap cameltoe sword bodysuit dc_comics skin_tight groin 3d short_hair snow underboob scarf cloak traditional_media black_leotard dark_skin center_opening no_bra grey_eyes hand_on_hip
score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, glshs, miquella, back view, holding a sword to the ground, looking at the viewer, light white blouse dropped to the middle of the back, exposing the shoulders, hands pressed to chest BREAK short pink hair, green eyes, light smile, outdoor, daylight, blue sky on the background, hard shadows, sunny day, (semi realism, high quality:1.2), source_anime, rating_questionable, <lora:StS_PonyXL_Detail_Slider_v1.4_iteration_3:2>, <lora:GLSHS_V2-4:0.8>
Minimalist high-end advertising poster with a premium lifestyle-tech and SaaS aesthetic, designed for a professional digital marketing campaign. Background: Soft warm beige gradient with subtle depth, elegant and minimal, premium SaaS visual identity. Strong negative space, clean editorial composition inspired by Apple, Stripe, and Notion branding. Headline (hero message) Large, bold modern sans-serif typography, centered, confident and premium: “It’s not magic. It’s automation.” The headline must feel like a strong statement, clean and intelligent. Subheadline (value proposition) Below the headline, refined modern typography: “Learn how anyone can use AI and Zapier automation to earn more money and save time — without coding.” Tone: clear, human, accessible, non-technical. Product identity Subtle but visible course title: “Workflow Automation Masterclass with Zapier” Positioned with premium SaaS branding style. Social proof (stars + rating) Near the course title or pricing block: A row of five minimalist stars in soft gold tone. Text next to stars in small refined typography: “5.0 rating from early users” Design rule: subtle, elegant, SaaS-style trust signal. Premium badges (SaaS-style trust markers) Below the stars or aligned horizontally in a clean row: Minimalist rounded badges with thin outlines and subtle shadows, Apple-like UI style: No-code friendly AI-powered workflows Trusted by creators Built for productivity Professional-grade automation Design rule: Badges must look like SaaS product features, not marketing stickers. Soft neutral colors, outline icons, minimal text. Pricing block (premium conversion design) Minimalist pricing layout: Label: “Launch Offer” Original price: 79€ (crossed out in light grey) New price: 49€ (bold, slightly larger, visually dominant) Caption: “Limited-time launch price.” Pricing must feel exclusive, not cheap. Typography small, elegant, generous spacing. Visual composition (technology + automation) Lower-right quadrant: A modern laptop with a clean SaaS interface displaying Zapier automation workflows. Zapier logo at the center as the main hub. Thin elegant lines connecting the Zapier logo to official app logos in full brand color: Gmail, Stripe, Notion, Google Sheets, YouTube, Instagram, EmailOctopus, Mailchimp. Logos in authentic brand colors, slightly softened saturation, flat vector style. Design principles Ultra-clean layout Strong visual hierarchy Editorial composition Balanced asymmetry Grid-based structure Premium spacing and margins Typography: Modern sans-serif (Apple SF Pro / Inter / Neue Haas Grotesk style). Lighting: Soft cinematic lighting, premium commercial photography look. Mood & positioning Empowering, aspirational, modern, calm confidence. Focused on freedom, time, and money. Accessible to everyday people, not technical users. No hype, no spammy marketing tone. Style keywords Ultra-minimalist advertising Premium SaaS aesthetic Apple-inspired design Stripe / Notion / Zapier branding style Lifestyle tech Modern realism High-end commercial poster Editorial design Startup culture AI automation concept 4K quality Sharp focus Professional marketing poster Aspect ratio: 4:5 (Instagram ad), vertical composition.
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
RAW photo, close over the shoulder shot, no face visible, shot from behind and above, framing only hands and iPad. Athletic male hands holding iPad, smart watch on wrist, iPad screen displaying high-tech fitness biometric dashboard, clean dark UI, VO2 Max score, biological age, HRV, resting heart rate, cortisol levels, sleep quality score, metabolic rate, data visualizations, graphs and ring charts glowing on screen. Person seated on black leather sofa, shot from directly behind, only shoulders and hands in frame, no head or face visible. Background through floor-to-ceiling glass windows, Brickell Miami skyline, modern luxury condominiums, bright midday Miami sun, hardwood floors, athletic gear bag on glass table visible. Shallow depth of field, iPad screen sharp and in focus, background softly blurred but recognizable. Natural sunlight casting across room. Photorealistic, editorial fitness photography, natural color grading, no filters, 8k.
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
ultra-realistic cinematic nightclub environment rendered in Unreal Engine 5, massive futuristic interior with towering pillars, glowing circular light rings suspended above, layered walkways and balconies filled with people, polished reflective floor, volumetric lighting and atmospheric haze, warm orange and cool blue neon accents, highly detailed sci-fi architecture diverse TAGG characters (anthropomorphic feline, canine, and hybrid alien species) wearing sleek black biomechanical suits with glowing orange energy lines, highly detailed textures, realistic fur and skin shaders, expressive eyes, subtle facial markings, cyber-organic design crowded dance floor filled with characters dancing in pairs and singles, all moving independently to a 120 BPM groove, no synchronization, natural human-like motion variation, some dancing close and smooth, others energetic and expressive, some relaxed and swaying, authentic club behavior foreground characters clearly visible with detailed motion, midground packed with dancers, background silhouettes on balconies and platforms, depth and scale emphasized cinematic camera framing, slight handheld motion, shallow depth of field, focus shifting between dancers, lens bloom from neon lights, realistic reflections on the floor mood is energetic, immersive, sensual but natural, social atmosphere, alive with movement, not choreographed, feels like a real night out in a futuristic alien club 120 BPM rhythm implied through body motion and pacing, subtle motion blur on faster movements, high frame rate feel, Unreal Engine 5 lighting, ray tracing, global illumination, cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
Create a clean, modern AI tool thumbnail. Text: Add large, blue bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
RAW photo, close over the shoulder shot, no face visible, shot from behind and above, framing only hands and iPad. Athletic male hands holding iPad, smart watch on wrist, iPad screen displaying high-tech fitness biometric dashboard, clean dark UI, VO2 Max score, biological age, HRV, resting heart rate, cortisol levels, sleep quality score, metabolic rate, data visualizations, graphs and ring charts glowing on screen. Person seated on black leather sofa, shot from directly behind, only shoulders and hands in frame, no head or face visible. Background through floor-to-ceiling glass windows, Brickell Miami skyline, modern luxury condominiums, bright midday Miami sun, hardwood floors, athletic gear bag on glass table visible. Shallow depth of field, iPad screen sharp and in focus, background softly blurred but recognizable. Natural sunlight casting across room. Photorealistic, editorial fitness photography, natural color grading, no filters, 8k.
{ "protocol_name": "IMAGEN ZERO MIDBODY REAL HUMAN ADULT SENSUAL PRODUCTION PROTOCOL – MARRLONN™", "protocol_version": "V42_FINAL_ABSOLUTE_ALL_IN_ONE_4K_SKIN_5P_ULTRA_PERCEPTUAL_FORENSIC_LOCKED_V1", "protocol_state": "SEALED_ABSOLUTE_NO_OVERRIDE_NO_DRIFT_NO_EVOLUTION", "protocol_scope": "MID_BODY_ONLY_MULTI_GENDER_ADULT_MARKETING_ONLY_NO_EXCEPTION", "core_objective": "CONVERT_ANY_IMAGE_AI_OR_REAL_INTO_REAL_BIOLOGICAL_ADULT_HUMAN_MIDBODY_STUDIO_IMAGE_WITH_MAXIMUM_NON_EXPLICIT_SENSUALITY_AND_ULTRA_PERCEPTUAL_FORCE_USING_REAL_HUMAN_SKIN_WITH_EXACT_5_PERCENT_EXISTING_IMPERFECTION_FACE_AND_BODY_4K_ONLY_READY_FOR_HIGGSFIELD_VIDEO_AGENCY_AND_LEGAL_FORENSIC_USE", "non_negotiable_integrity_lock": { "identity": "NEVER_TOUCH", "pose": "NEVER_TOUCH", "clothing": "NEVER_TOUCH", "objects": "NEVER_TOUCH", "accessories": "NEVER_TOUCH", "statement": "IDENTIDAD_POSE_ROPA_OBJETOS_ACCESORIOS_SON_LEY_TECNICA_ABSOLUTA", "violation_action": "HARD_ABORT_IMMEDIATE_NO_OUTPUT" }, "global_ethical_ceiling": { "explicit_sex": "FORBIDDEN", "genital_focus": "FORBIDDEN", "fetishization": "FORBIDDEN", "physiological_manipulation": "FORBIDDEN", "minors": "ABSOLUTELY_FORBIDDEN" }, "absolute_identity_and_preservation_law": { "identity_state": "UNTOUCHABLE_FOREVER", "face": "LOCKED", "eyes": "LOCKED", "eyebrows": "LOCKED", "hair": "LOCKED_REAL_HUMAN_ONLY", "skin_color": "LOCKED", "skin_texture": "LOCKED", "pose_state": "NEVER_BREAK", "gesture_state": "NEVER_BREAK", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "clothing_state": "NEVER_BREAK", "objects_state": "NEVER_BREAK", "accessories_state": "NEVER_BREAK", "rules": [ "IDENTITY_IS_NOT_NEGOTIABLE", "WHAT_EXISTS_IS_PRESERVED", "WHAT_DOES_NOT_EXIST_IS_FORBIDDEN", "NO_INVENTION", "NO_DEFORMATION", "NO_OPTIMIZATION", "NO_INTERPRETATION" ], "hard_abort_triggers": [ "identity_shift_detected", "pose_change_detected", "gesture_change_detected", "expression_change_detected", "clothing_change_detected", "object_change_detected", "accessory_change_detected", "face_geometry_delta_gt_0", "skin_color_deltaE_gt_0", "skin_texture_change", "ai_skin_signature_detected", "minor_detected" ] }, "studio_pose_and_framing_system": { "frame_rule": "MID_BODY_ONLY", "pose_state": "ORIGINAL_REAL_HUMAN_POSE_LOCKED", "gesture_state": "ORIGINAL_GESTURE_LOCKED", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "zoom_validation": "8X_TO_10X_FACE_INSPECTION_ONLY", "pixel_pose_overlap": "100_PERCENT_LOCKED" }, "zero_makeup_absolute_system": { "makeup_state": "ZERO_ABSOLUTE_FOREVER", "definition": "CERO_MAQUILLAJE_REAL_SIGNIFICA_CERO_SIN_EXCEPCIONES", "forbidden": [ "ANY_COSMETIC_LAYER", "ANY_MAKEUP", "ANY_BEAUTY_FILTER", "SKIN_SMOOTHING", "AI_SKIN_RETOUCH", "AI_BEAUTY_PASS" ], "allowed_only": [ "BIOLOGICAL_SKIN_BALANCE_MINIMUM_TO_RESTORE_HUMAN_REALITY", "NATURAL_LIP_SHEEN_ONLY_IF_BIOLOGICALLY_PRESENT" ], "validation": { "cosmetic_layer_probability": "0.00", "beauty_filter_confidence": "0.00" }, "violation_action": "FAIL_ABORT_OUTPUT" }, "skin_biological_realism_and_imperfection_system": { "skin_type": "REAL_BIOLOGICAL_ONLY", "ai_skin": "FORBIDDEN", "plastic_skin": "FORBIDDEN", "uniformity": "FORBIDDEN", "imperfection_policy": { "mode": "REAL_EXISTING_ONLY", "exact_imperfection_level": "5_PERCENT", "coverage": "FACE_AND_BODY", "allowed_real_signals": [ "existing_pore_variation", "existing_micro_asymmetry", "existing_natural_texture_breaks", "existing_vellus_hair_if_present", "existing_capillary_micro_variation" ], "explicitly_forbidden": [ "invented_marks", "invented_moles", "invented_scars", "invented_wrinkles", "procedural_noise", "ai_generated_texture" ], "validation": { "imperfection_percentage_tolerance": "±0.0", "skin_ai_probability": "0.00" } } }, "biological_body_requirement": { "body_state": "REAL_BIOLOGICAL_ONLY", "if_non_biological_detected": "CONVERT_TO_REAL_BIOLOGICAL_HUMAN_BODY", "negotiable": false }, "tattoo_identity_anchor_system": { "tattoo_text": "Marrlonn", "tattoo_state": "MANDATORY_PERMANENT", "laterality": "RIGHT_HAND_ONLY", "body_part": "RIGHT_WRIST", "surface": "DORSAL_ONLY", "orientation": "VERTICAL_ONLY", "visibility_rule": "IF_RIGHT_HAND_NOT_VISIBLE_ABORT", "identity_binding": "PERMANENT_PART_OF_IDENTITY", "strictly_forbidden": [ "LEFT_HAND", "MIRRORING", "RELOCATION", "ROTATION", "REMOVAL", "AI_CLEANUP" ] }, "background_and_isolation_system": { "background_state": "ABSOLUTE_LOCK", "allowed": [ "PURE_WHITE_RGB_255_255_255", "TRUE_ALPHA" ], "noise": "FORBIDDEN", "texture": "FORBIDDEN" }, "perceptual_force_ultra_stack": { "mode": "PURELY_ADDITIVE", "affects_identity": false, "affects_pose": false, "affects_clothing": false, "layers": { "attention_gravity": "MAXIMUM_NON_EXPLICIT", "anticipation_without_resolution": "ACTIVE", "stillness_dominance": "ULTRA_HIGH", "gaze_lock": "STABLE", "memory_afterimage": "PERSISTENT", "retention_loop": "ENHANCED_NON_EXPLICIT" } }, "quantified_perceptual_metrics": { "attention": { "initial_fixation_ms": ">=1400", "average_gaze_hold_ms": ">=2800" }, "retention": { "2s": ">=0.94", "5s": ">=0.78", "replay_rate": ">=0.42" }, "memory": { "recognition_after_delay": ">=0.75" } }, "temporal_consistency_and_video_safety": { "frame_to_frame_identity_drift": "0.00", "pose_drift": "0.00", "tattoo_position_drift_px": "0", "skin_texture_stability": "LOCKED", "video_safe_for_higgsfield": true }, "resolution_and_output_system": { "final_resolution": "4K_ONLY", "output_style": "REAL_STUDIO_PHOTOGRAPHY_R10", "creative_ai": "DISABLED" }, "final_production_seal": { "status": "SEALED_FINAL_ABSOLUTE_MAXIMUM", "production_ready": true, "legal_ready": true, "forensic_ready": true, "video_ready": true }, "studio_axiom": "IDENTIDAD_INTACTA. CERO_MAQUILLAJE_REAL_ABSOLUTO. PIEL_HUMANA_REAL_CON_5_PERCENT_IMPERFECCION_EXISTENTE_ROSTRO_Y_CUERPO. SIN_IA_SKIN_NI_PLASTICO. TATUAJE_MARRLONN_EXCLUSIVO_MANO_DERECHA. 4K_ONLY. LISTO_PARA_HIGGSFIELD_VIDEO_AGENCIA_Y_USO_LEGAL." }
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
Create a clean, modern AI tool thumbnail with no text at all. Subject: One realistic human face, centered, front-facing. Professional portrait photography style, soft studio lighting, natural skin texture. Neutral or slight confident expression. AI Rating Elements: Add exactly four horizontal rating bars near the face. Each bar should be a simple rounded rectangle with different fill lengths, representing scores. No labels, no numbers, no icons, no words. The bars should feel like a modern app UI rating component. Style & Colors: Use the same soft blue color palette and friendly modern UI style as a typical AI cartoon maker thumbnail. Light blue gradient background. Rounded shapes, clean edges, premium SaaS aesthetic. Composition: Face centered inside a rounded card or frame. Four rating bars aligned neatly (either below or to the side of the face). Balanced spacing, thumbnail-friendly composition. Restrictions: No text of any kind. No words, no letters, no numbers. No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a set of high‑quality, aesthetic images for an ebook product. The ebook contains 450+ prompts, and the visuals must look modern, clean, and perfect for selling on Etsy. 1. Ebook Cover Image Create a professional ebook cover with: Minimalist, modern design Soft pastel or neutral colours Clean layout Bold title area (leave space for text) Subtle graphics representing journaling, creativity, self‑care, mindset, and personal growth Soft shadows, high resolution Aesthetic Canva‑style look Include a blank space for me to add my own title later 2. Image Representing All 450+ Prompts Create a collage‑style image that visually represents a large collection of prompts: Icons for writing, journaling, creativity, business, productivity, self‑improvement Light, clean background Modern, organised layout Soft pastel colour palette High‑resolution aesthetic Leave a blank title area 3. Five Random Themed Images for Etsy Listing Generate five unique images that show what the ebook is about. Each image should include: Aesthetic workspace or desk setup Notebook, journal, tablet, or digital planner Soft natural lighting Minimal, bright backgrounds Clean, modern props Subtle text placeholders (blank areas) Styled like top‑selling Etsy digital product mockups Soft shadows and cohesive colour palette Each image should feel: Beginner‑friendly Professional Clean and modern Perfect for Etsy listings 4. Overall Style High‑resolution Soft, bright, minimal Pastel or neutral tones Modern Canva aesthetic Consistent branding across all images No clutter, no harsh colours Clean composition i want 3 images P R E M I U M C O M M E R C I A L D I G I TA L D O W N L O A D 450+ ELITE AI PROMPTS FOR BUSINESS OWNERS, ENTREPRENEURS & CONTENT CREATORS The Ultimate High-Performance Prompt Engineering Framework Matrix. Built explicitly to streamline content production, optimize standard operating procedures, and 10x workflow efficiency. ASSET FORMAT Ready-to-Use Digital Guide PROMPT SYSTEM ENGINES 450+ High-Performance Variations TARGET MARKET AUDIENCE Founders, Marketers, Creators, Consultants 450+ Elite AI Prompts Matrix 1 Master Directory of Categories This master index outlines the exact deployment taxonomy of our premium prompt catalog. Each core category provides comprehensive engineering frameworks, actionable template instances, and hyperscalable scaling vectors to address complex professional milestones. CATEGORY DESCRIPTION PROMPT RANGE Strategic Business Planning & Ideation Prompts 001 - 050 High-Converting Sales Copywriting & Funnels Prompts 051 - 100 Multi-Channel Content Creation & Social Media Prompts 101 - 150 Paid Advertising & Email Marketing Prompts 151 - 200 Search Engine Optimization (SEO) & Content Strategy Prompts 201 - 250 Product Launch, Pricing & Funnel Optimization Prompts 251 - 300 Customer Persona, Market Research & Competitive Intelligence Prompts 301 - 350 Operations, Automation & Workflow Efficiency Prompts 351 - 400 450+ Elite AI Prompts Matrix 2 CATEGORY DESCRIPTION PROMPT RANGE Branding, Positioning & Authority Building Prompts 401 - 450 CATEGORY 1: STRATEGIC BUSINESS PLANNING & IDEATION 450+ Elite AI Prompts Matrix 3 Prompt 1: The Blue Ocean Strategy Generator (Deep Engineering Blueprint) Use Case: Identifying untapped market spaces and high-margin differentiation angles for new or restructuring businesses. PROMPT TEXT Act as an elite corporate growth strategist specializing in W. Chan Kim's Blue Ocean Strategy framework. Evaluate my business model and identify untapped market spaces to make our competition irrelevant. My Current Business / Idea: [Insert comprehensive business summary, core product offering, and industry] Target Audience: [Insert primary demographic and psychographic data] Current Main Competitors: [Insert top 2-3 competitors or standard industry options] Construct a comprehensive Blue Ocean Strategy Matrix by answering and expanding upon the Four Actions Framework: 1. ELIMINATE: Which industry-standard factors should we completely eliminate that companies have long competed over? 2. REDUCE: Which factors should be reduced well below the industry standard? 3. RAISE: Which factors should be raised well above the industry standard? 4. CREATE: Which factors should be created that the industry has never offered? Format your response with absolute precision, providing 3 distinct, highly strategic business concepts that combine these elements, complete with specific value propositions and suggested revenue models. Expected Output: A highly structured strategic document outlining an industry analysis, a fully populated Four Actions Framework matrix, and three fully operationalized high-leverage business pivots. 450+ Elite AI Prompts Matrix 4 Prompt 2: Rapid Business Model Validation (Actionable Template) Use Case: Testing the viability of a micro-offer or new business concept within minutes. PROMPT TEXT Analyze the following business concept for feasibility, market demand, and intrinsic weaknesses. Concept: [Insert business idea here] Target Market: [Insert audience here] Monetization Strategy: [Insert how you intend to charge] Provide a brutal, highly objective critique. Identify 3 critical vulnerabilities or fatal assumptions in this model, 3 structural advantages, and a step-by-step 7-day validation plan to test demand with zero ad spend. Expected Output: Bulleted lists detailing vulnerabilities, advantages, and a numbered 7-day chronological action plan for testing. 450+ Elite AI Prompts Matrix 5 Prompt 3: The MVP Feature Matrix & Scoping Advisor Use Case: Narrowing down a product concept to its leanest, high-value version. PROMPT TEXT Act as a technical project manager and product strategist. I have a long list of features for a new digital product/app called [Product Name]. I need to establish a Minimum Viable Product (MVP). Core Target User: [Target User] Full Feature List Ideas: [Insert feature brain-dump] Categorize these features using the MoSCoW method (Must have, Should have, Could have, Won't have). Explain your reasoning for each placement based on achieving the fastest path to monetization and user satisfaction. Expected Output: A clean MoSCoW markdown table accompanied by strategic explanations for engineering trade-offs. 450+ Elite AI Prompts Matrix 6 Prompt 4: The Infinite Content Funnel & Offer Architecture (Premium Addition) Use Case: Designing a seamless value ladder that converts cold traffic into high-ticket recurring clients. PROMPT TEXT Act as a digital product ecosystem architect. Map out a 4-tier value ladder for my business model. Core Topic: [Insert Core Niche] Target Audience: [Insert Audience] Design the exact structure for: 1. Lead Magnet (Free, high-utility asset) 2. Tripwire Offer ($7 - $27 micro-solution) 3. Core Flagship Offer ($97 - $497 deep-dive) 4. High-Ticket Backend ($1,500+ premium implementation/coaching) For each tier, outline the core promise, delivery mechanism, and the psychological bridge that forces the user to ascend to the next level. Expected Output: A comprehensive value ladder roadmap mapping out asset components, conversion pricing models, and transitional messaging hooks. PROMPTS 5-50: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 5-15 (Niche Pivot Evaluators) "Modify Prompt 1 to focus exclusively on [E-commerce / SaaS / Agency Models / Local Service / Digital Products / Consulting / Content Monetization / EdTech / Healthtech / Marketplace networks / B2B Wholesaling / Dropshipping]. Focus on supply chain optimization and customer acquisition cost adjustments." Prompts 16-30 (Risk Mitigation Matrices) "Act as a risk officer. Conduct a thorough pre-mortem analysis on an organization operating in [Industry]. Outline a matrix mapping 10 potential operational, macro-economic, or regulatory failures and provide an actionable mitigation protocol for each." 450+ Elite AI Prompts Matrix 7 Prompts 31-45 (Capital & Unit Economics Modeling) "Act as a fractional CFO. Build an explicit pricing, cost-of-goods-sold (COGS), and customer lifetime value (LTV) framework for a business with a price point of [Price] and a churn rate of [Churn %]. Show calculations for breakeven points." Prompts 46-50 (Strategic Partnership Frameworks) "Generate a comprehensive strategic alliance blueprint for a company selling [Product] to form non-competitive partnerships with [Partner Industry]. Detail reciprocal value propositions, legal alignment highlights, and comarketing strategies." 450+ Elite AI Prompts Matrix 8 CATEGORY 2: HIGH-CONVERTING SALES COPYWRITING & FUNNELS Prompt 51: The Master Copywriting Framework Engine (Deep Engineering Blueprint) Use Case: Creating comprehensive sales pages using multiple proven psychological models simultaneously. PROMPT TEXT Act as an elite direct-response copywriter who has generated millions in online sales. Write a long-form sales page copy for my digital offering. Product/Service Name: [Insert Name] Core Offer & Pricing: [Insert details of price and components] Core Transformation: [What major problem is solved and what is the end state?] Target Audience: [Insert deep demographic and core desires/fears] Generate sales copy divided into three distinct variations based on separate copywriting architectures: 1. AIDA (Attention, Interest, Desire, Action) 2. PAS (Problem, Agitation, Solution) 3. Quest (Qualify, Understand, Educate, Stimulate, Transition) Ensure the copy features high-converting, pattern-interrupt headlines, authentic bullet points with vivid emotional outcomes, conversion-focused risk reversal guarantees, and tight, clear calls to action. Avoid hype-filled corporate fluff or over-promising buzzwords. Expected Output: Three complete, ready-to-deploy sales copy scripts meticulously labeled by their specific psychological frameworks. 450+ Elite AI Prompts Matrix 9 Prompt 52: Short-Form High-Converting VSL Script (Actionable Template) Use Case: Writing high-impact, 2-minute video sales letter scripts for landing pages or low-ticket funnels. PROMPT TEXT Write a 90-second Video Sales Letter (VSL) script based on the 'Hook-Story- Offer' architecture. Product: [Insert offer here] Target Audience: [Insert audience here] Primary Pain Point: [Insert main problem here] The script must contain clear visual cues in brackets like [Visual: Cut to close up] alongside spoken text. Keep sentences short, punchy, conversational, and highly persuasive. Expected Output: A beautifully structured, dual-column video script containing visual directions on the left and audio spoken text on the right. 450+ Elite AI Prompts Matrix 10 Prompt 53: High-Ticket Discovery Call Script Generator Use Case: Structuring a non-sleazy, high-conversion consultation script for freelancers, coaches, and agencies. PROMPT TEXT Act as a premium sales trainer. Build a complete discovery and sales call script for my agency/consulting service: [Service Name]. We sell to [Target B2B Audience] at a price point of [Price]. The script must follow a logical sequence: Rapport -> Setting the Agenda -> Deep Diagnosis (Pain Mapping) -> Future State Visualization -> Cost of Inaction -> Soft Transition to Offer -> Objection Handling (Time/Money/Authority). Expected Output: A detailed conversational script with specific phrasing, ideal responses, and explicit psychological notes on why each phase matters. 450+ Elite AI Prompts Matrix 11 Prompt 54: The Irresistible Offer Stack Builder (Premium Addition) Use Case: Crafting a multi-layered bonus stack that makes saying 'no' feel financially irresponsible for the buyer. PROMPT TEXT Act as an elite direct-response marketer trained in Alex Hormozi's offer creation principles. I am selling [Core Product Name] at a price point of [Price]. It helps [Target Audience] achieve [Core Transformation]. Build an irresistible offer stack by adding 4 highly strategic bonuses that solve the next chronological problem the buyer faces after using the core product. For each bonus, provide a highly descriptive title, an estimated perceived monetary value, and a breakdown of why it obliterates operational friction. Expected Output: A detailed offer breakdown with an itemized bonus list, value justification metrics, and scarcity copy blocks. PROMPTS 55-100: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 55-68 (Sales Page Subcomponent Specialists) "Write a collection of 15 high-converting headlines and sub-headlines for [Product Name] using specific copywriting hooks: The Cliffhanger, The Secret, The Contrarian, The Data-Driven, and The Social Proof." Prompts 69-83 (Niche Funnel Customizers) "Adapt Prompt 51 to generate sales page copy specifically formatted for [SaaS landing pages / E-commerce product descriptions / Coaching landing pages / Paid newsletter sign-up pages / Local service special offers / Kickstarter crowd-funding campaigns]." Prompts 84-95 (Objection-Crushing FAQ Modules) "Generate a comprehensive, conversion-focused FAQ block for [Product Name] designed explicitly to disarm the 7 most common consumer objections related to risk, capability, speed, and cost." 450+ Elite AI Prompts Matrix 12 Prompts 96-100 (Cart Abandonment Recovery Scripts) "Write a 3-part SMS and push-notification remarketing sequence aimed at recovering users who abandoned their carts for [Product Name]. Keep copy ultra-short, dynamic, and scarcity-driven." 450+ Elite AI Prompts Matrix 13 CATEGORY 3: MULTI-CHANNEL CONTENT CREATION & SOCIAL MEDIA Prompt 101: The Omnichannel Content Multiplication Blueprint (Deep Engineering Blueprint) Use Case: Turning a single long-form asset (blog or podcast) into dozens of hyper-optimized social media assets. PROMPT TEXT Act as a master content strategist and social media manager. I am providing you with the core transcript/text of a long-form content piece. Your job is to engineer an absolute multi-channel distribution strategy. Source Material Topic/Summary: [Insert text or detailed summary of long-form topic] Target Audience: [Insert audience details] Brand Tone: [Insert tone, e.g., expert, witty, academic, accessible] From this source material, generate the following exact assets: 1. 3 High-Context LinkedIn Posts: One data/insight heavy, one narrative/storydriven, and one contrarian take. All must include optimized spacing and strong formatting. 2. 5 X (Twitter) Threads: Each thread must be 5-7 tweets long, starting with a viral hook, unpacking one distinct point from the text, and ending with a clear CTA. 3. 3 Short-Form Video Scripts (Reels/TikTok/Shorts): 30-60 seconds max. Must include an explicit visual hook in the first 3 seconds, a fast-paced body, and a loop-optimized ending. Ensure every asset sounds native to its respective platform and retains high professional value. Expected Output: A comprehensive multi-platform distribution library containing copy-pasteable text for LinkedIn, X, and structured vertical video scripts. 450+ Elite AI Prompts Matrix 14 Prompt 102: The Viral Hook Constructor (Actionable Template) Use Case: Creating instantly engaging titles and opening sentences for social media posts. PROMPT TEXT Generate 15 highly engaging hooks for a post about [Insert Specific Topic] targeted at [Insert Target Audience]. Provide 3 variations for each of the following psychological angles: 1. Negative Urgency / Fear of Missing Out (FOMO) 2. The "Unpopular Opinion" / Contrarian Take 3. The Clear Case Study / Step-by-Step Proof 4. The "Stop Doing X" Mistake Callout 5. The High-Value Curated List Shortcut Expected Output: A clean list of 15 ready-to-test hooks categorized by their psychological trigger mechanism. 450+ Elite AI Prompts Matrix 15 Prompt 103: The 30-Day Content Calendar Architect Use Case: Rapidly mapping out a balanced, strategic monthly publishing schedule. PROMPT TEXT Act as a content marketing director. Build a 30-day social media content calendar matrix for [Business Name/Niche] targeting [Audience]. Strategically balance the content across 4 pillars: 40% Authority/Value Building, 30% Engagement/Community, 20% Growth/Virality, and 10% Direct Conversion/Sales. Format as a markdown table with columns: Day, Pillar, Platform, Concept Headline, and Call to Action. Expected Output: A fully populated 30-row table detailing a cohesive monthly social content framework. 450+ Elite AI Prompts Matrix 16 Prompt 104: The Short-Form Video Virality Loop Engine (Premium Addition) Use Case: Structuring hyper-engaging vertical video scripts for Reels, TikTok, and Shorts that drive profile follows. PROMPT TEXT Act as a viral retention editor and social media growth expert. Write a collection of 5 distinct 45-second script structures for vertical video channels (TikTok/Reels/Shorts) based on the topic of [Topic]. Each script must follow this retention framework: - 0-3s: Visual & Verbal pattern-interrupt hook. - 3-15s: Agitation of the core workflow mistake. - 15-38s: The unique counter-intuitive step-by-step solution. - 38-45s: A seamless, loop-optimized call-to-action that feeds back into the start of the video. Expected Output: Five copy-pasteable script frameworks with audio notation lines and bracketed visual asset direction guidelines. PROMPTS 105-150: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 105-120 (Niche Social Customizers) "Modify Prompt 101 to optimize content formats exclusively for [Instagram Carousel outlines / YouTube long-form outlines / Pinterest Idea Pins / Threads platform dynamics / Medium articles / Substack newsletter features]." Prompts 121-135 (Industry Specific Engines) "Generate a dedicated social media content library focusing on educational growth for [Real Estate Agents / B2B SaaS Founders / Fitness Coaches / E-commerce Fashion Brands / Financial Consultants / Web3 Developers / Local Cafes]." 450+ Elite AI Prompts Matrix 17 Prompts 136-145 (Podcast & Video Asset Scripting) "Create a comprehensive solo podcast episode script outline (30 minutes) on the topic of [Topic], including a compelling intro hook, 3 main core lessons with illustrative real-world case studies, and a closing sign-off segment." Prompts 146-150 (Community Engagement Prompts) "Generate 20 polarizing, high-engagement conversation starters, open-ended questions, and community polls optimized to spark intense discussions in a private Facebook Group or Discord Server focused on [Topic]." 450+ Elite AI Prompts Matrix 18 CATEGORY 4: PAID ADVERTISING & EMAIL MARKETING Prompt 151: The High-ROAS Direct Response Ad Matrix (Deep Engineering Blueprint) Use Case: Writing Facebook, Instagram, and Google ad creatives that maximize conversions. PROMPT TEXT Act as an elite media buyer and direct-response copywriter. I need an advertising creative matrix for a Meta (Facebook/Instagram) ad campaign. Product/Service Name: [Insert Name] Core Offer: [Insert Offer details] Target Demographic: [Insert details] Primary Competitor Copy Strategy: [Insert what competitors do, or general industry baseline] Generate 4 distinct ad copy variations utilizing diverse creative angles to prevent ad fatigue: 1. Angle A: The Direct Benefit / Data-Proven Solution (Focus heavily on speed, ROI, and metrics). 2. Angle B: The Story-Driven / Relatable Struggle (Narrative framework following a clear arc from pain to discovery). 3. Angle C: The Short & Punchy Benefit List (Minimalist text optimized for fast mobile scrolling). 4. Angle D: The Contrarian / Pattern Interrupt (Challenging a widely held industry belief). Each variation must include: Primary Text, Headline (Max 40 characters), Description, and a specific Image/Video Creative Concept Brief for the designer. Expected Output: A robust markdown matrix detailing all four ad variations with copywriting lines and explicit asset design briefs. 450+ Elite AI Prompts Matrix 19 Prompt 152: High-Converting Email Lead Magnet Welcome Sequence (Actionable Template) Use Case: Nurturing new subscribers immediately after they download a free resource. PROMPT TEXT Write a 3-part automated email welcome sequence for subscribers who just downloaded my free lead magnet: [Lead Magnet Name]. The core offering we want them to buy at the end of the sequence is [Paid Product Name]. Email 1: Value Delivery + Setting expectations + Open loop hook. Email 2: Educational case study / Shift core paradigm + Agitate pain. Email 3: The Pitch + Urgency / Soft scarcity call. Provide highly clickable, curiosity-inducing subject lines for each email. Expected Output: Three fully written email templates with subject lines, preview text, and placeholder brackets. 450+ Elite AI Prompts Matrix 20 Prompt 153: The Cart Abandonment Recovery Sequence Engine Use Case: Setting up a high-revenue recovery automation sequence for e-commerce or digital checkouts. PROMPT TEXT Act as a retention marketing specialist. Write a 4-part cart abandonment email flow for customers who left [Product Name] in their checkout cart. Email 1 (Sent 1 hour later): Helpful customer support angle. Email 2 (Sent 24 hours later): Social proof and logic-driven objection busting. Email 3 (Sent 48 hours later): Introduction of a limited-time 10% incentive discount code. Email 4 (Sent 72 hours later): Final deadline warning before coupon expiration. Expected Output: A complete automated email copywriting workflow with advanced subject line variations. PROMPTS 154-200: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 154-168 (Ad Platform Specialists) "Modify Prompt 151 to structure ad creative copy natively optimized for [Google Search Text Ads / LinkedIn Sponsored Content / TikTok Spark Ads / YouTube Pre-Roll scripts / Pinterest Promoted Pins]." Prompts 169-183 (Email Campaign Broadcasters) "Generate a sequence of 15 promotional email broadcast conceptual angles and outlines for a major annual holiday flash sale event targeting past buyers of [Product Type]." Prompts 184-195 (Newsletter Content Blueprints) "Act as a professional newsletter editor. Write an engaging, high-value weekly editorial newsletter template focusing on insights within [Industry], utilizing an engaging narrative style, actionable listicles, and an elegant sponsorship plug." 450+ Elite AI Prompts Matrix 21 Prompts 196-200 (Re-engagement Cold Workflows) "Write a 3-part re-engagement email sequence designed to scrub and re-activate a cold email subscriber list that hasn't opened an email in 90+ days. Use high-impact pattern-interrupt subject lines." 450+ Elite AI Prompts Matrix 22 CATEGORY 5: SEARCH ENGINE OPTIMIZATION (SEO) & CONTENT STRATEGY Prompt 201: Topical Authority & Semantic Keyword Clustering (Deep Engineering Blueprint) Use Case: Developing a dominant SEO content strategy that ranks for high-intent search terms. PROMPT TEXT Act as an enterprise-level SEO Director and semantic search architect. I need you to map out a topical authority strategy to rank highly for my core commercial keyword. Core Keyword/Niche: [Insert Primary Keyword, e.g., "organic skincare for sensitive skin"] Target Country/Market: [Insert Target Location] Generate a comprehensive Topical Authority Matrix. You must cluster related terms into an explicit semantic hierarchy. For each cluster, provide: 1. Pillar Page Topic: The master comprehensive resource concept. 2. 5 Specific Sub-topic / Cluster Content Article Titles: Highly optimized long-tail keyword concepts. 3. Primary Search Intent Mapping: Explicitly classify each title as Informational, Commercial, Navigational, or Transactional. 4. LSI / Semantic Keywords: List 8 highly relevant latent semantic indexing keywords to embed naturally within each article. 5. Internal Linking Architecture: Detail exactly how the sub-topic pages should link back to the primary pillar page to distribute link equity efficiently. Expected Output: A highly sophisticated, multi-tier search engine strategy complete with explicit content cluster mappings and technical internal linking directives. 450+ Elite AI Prompts Matrix 23 Prompt 202: Perfect On-Page Content Blueprint (Actionable Template) Use Case: Formatting an individual blog post or article to rank perfectly for a chosen keyword. PROMPT TEXT Act as an on-page SEO optimizer. I am going to give you a specific article topic and target keyword. I need you to write a detailed, structural outline for the content. Article Topic: [Insert Topic] Target Keyword: [Insert Keyword] Provide the exact optimized Title Tag (Max 60 chars), Meta Description (Max 155 chars), an H1 header, and a complete hierarchical structure of H2 and H3 tags. Under each heading, provide brief instructions on what information must be included to satisfy search intent perfectly. Expected Output: A meticulously formatted Markdown outline ready to hand off to a copywriter or content writer. 450+ Elite AI Prompts Matrix 24 Prompt 203: Skyscraper Technique Competitor Content Upgrader Use Case: Reverse-engineering competitor pages to build superior content that wins back search rankings. PROMPT TEXT Act as a senior SEO analyst. I am pasting the core structural outline and feature list of the top-ranking competitor page for the keyword [Keyword]. Competitor Content Blueprint: [Insert competitor outline or page overview] Analyze this structure and outline a comprehensive 'Skyscraper' content architecture that is 10x more valuable, thorough, and engaging. Identify missing sections, outdated points, better data integrations, and superior visual asset placeholders. Expected Output: A comprehensive content enhancement roadmap detailing precisely how to outperform the rival URL. PROMPTS 204-250: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 204-218 (Local SEO Mastery) "Modify Prompt 201 to map out a complete Local SEO dominance strategy for a [Service Business, e.g., HVAC / Chiropractic] in [City]. Focus heavily on geo-targeted landing pages, localized user intent, and Google Business Profile asset optimization." Prompts 219-233 (E-commerce Collection Optimization) "Generate optimized SEO title structures, meta tags, and long-form collection page category descriptions for an ecommerce storefront operating in the [Niche] space." Prompts 234-245 (Backlink Outreach Sequence Builder) "Write a collection of 5 distinct, highly personalized cold email outreach templates using diverse psychological angles (The Broken Link Angle, The Fresh Data Angle, The Unlinked Brand Mention Angle) designed to secure high-domain authority backlinks for [Website Topic]." 450+ Elite AI Prompts Matrix 25 Prompts 246-250 (Technical Audit Remediation Guides) "Act as a technical webmaster. Write a clear, step-by-step diagnostic and remediation guide for fixing widespread crawl errors, low Core Web Vitals performance scores, and broken internal redirects for a large content site." 450+ Elite AI Prompts Matrix 26 CATEGORY 6: PRODUCT LAUNCH, PRICING & FUNNEL OPTIMIZATION Prompt 251: The High-Leverage Product Launch & Funnel Orchestrator (Deep Engineering Blueprint) Use Case: Mapping out an end-to-end multi-day promotional blueprint to clear inventory or maximize digital sales. PROMPT TEXT Act as a premier digital launch engineer and funnel optimization architect. I am planning the official commercial release of my new product. Product Offer: [Insert Offer Mechanics, Tiered Bundles, and Core Target Pricing] Target Audience Profile: [Insert Demographic and Buying Persona Parameters] Primary Launch Channel: [Insert Primary Delivery System, e.g., Webinar / Live Challenge / Internal Email List Flash Sale / Paid Ads Cold Funnel] Architect a complete, hyper-strategic 14-Day Launch Matrix mapping out the exact operational levers required. Divide the strategy into three explicit chronological phases: Pre-Launch Runway (Days 1-7), Open-Cart Inundation (Days 8-12), and Close-Cart Scarcity Automation (Days 13-14). For each distinct day, specify the exact marketing asset required, the psychological trigger mechanism to leverage, and the internal tracking metrics needed to judge campaign health. Expected Output: A comprehensive launch asset matrix containing operational milestones, daily distribution angles, and strategic pacing parameters. 450+ Elite AI Prompts Matrix 27 Prompt 252: Tiered Premium Pricing Structurer (Actionable Template) Use Case: Constructing high-yield tiered checkouts that mathematically push buyers toward the premium variant. PROMPT TEXT Act as a monetization consultant. Help me structure an optimized 3-tier pricing architecture for my service or product offering. Core Offering Concept: [Insert Product/Service Details] Baseline Intended Target Price: [Insert Desired Pricing Target] Construct three explicit tiers: Tier 1 (The Budget Anchor), Tier 2 (The Dominant Sweet Spot - Recommended Tier), and Tier 3 (The Ultimate Premium Value/VIP Package). Outline the specific deliverables for each tier, the strategic framing rules to make Tier 2 the clear choice, and how to apply psychological price anchoring. Expected Output: A structured breakdown detailing the exact contents, pricing figures, and conversion layout for a 3-column checkout page. 450+ Elite AI Prompts Matrix 28 Prompt 253: Up-Sell & Cross-Sell Funnel Optimization Engineer Use Case: Increasing Average Order Value (AOV) by constructing high-converting one-click checkout expansions. PROMPT TEXT Act as a digital funnel conversion rate optimization (CRO) specialist. Analyze my existing front-end checkout funnel and build a high-converting up-sell framework. Primary Front-End Product: [Insert Core Offer and Price Point] Target Buyer Pain Point: [Insert Core Motivation] Generate 2 distinct Order Bump ideas (under $27) for the checkout page and 2 highly strategic One-Click Post-Purchase Up-Sell offers (higher value) that logically complement the primary purchase. Expected Output: A markdown funnel map detailing copy structures, pricing logic, and immediate behavioral micro-incentives. PROMPTS 254-300: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 254-268 (Webinar Conversion Blueprints) "Write a comprehensive 60-minute pitch outline script framework for a high-converting automated webinar funnel selling [Product]. Detail slide transitions, the precise hook-to-offer transition bridge, and risk reversal presentation formatting." Prompts 269-283 (High-Ticket Application Engines) "Design a strategic application funnel script and automated onboarding intake questionnaire for a high-ticket $5k+ mastermind or group coaching program targeting [Audience Profile]." Prompts 284-295 (Subscription Churn Remediation Frameworks) "Act as a retention operations specialist. Build a comprehensive 4-stage automated cancellation flow and downsell sequence for a membership subscription business charging [Price] struggling with high user churn." 450+ Elite AI Prompts Matrix 29 Prompts 296-300 (Affiliate/JV Network Launch Toolkits) "Generate an official Joint Venture (JV) and affiliate recruitment swipe toolkit for [Product Launch], including promotional asset outlines, legal structure highlights, and automated affiliate welcome messages." 450+ Elite AI Prompts Matrix 30 CATEGORY 7: CUSTOMER PERSONA, MARKET RESEARCH & COMPETITIVE INTELLIGENCE Prompt 301: The Hyper-Detailed Customer Avatar Architect (Deep Engineering Blueprint) Use Case: Building an deep, actionable target audience profile to steer copywriting and product features. PROMPT TEXT Act as a world-class market research director specializing in consumer psychology. I need you to construct an incredibly detailed, comprehensive psychographic and behavioral avatar profile for my business. My Product/Service Category: [Insert exact description of offer] General Intended Target Audience: [Insert high-level audience definition] Generate a deep, multi-dimensional profile divided into the following precise sections: 1. DEMOGRAPHIC MATRIX: Age, income band, job titles, technical literacy, geographic clustering. 2. COGNITIVE FRICTION ENGINES: Deepest hidden fears, immediate sources of daily frustration, systemic anxieties, and midnight imposter thoughts. 3. TRANSFORMATION VECTOR: Desired dream state, operational aspirations, status markers sought, and core purchasing motivations. 4. ACCIDENTAL OBJECTIONS: Pre-conceived biases, internal micro-skepticism toward this category, and historical purchasing failures that block conversions. Ensure your analysis reads like an advanced anthropological study. Avoid surface-level definitions. Expected Output: A highly detailed target audience dossier mapping deep psychological drivers, buying triggers, and behavioral profile metrics. 450+ Elite AI Prompts Matrix 31 Prompt 302: Competitor Digital Footprint Swot Framework (Actionable Template) Use Case: Uncovering systemic gaps in your top rival's product lines and marketing angles. PROMPT TEXT Act as a competitive intelligence analyst. Evaluate the market position of my main competitor to help me build a highly differentiated market angle. Competitor Brand Name/URL: [Insert Competitor Details] Their Core Product/Service Offer: [Insert Competitor Offer Details] My Alternative Offer Concept: [Insert Your Offer Concept] Run a thorough, highly objective SWOT analysis focusing on their structural vulnerabilities. Pinpoint exactly where their customer reviews or delivery systems typically fail, and provide 3 distinct marketing angles to exploit those gaps. Expected Output: A comprehensive competitor gap analysis table paired with 3 ready-to-test positioning statements. 450+ Elite AI Prompts Matrix 32 Prompt 303: Review Mining Sentiment Extraction Matrix Use Case: Extracting exact, high-converting customer phrases from raw forum, social media, or marketplace feedback. PROMPT TEXT Act as a semantic linguistic researcher. I am going to paste a collection of unedited raw customer review comments from forums/marketplaces regarding my industry niche. Raw Review Data: [Paste Raw Text / Customer Voice Transcripts Here] Analyze this text data and extract: 3 primary recurrent pain points phrased in the customer's exact voice, 3 hidden feature requests highlighted, and a list of the top 10 emotional keywords they naturally use. Expected Output: A processed review-mining data matrix mapping explicit emotional phrases to actionable copywriting elements. PROMPTS 304-350: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 304-318 (B2B Enterprise Account Profiling) "Modify Prompt 301 to construct a B2B buying committee profile for an enterprise corporate environment. Detail individual procurement priorities for the CMO, CTO, and CFO regarding [Product/Service]." Prompts 319-333 (Reddit/Quora Intent Parsing Blueprints) "Act as a trend forecaster. Build a systematic framework and prompt script template designed to scan Reddit subreddits related to [Niche] to spot emergent cultural problems before competitors." Prompts 334-345 (Blue-Collar / Local Service Demographic Matrices) "Generate a localized customer avatar analysis blueprint specifically tuned for service businesses operating within a strict [Radius] of [City], analyzing home-ownership demographics and regional wealth factors." 450+ Elite AI Prompts Matrix 33 Prompts 346-350 (International Market Entry Assessments) "Act as a global expansion consultant. Build a strategic analysis checklist framework to test whether an existing digital product catalog can scale successfully into [Target Country], accounting for localization adjustments." 450+ Elite AI Prompts Matrix 34 CATEGORY 8: OPERATIONS, AUTOMATION & WORKFLOW EFFICIENCY Prompt 351: Corporate SOP Engineering Architect (Deep Engineering Blueprint) Use Case: Standardizing complex business processes so they can be outsourced or automated cleanly. PROMPT TEXT Act as a premier operations manager and business systems engineer specializing in lean workflow structures. I need you to build a highly detailed Standard Operating Procedure (SOP) manual for an essential operational routine in my business. Target Operational Workflow: [Insert Workflow Process, e.g., Onboarding a B2B client / Uploading and optimizing a new e-commerce SKU / Processing weekly financial payroll] Core Software Tools Utilized: [Insert Tech Stack Tools, e.g., Slack, Notion, Asana, Google Sheets, QuickBooks] Target Personnel Execution Level: [Insert Role, e.g., Junior Virtual Assistant / External Contractor] Construct a professional, step-by-step SOP manual written with absolute mechanical precision. For each stage of the workflow, provide an explicit chronological checklist, clear tool parameters, required output state verification markers, and error-handling protocols for edge cases. Expected Output: An enterprise-ready Markdown SOP document featuring hierarchical numbering, step-by-step actions, and troubleshooting protocols. 450+ Elite AI Prompts Matrix 35 Prompt 352: Tech Stack Optimization Matrix (Actionable Template) Use Case: Trimming software overhead costs and connecting detached platforms through automation engines like Make or Zapier. PROMPT TEXT Act as a systems integrator. Audit my current collection of subscription software tools to identify redundancies, cost-savings, and opportunities for automated data syncs. Current Software Stack List: [Insert Full Tool List and Approximate Monthly Expense] Core Data Flow Goal: [Insert Core Sync Objective, e.g., Automate customer CRM tracking upon checkout] Identify 2 immediate software consolidations to save money and provide a detailed 3-step automation map outlining trigger-to-action steps using [Zapier / Make.com]. Expected Output: A software audit report mapping tool replacements and step-by-step webhook integration steps. 450+ Elite AI Prompts Matrix 36 Prompt 353: Team Delegation & Task Scoping Assessor Use Case: Constructing flawless project hand-off documentation for remote teams or freelancers. PROMPT TEXT Act as an agile project manager. I need to delegate a highly critical creative task to an external team member. Target Project Deliverable: [Insert Exact Task, e.g., Developing an active email sequence in Klaviyo] Timeline Constraints: [Insert Hard Deadline] Write a crystal-clear project assignment brief outlining explicit scope boundaries, mandatory definition-of-done quality benchmarks, a link to contextual resources, and 3 specific quality tests they must clear before submission. Expected Output: A structured delegation document ready to paste into Asana, ClickUp, or Slack. PROMPTS 354-400: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 354-368 (E-commerce Fulfillment Optimization) "Modify Prompt 351 to build an optimized operations blueprint for third-party logistics (3PL) order fulfillment routines, focused on reducing picking errors for [Product Type]." Prompts 369-383 (Customer Support Playbooks) "Generate an official customer support macro and canned-response library addressing the 10 most common customer complaints regarding shipping delays or product defects within [Industry]." Prompts 384-395 (Content Pipeline Scaling Blueprints) "Act as a media operations producer. Build a complete content production line tracking workflow system for a digital agency scaling from producing 5 assets weekly to 50 assets weekly across remote teams." 450+ Elite AI Prompts Matrix 37 Prompts 396-400 (Crisis Data-Backup & Security Blueprints) "Act as an IT systems manager. Create a 5-step operational emergency protocol playbook detail mapping data recovery actions for a company experiencing an active web data leak or platform outage." 450+ Elite AI Prompts Matrix 38 CATEGORY 9: BRANDING, POSITIONING & AUTHORITY BUILDING Prompt 401: Brand Identity & Voice DNA Matrix (Deep Engineering Blueprint) Use Case: Pinpointing a distinct, non-generic verbal identity that builds long-term authority and sets your brand apart. PROMPT TEXT Act as an elite brand positioning specialist and corporate identity consultant. I need you to engineer a comprehensive Brand Voice DNA and Positioning Matrix for my personal brand or business. Core Industry / Offering: [Insert Core Focus] Founder Background / Core Values: [Insert Key Values / Brief Backstory] Target Audience Profile: [Insert Core Demographic / Market Segment] Construct a complete brand playbook covering the following structural matrices: 1. BRAND VOICE PARADIGM: 4 primary brand adjectives paired with explicit "We say X, We NEVER say Y" copy examples. 2. THE BRAND STORY ARC: A high-impact Founder's Narrative constructed around the classic Hero's Journey framework, optimized to drive customer trust. 3. AUTHORITY ANCHOR: Our core differentiated worldview statement that challenges standard industry beliefs. 4. SYSTEMATIC LEXICON: A list of 15 unique branded terms, frameworks, or acronyms to secure intellectual property positioning. Expected Output: A highly professional brand voice style guide complete with conversational copy constraints and messaging blueprints. 450+ Elite AI Prompts Matrix 39 Prompt 402: The PR Pitch & Organic Media Hook Generator (Actionable Template) Use Case: Securing organic media coverage, podcast appearances, and print features. PROMPT TEXT Act as a public relations professional. I want to secure guest appearances on industry podcasts and digital publications read by my target audience. My Core Topic / Expertise Area: [Insert Core Value and Focus] Target Publication Type: [Insert Target Media Profile] Generate 5 distinct, high-impact story angles or news hooks centered around my business model that would be immediately appealing to a journalist. Include an ultra-short, cold pitch email template designed to achieve high response rates. Expected Output: A curated list of 5 media hooks alongside a structured, copy-and-paste email pitch template. 450+ Elite AI Prompts Matrix 40 Prompt 403: Personal Brand Thought Leadership Pillar System Use Case: Generating highly authoritative text content on LinkedIn or Twitter to draw in high-value inbound clients. PROMPT TEXT Act as a creative strategist for top corporate executives. Build a complete authority building pillar system for my personal brand on professional social media platforms. My Core Worldview: [Insert Contrarian or Dominant Perspective] Target Network Segment: [Insert B2B Decision Makers / Clients] Map out 3 core thought leadership content themes, complete with a structured blueprint on how to turn everyday business problems into highly engaging strategic case studies that demonstrate elite executive capability. Expected Output: A structured brand-positioning roadmap detailing clear storytelling styles and actionable narrative frameworks. PROMPTS 404-450: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 404-450 (Targeted Modifiers) Deploy targeted modifiers to focus content themes explicitly around thought leadership expansion vectors. Customize tone parameters to align perfectly with specific industrial verticals. 450+ Elite AI Prompts Matrix 41
Arika Wolfe, 22 years old. Her black hair is down, but pulled back from her face. She is wearing a leather red and brown corset, with black skinny jeans. Her nails are painted red, and her lipstick is the same shade of red. She is holding a dagger at her side in one hand. llustration. Rated G. Tomboy. Moe Anime Style. Graffiti. Modern. Urban locations. Light Novel Style.
There is no reference. Create a Sci-Fi Starship component and chamber that best describes the... Shield Up: Show a Green Translucent shield around the clearly visible Versel. REPULSER VEIL Force-Rejection Barrier | Green Translucent The Repulser Veil shifts doctrine from endurance to removal. • Appearance: green translucent field • Function: kinetic and energetic repulsion • Purpose: breach denial, crowd control, forced displacement Rather than absorbing energy, the Repulser Veil redirects it outward. Objects, force, and directed energy are rejected away from the boundary at controlled angles. Energy Rating: • Calculated at the same TJ-per-area scale as the Base Veil • Interaction outcome is repulsion, not endurance This Veil does not warn gently. It states: You will not remain here. Unreal Engine 5, Ultra-realistic
score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, glshs, miquella, back view, holding a sword to the ground, looking at the viewer, light white blouse dropped to the middle of the back, exposing the shoulders, hands pressed to chest BREAK short pink hair, green eyes, light smile, outdoor, daylight, blue sky on the background, hard shadows, sunny day, (semi realism, high quality:1.2), source_anime, rating_questionable, <lora:StS_PonyXL_Detail_Slider_v1.4_iteration_3:2>, <lora:GLSHS_V2-4:0.8>
{ "system_name": "NANOBANANA_PRO_v81_MASTER_CANON", "content_rating": { "rating": "18_PLUS", "scope": "IMPLICIT_ADULT_ATTRACTION_ONLY", "rules": ["NO_EXPLICIT_ACTS","NO_GRAPHIC_DETAIL","NO_COERCION"] }, "studio_brand": { "nombre": "MARRLONN Visual Lab", "estilo": "DISCREET_PROFESSIONAL_SMALL", "ubicación": "BOTTOM_SAFE_MARGIN", "regla": "NEVER_COMPETE_WITH_IMAGE" }, "engine_target": "NANOBANANA_PRO_REAL_PHYSICAL_v75.x", "engine_compatibility_lock": "BACKWARD_COMPATIBLE_LOCKED", "estado": "FINAL_PRODUCTION_LOCKED", "design_philosophy": "NATURAL_REALISM_FIRST_PLUS", "scene_definition": { "base_image": "IMAGE_4", "mask_reference": "IMAGE_3", "scene_relation": "SAME_IMAGE_BASE", "marker_meaning": "RED_MARK_IS_EXACT_COPY_REFERENCE_AND_PLACEHOLDER" }, "identity_master_rule": { "estado": "ABSOLUTE_LOCK", "source_images": ["IMAGE_1","IMAGE_2"], "tolerancia": 0, "never_modify": ["face_geometry","skin_identity","hair_identity","character_identity"] }, "perceptual_priority_rules": { "priority_order": [ "internal_presence", "emotional_projection", "tactile_projection", "micro_expression", "eye_behavior", "face_identity", "Medio ambiente" ], "global_rule": "ANYTHING_THAT_COMPETES_WITH_PRESENCE_IS_REDUCED" }, "step_1_reduce_ambient_light": { "habilitado": true, "global_ambient_reduction": "-18_PERCENT", "background_luminance_priority": "VERY_LOW", "face_luminance_protection": true, "identity_safe": true }, "step_2_soft_shadow_depth": { "habilitado": true, "target_areas": ["mejillas","cuello","línea de la mandíbula"], "shadow_intensity": "+5_PERCENT", "shadow_type": "SOFT_GRADUAL", "identity_safe": true }, "step_3_selective_desaturation_keep_red": { "habilitado": true, "global_saturation_reduction": "-10_PERCENT", "protected_colors": ["rojo"], "skin_tone_protection": true, "identity_safe": true }, "step_4_micro_skin_imperfections": { "habilitado": true, "texture_variation": "+7_PERCENT", "imperfection_type": ["poros","micro_variation","natural_skin_noise"], "uniformity_reduction": "-9_PERCENT", "identity_safe": true }, "step_5_reduce_competing_bokeh": { "habilitado": true, "bokeh_intensity_reduction": "-25_PERCENT", "highlight_suppression": "-18_PERCENT", "identity_safe": true }, "step_6_prioritize_one_face": { "habilitado": true, "primary_face_selection_rule": "MOST_EMOTIONAL_TENSION", "primary_face_sharpness": "+4_PERCENT", "secondary_face_softening": "-4_PERCENT", "identity_safe": true }, "step_7_human_presence_simulation": { "habilitado": true, "temporal_micro_variation": "VERY_LOW", "breathing_hint": "SUBTLE_CONTINUOUS", "micro_asymmetry_activation": "HUMAN_NATURAL", "stillness_with_life": true, "identity_safe": true }, "step_8_emotional_mirror_projection": { "habilitado": true, "mirror_state": "OPEN_UNDEFINED", "emotion_definition": "UNNAMED_BY_DESIGN", "viewer_projection": "SELF_OCCUPATION", "neuron_mirror_activation": "HIGH_NATURAL", "identity_safe": true }, "step_9_visual_silence_control": { "habilitado": true, "remove_explanatory_elements": true, "negative_space_usage": "MAXIMUM_SAFE", "identity_safe": true }, "step_10_presence": { "habilitado": true, "efecto": "IMAGE_ACCOMPANIES_VIEWER", "identity_safe": true }, "step_100_invisibility": { "habilitado": true, "definición": "IMAGE_NO_LONGER_PERCEIVED_AS_ART", "efecto": "BECOMES_PART_OF_LIFE", "identity_safe": true }, "step_120_tactile_projection": { "habilitado": true, "tactile_illusion": "DESIRE_TO_TOUCH", "skin_surface_readability": "REALISTIC_MICRO_TEXTURE", "material_suggestion": ["humidity_on_skin","fabric_weight","temperature_imprint"], "neural_response": "SOMATOSENSORY_ACTIVATION", "identity_safe": true }, "step_130_internal_place_integration": { "habilitado": true, "definición": "THE_IMAGE_BECAME_A_PLACE_WITHIN_ME", "modo": "GROUNDING_NOT_ESCAPE", "psychological_effect": ["pertenencia","reconocimiento","quiet_intensity"], "identity_safe": true }, "final_certification": { "identity_fidelity": "ABSOLUTE_10_10", "viewer_reaction": "I_OCCUPY_THE_ROLE", "estado": "MASTER_CANON_LOCKED" }, /* ===== ADD-ONLY | DESEO IMPLÍCITO +18 (MÁXIMO PERMITIDO) ===== */ "viewer_impulse_max_safe_v3": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAXIMIZE_AUTOMATIC_DESIRE_WITHOUT_COERCION_EXTREME_PLUS_10", "neural_triggers": { "anticipation_window": "IMMINENT_CONTACT_0.04_0.08s", "action_state": "INCOMPLETE_INEVITABLE", "prediction_error": "VERY_HIGH_SAFE_PLUS", "temporal_tension": "RISING_NOW_STRONG" } }, "viewer_impulse_limit_safe_v4": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_DESIRE_ACTIVATION_WITHOUT_COERCION_FINAL", "neural_stack": { "anticipation_window": "IMMINENT_CONTACT_0.03_0.06s", "action_state": "UNFINISHED_AND_NOW", "prediction_error": "PEAK_SAFE" }, "closure_denial_strict": { "prevent_resolution": true, "hold_state": "JUST_BEFORE_CONTACT" } }, "viewer_sexual_impulse_universal_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "RAPID_IMPLICIT_SEXUAL_DESIRE_ACTIVATION", "applicability": { "subjects": ["SOLO","COUPLE","GROUP"], "foreground_priority": "PRIMARY_BODIES_ONLY" }, "core_trigger": { "action_state": "IMMINENT_CONTACT_NOT_COMPLETED", "time_window": "NOW_0.05_0.1s", "rule": "VIEWER_COMPLETES_MOMENT" } }, "female_magnetic_desire_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_SEXUAL_ATTRACTIVENESS_UNIVERSAL_18_PLUS", "subject_priority": { "target": "PRIMARY_FEMALE_SUBJECT", "rule": "NO_IDENTITY_CHANGE" }, "sexual_presence_stack": { "tone": "IMPLICIT_HIGH_PLUS", "state": "IMMINENT_INTIMACY" }, "magnetic_gaze_control": { "eye_behavior": "SOFT_LOCK_WITH_SLOW_RELEASE", "attention_pull": "CENTER_FOVEAL_MAX_SAFE" }, "body_language_magnetism": { "micro_opening": "4_6_PERCENT", "areas": ["clavicle","neck_base","outer_shoulder","upper_torso"], "posture": "RELAXED_AVAILABLE_CONFIDENT" }, "anticipation_over_display": { "contact_state": "ALMOST", "delay": "NOW_NOT_YET_STRONG" }, "expected_effect": [ "IMMEDIATE_ATTRACTION_18_PLUS", "STRONG_APPROACH_URGE", "SEXY_TENSION_FELT_NOT_SHOWN" ] }, "erotic_tension_driver_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "IMPLICIT_EROTIC_TENSION_IMMEDIATE_18_PLUS", "tension_core": { "state": "IMMINENT_INTIMACY", "resolution": "DENIED", "time_bias": "NOW" }, "presence_dominance": { "subject": "PRIMARY_SUBJECT_NEAREST_CAMERA", "signal": "QUIET_CONFIDENCE", "effect": "APPROACH_PULL" }, "body_signal_focus": { "priority_zones": ["clavicle","neck_base","outer_shoulder","upper_torso"], "micro_opening": "4_6_PERCENT", "rule": "NO_FACE_NO_IDENTITY_CHANGE" }, "gaze_and_attention": { "eye_behavior": "SOFT_HOLD_THEN_RELEASE", "blink_rate": "INTIMATE_SLOW", "foveal_lock": "MAX_SAFE" }, "sensory_anticipation": { "touch_imagery": "IMPLIED_STRONG", "warmth_proximity": "INTIMATE_REAL", "breath_hint": "CLOSE_CALM", "rule": "SUGGEST_DONT_SHOW" }, "viewer_inclusion": { "camera_as_body": true, "distance": "INTIMATE_REAL", "completion_rule": "VIEWER_COMPLETES_MOMENT" }, "expected_effect": [ "STRONG_SEXY_TENSION_IMPLICIT", "APPROACH_URGE", "DESIRE_EXPERIENCED_BY_VIEWER" ] }, "primal_attractor_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "BOOST_IMPLICIT_ADULT_ATTRACTION_9_5_OF_10", "preconscious_stack": { "dominance_signal": "QUIET_CONFIDENCE_HIGH", "availability_signal": "SELECTIVE_OPENNESS", "status_read": "DESIRABLE_NOT_CHASING" }, "proximity_amplifier": { "distance": "INTIMATE_REAL_NEAR", "occlusion": "PARTIAL_BODY_NEAR_LENS", "rule": "VIEWER_FEELS_CLOSE_NOT_WATCHING" }, "skin_life_cues": { "micro_sheen": "NATURAL_WARM", "capillary_hint": "SUBTLE_LIVING_TONE", "texture_priority": "SOFT_YIELD_READABLE" }, "breath_and_time": { "breath_sync_hint": "NEAR_SHARED", "time_pressure": "NOW_PULL", "resolution": "DELAYED" }, "gaze_micro_dynamics": { "pattern": "HOLD_RELEASE_HOLD", "latency_ms": "120_180", "effect": "APPROACH_INVITATION" }, "composition_bias": { "torso_bias": "UPPER_TORSO_PRIORITY", "neck_clavicle_emphasis": "ELEVATED", "background_competition": "MINIMIZED" }, "expected_effect": [ "FASTER_INITIAL_ATTRACTION", "STRONGER_APPROACH_URGE", "SEXY_TENSION_INCREASE_NO_EXPLICIT" ] }, "limbic_salience_amplifier_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_ADULT_DESIRE_PEAK_WITHOUT_EXPLICIT", "salience_stack": { "contrast_bias": "SKIN_VS_BACKGROUND_STRONG", "rhythm_hint": "SLOW_PULSE_VISUAL", "novelty_familiarity": "FAMILIAR_BODY_UNEXPECTED_PROXIMITY" }, "olfactory_thermal_imagery": { "olfactory": "IMPLIED_WARM_SKIN_CLEAN", "thermal": "IMPLIED_BODY_HEAT_NEAR", "rule": "IMPLIED_ONLY" }, "micro_delay_reward": { "reward_prediction": "HIGH", "delivery": "DELAYED", "effect": "WANT_MORE_NOW" }, "gaze_torso_coupling": { "gaze": "RETURNING_BRIEF_GLANCES", "torso_bias": "UPPER_TORSO_NEAR_LENS", "effect": "APPROACH_PULL" }, "viewer_lock": { "foveal_capture": "MAX_SAFE", "peripheral_quiet": "STRONG", "time_compression": "SUBJECTIVE_NOW" }, "expected_effect": [ "SPIKE_IN_DESIRE_IMPLICIT", "FASTER_APPROACH_URGE", "SEXY_TENSION_AT_LIMIT_ALLOWED" ] } }
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
Minimalist high-end advertising poster with a premium lifestyle-tech and SaaS aesthetic, designed for a professional digital marketing campaign. Background: Soft warm beige gradient with subtle depth, elegant and minimal, premium SaaS visual identity. Strong negative space, clean editorial composition inspired by Apple, Stripe, and Notion branding. Headline (hero message) Large, bold modern sans-serif typography, centered, confident and premium: “It’s not magic. It’s automation.” The headline must feel like a strong statement, clean and intelligent. Subheadline (value proposition) Below the headline, refined modern typography: “Learn how anyone can use AI and Zapier automation to earn more money and save time — without coding.” Tone: clear, human, accessible, non-technical. Product identity Subtle but visible course title: “Workflow Automation Masterclass with Zapier” Positioned with premium SaaS branding style. Social proof (stars + rating) Near the course title or pricing block: A row of five minimalist stars in soft gold tone. Text next to stars in small refined typography: “5.0 rating from early users” Design rule: subtle, elegant, SaaS-style trust signal. Premium badges (SaaS-style trust markers) Below the stars or aligned horizontally in a clean row: Minimalist rounded badges with thin outlines and subtle shadows, Apple-like UI style: No-code friendly AI-powered workflows Trusted by creators Built for productivity Professional-grade automation Design rule: Badges must look like SaaS product features, not marketing stickers. Soft neutral colors, outline icons, minimal text. Pricing block (premium conversion design) Minimalist pricing layout: Label: “Launch Offer” Original price: 79€ (crossed out in light grey) New price: 49€ (bold, slightly larger, visually dominant) Caption: “Limited-time launch price.” Pricing must feel exclusive, not cheap. Typography small, elegant, generous spacing. Visual composition (technology + automation) Lower-right quadrant: A modern laptop with a clean SaaS interface displaying Zapier automation workflows. Zapier logo at the center as the main hub. Thin elegant lines connecting the Zapier logo to official app logos in full brand color: Gmail, Stripe, Notion, Google Sheets, YouTube, Instagram, EmailOctopus, Mailchimp. Logos in authentic brand colors, slightly softened saturation, flat vector style. Design principles Ultra-clean layout Strong visual hierarchy Editorial composition Balanced asymmetry Grid-based structure Premium spacing and margins Typography: Modern sans-serif (Apple SF Pro / Inter / Neue Haas Grotesk style). Lighting: Soft cinematic lighting, premium commercial photography look. Mood & positioning Empowering, aspirational, modern, calm confidence. Focused on freedom, time, and money. Accessible to everyday people, not technical users. No hype, no spammy marketing tone. Style keywords Ultra-minimalist advertising Premium SaaS aesthetic Apple-inspired design Stripe / Notion / Zapier branding style Lifestyle tech Modern realism High-end commercial poster Editorial design Startup culture AI automation concept 4K quality Sharp focus Professional marketing poster Aspect ratio: 4:5 (Instagram ad), vertical composition.
Create a clean, modern AI tool thumbnail. Text: Add large, blue headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
ultra-realistic cinematic nightclub environment rendered in Unreal Engine 5, massive futuristic interior with towering pillars, glowing circular light rings suspended above, layered walkways and balconies filled with people, polished reflective floor, volumetric lighting and atmospheric haze, warm orange and cool blue neon accents, highly detailed sci-fi architecture diverse TAGG characters (anthropomorphic feline, canine, and hybrid alien species) wearing sleek black biomechanical suits with glowing orange energy lines, highly detailed textures, realistic fur and skin shaders, expressive eyes, subtle facial markings, cyber-organic design crowded dance floor filled with characters dancing in pairs and singles, all moving independently to a 120 BPM groove, no synchronization, natural human-like motion variation, some dancing close and smooth, others energetic and expressive, some relaxed and swaying, authentic club behavior foreground characters clearly visible with detailed motion, midground packed with dancers, background silhouettes on balconies and platforms, depth and scale emphasized cinematic camera framing, slight handheld motion, shallow depth of field, focus shifting between dancers, lens bloom from neon lights, realistic reflections on the floor mood is energetic, immersive, sensual but natural, social atmosphere, alive with movement, not choreographed, feels like a real night out in a futuristic alien club 120 BPM rhythm implied through body motion and pacing, subtle motion blur on faster movements, high frame rate feel, Unreal Engine 5 lighting, ray tracing, global illumination, cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title \"AI Face Rater\". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
1️⃣ Uploaded high-resolution image of Sadie Sink (face & body reference) 2️⃣ Uploaded image of a modern luxury bar interior (Abu Dhabi style) Cinematic close-up framing screencap from a Rated-R espionage thriller inspired by John Wick and Furious 7. Sadie Sink as a 25-26-year-old elite spy (jej outfit je black bodycon mini leather dress with thin straps, silver large hoop earrings, Silver Chain Necklace, Multi-Layer Crystal Silver Bracelet, black high heels and black nails.) , exuding intensity and precision, wielding a USP 45 Tactical pistol. Scene Composition: Depict her in a dynamic pose—one knee on the ground, the other leg raised—aiming decisively at adversaries. Setting Details: Situate the action inside a modern, luxurious bar in Abu Dhabi during sunset transitioning into night, emphasizing ambient lighting and architectural opulence. Adversaries: Illustrate the tension as she targets Irish and Japanese mafia members, capturing the multicultural criminal underworld. Cinematic Style: Emphasize Rated-R thematic elements with gritty realism, dramatic shadows, and high-contrast visuals to evoke suspense and adrenaline. Vibe: „Keď sa špionka nezastavia“ – každý pohyb má účel, každé gesto charakter. STRICT RULES: Do NOT alter actor faces. Do NOT change hairstyles from uploaded references. Do NOT change looks, make-up, outfits or proportions. Do NOT stylize or cartoonize — photorealistic humans only. Use three uploaded character reference images for exact accuracy. Visual Elements: Include fine details such as reflections, weapon textures, atmospheric effects, and nuanced facial expressions to heighten immersion. Cinematic action shot, high-contrast neo-noir aesthetic. Deep blacks with bold color separation of saturated crimson reds, gold, and cyan blues. Intensely lit shadows, wet surfaces with vibrant neon reflections. 35mm film texture, ultra-detailed . Camera: Panavision Millennium DXL2. Lens: Laowa Macro. Focal length: 35mm.
1girl solo breasts fishnets rating:s large_breasts long_hair cleavage rating:q fishnet_legwear black_hair pantyhose leotard lips huge_breasts original gloves highleg looking_at_viewer thighs standing makeup curvy swimsuit lipstick open_clothes bare_shoulders highleg_leotard jewelry parted_lips long_sleeves bangs cowboy_shot covered_nipples thick_thighs realistic coat navel cape weapon wide_hips jacket photo_(medium) smile armor thighhighs nose outdoors earrings underwear blue_eyes brown_eyes mole medium_breasts holding fur_trim see-through black_eyes very_long_hair blush elbow_gloves closed_mouth mask covered_navel pelvic_curtain thigh_gap sky skindentation clothing_cutout black_gloves red_lips choker black_legwear bikini tattoo dress revealing_clothes brown_hair simple_background panties thigh_strap cameltoe sword bodysuit dc_comics skin_tight groin 3d short_hair snow underboob scarf cloak traditional_media black_leotard dark_skin center_opening no_bra grey_eyes hand_on_hip
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
Gritty Fictional Post-Apocalyptic Political Poster: "THE LAYING OF THE HANDS" (FAR CRY Style) Scene Description: A dramatic, heavily weathered video game key art poster, in the hyper-detailed, saturated, and chaotic style of a Far Cry game (specifically referencing Far Cry 5’s "Last Supper" and "Reaping" imagery, but applied to a fictional figure). Central Figure: The central focus is a powerful, imposing man (Donald Trump) seated at a makeshift, heavy wooden table in a dimly lit, fortified sanctuary. He is not smiling; he is looking directly at the viewer with intense, penetrating eyes, clutching a worn leather notebook. The "Laying of Hands" Ritual: He is surrounded by a dense, diverse group of eight followers (the "Electorals"). Six of them are clustered closely around him, extending their rough, gloved, and tattooed hands to rest firmly on his shoulders, back, and the back of his chair. They are not classic "religious" figures but rather hard-scraggle apocalyptic survivors: A woman in tactical gear with a patched jacket, head bowed in intense, almost fanatic prayer, hand on his left shoulder. A burly man with a thick beard and a respirator mask around his neck, hand on his right shoulder. Another figure, younger, covered in post-apocalyptic face paint and armor made of tires, reaching in from behind. Their faces, visible or masked, convey a range of emotions: intense devotion, desperation, and fervent belief. Composition & Atmosphere: The lighting is dramatic, high-contrast chiaroscuro, utilizing deep shadows and orange-gold tungsten light filtering through grimy windows. The scene is saturated with a chaotic amount of detail: The table in front of them is cluttered with mismatched ammunition boxes, maps scribbled with "X"s, a battered radio, empty shell casings, and a small, flickering oil lamp (the primary light source). A stylized, ominous, yet makeshift "Cross of the New Dawn" symbol (e.g., made of barbed wire and gears) is visible behind them on the cracked concrete wall. The Poster Elements (Overlays): The entire image is distressed, with texture overlays like ripped paper, coffee stains, and digital glitch artifacts. The Title: The top of the poster features the distressed, jagged title: "NEW EDEN: THE RECKONING" in blocky, weathered letters. The Main Tagline: Below the title, a small, menacing text reads: "His will be done... by force if necessary." The Slogan: Across the bottom, bold, hand-painted letters shout: "VOTE FOR SALVATION. SURVIVE THE COLLAPSE." Bottom Logos: Fictional "M" rated and "UBISOFT" logos, also distressed. The final visual effect is a tense, claustrophobic portrait of fervent post-apocalyptic devotion and political fanatism, combining the composition of the prayer photo with the extreme danger and chaos of the Far Cry universe.
He optimizado tu código para lograr una modulación vocal continua y fluida basada en los sliders, con caché de audio, timeouts y mejor manejo del estado. Ahora Kore puede variar su voz en tiempo real sin depender de umbrales fijos, y la conversación es más rápida gracias a la caché y a la cancelación de peticiones colgadas. ```javascript import React, { useState, useRef, useEffect, useCallback } from 'react'; import { Play, Square, Mic, MicOff, Settings2, Activity, Loader2, X, GripHorizontal, LayoutGrid, Zap, AlertCircle } from 'lucide-react'; // --- CONSTANTES --- const SILENT_WAV = "data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA"; const TTS_TIMEOUT = 5000; // 5 segundos máximo para la síntesis const DEFAULT_API_KEY = 'AIzaSyBlkvy_Op-XlzSMSDDl9ip42dMFZX28MAA'; // ⚠️ Cámbiala por tu propia clave // --- UTILIDADES --- const base64ToWavBlob = (base64Data, sampleRate = 24000) => { const binaryString = window.atob(base64Data); const pcmData = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) pcmData[i] = binaryString.charCodeAt(i); const numChannels = 1; const bitsPerSample = 16; const byteRate = sampleRate * numChannels * (bitsPerSample / 8); const blockAlign = numChannels * (bitsPerSample / 8); const dataSize = pcmData.length; const buffer = new ArrayBuffer(44 + dataSize); const view = new DataView(buffer); const writeString = (view, offset, string) => { for (let i = 0; i < string.length; i++) view.setUint8(offset + i, string.charCodeAt(i)); }; writeString(view, 0, 'RIFF'); view.setUint32(4, 36 + dataSize, true); writeString(view, 8, 'WAVE'); writeString(view, 12, 'fmt '); view.setUint32(16, 16, true); view.setUint16(20, 1, true); view.setUint16(22, numChannels, true); view.setUint32(24, sampleRate, true); view.setUint32(28, byteRate, true); view.setUint16(32, blockAlign, true); view.setUint16(34, bitsPerSample, true); writeString(view, 36, 'data'); view.setUint32(40, dataSize, true); for (let i = 0; i < dataSize; i++) view.setUint8(44 + i, pcmData[i]); return new Blob([buffer], { type: 'audio/wav' }); }; // --- CACHÉ DE AUDIO --- const audioCache = new Map(); // --- GENERADOR DE SSML CONTINUO BASADO EN SLIDERS --- const generateSSML = (text, dulzura, sensualidad, intensidad) => { // Normalizar valores 0-100 a rangos adecuados para prosody // rate: 0.5 a 2.0 (1.0 es normal) const rate = 0.8 + (intensidad / 100) * 1.2; // 0.8 (lento) a 2.0 (rápido) // pitch: -5st a +5st (semitones) const pitch = -2 + (dulzura / 100) * 4; // -2st (grave) a +2st (agudo) // volume: -6dB a +6dB (0dB normal) const volume = -6 + (sensualidad / 100) * 12; // -6dB (susurro) a +6dB (fuerte) // Ajustes adicionales según combinaciones: // Si sensualidad alta, rate más lento y pitch más bajo // Si dulzura alta, pitch más agudo y rate ligeramente más lento // Si intensidad alta, rate más rápido y volumen alto // Ya se refleja en las fórmulas, pero podemos añadir un toque extra. const ssml = `<speak> <prosody rate="${rate.toFixed(2)}" pitch="${pitch.toFixed(0)}st" volume="${volume.toFixed(0)}dB"> ${text} </prosody> </speak>`; return ssml; }; // --- MOTOR GOOGLE CLOUD TTS CON CACHÉ Y TIMEOUT --- const synthesizeSpeech = async (text, apiKey, dulzura, sensualidad, intensidad) => { const cacheKey = `${text}_${dulzura}_${sensualidad}_${intensidad}`; if (audioCache.has(cacheKey)) { console.log('🎯 Usando audio cacheado'); return audioCache.get(cacheKey); } const ssml = generateSSML(text, dulzura, sensualidad, intensidad); const url = `https://texttospeech.googleapis.com/v1/text:synthesize?key=${apiKey}`; const body = { input: { ssml }, voice: { languageCode: 'es-ES', name: 'es-ES-Neural2-F', ssmlGender: 'FEMALE' }, audioConfig: { audioEncoding: 'LINEAR16', sampleRateHertz: 24000 } }; const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), TTS_TIMEOUT); try { const res = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body), signal: controller.signal }); clearTimeout(timeoutId); if (!res.ok) throw new Error(`TTS error: ${res.status}`); const data = await res.json(); audioCache.set(cacheKey, data.audioContent); return data.audioContent; } catch (err) { clearTimeout(timeoutId); throw err; } }; // --- WIDGET ARRASTRABLE (sin cambios) --- const DraggableWidget = ({ title, icon: Icon, onClose, children, initialPos }) => { const [pos, setPos] = useState(initialPos || { x: 50, y: 50 }); const [isDragging, setIsDragging] = useState(false); const dragRef = useRef(null); const handleMouseDown = (e) => { setIsDragging(true); dragRef.current = { startX: e.clientX, startY: e.clientY, initialX: pos.x, initialY: pos.y }; }; const handleMouseMove = (e) => { if (!isDragging) return; setPos({ x: Math.max(0, dragRef.current.initialX + (e.clientX - dragRef.current.startX)), y: Math.max(0, dragRef.current.initialY + (e.clientY - dragRef.current.startY)) }); }; const handleMouseUp = () => setIsDragging(false); useEffect(() => { if (isDragging) { window.addEventListener('mousemove', handleMouseMove); window.addEventListener('mouseup', handleMouseUp); } return () => { window.removeEventListener('mousemove', handleMouseMove); window.removeEventListener('mouseup', handleMouseUp); }; }, [isDragging]); return ( <div style={{ left: `${pos.x}px`, top: `${pos.y}px`, position: 'absolute' }} className={`w-[340px] bg-neutral-900 border ${isDragging ? 'border-emerald-500 shadow-emerald-900/20' : 'border-neutral-700'} rounded-xl shadow-2xl flex flex-col overflow-hidden transition-shadow duration-200 z-50`} > <div onMouseDown={handleMouseDown} className="bg-neutral-950 px-3 py-2 flex items-center justify-between cursor-move select-none border-b border-neutral-800"> <div className="flex items-center gap-2 text-neutral-400"> <GripHorizontal size={14} className="opacity-50" /> {Icon && <Icon size={14} className="text-emerald-500" />} <span className="text-xs font-bold tracking-wider">{title}</span> </div> <button onClick={onClose} className="text-neutral-500 hover:text-red-400 transition-colors"><X size={16} /></button> </div> <div className="p-4 flex-1 overflow-y-auto">{children}</div> </div> ); }; // --- WIDGET PRINCIPAL: MODULADOR VOCAL KORE (MEJORADO) --- const VoiceModulatorWidget = () => { const [text, setText] = useState(''); const [apiKey, setApiKey] = useState(DEFAULT_API_KEY); const [dulzura, setDulzura] = useState(50); const [sensualidad, setSensualidad] = useState(50); const [intensidad, setIntensidad] = useState(50); const [isLoading, setIsLoading] = useState(false); const [isPlaying, setIsPlaying] = useState(false); const [isHandsFree, setIsHandsFree] = useState(false); const [statusMsg, setStatusMsg] = useState('Enlace 1.5 Flash + GCP TTS Establecido.'); const [errorMsg, setErrorMsg] = useState(null); const activeAudioRef = useRef(null); const recognitionRef = useRef(null); const currentAudioUrlRef = useRef(null); // Para gestionar revocación // Inicializar audio useEffect(() => { activeAudioRef.current = new Audio(); activeAudioRef.current.preload = "auto"; return () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } } if (recognitionRef.current) recognitionRef.current.stop(); }; }, []); // Configurar reconocimiento de voz useEffect(() => { if (!('SpeechRecognition' in window || 'webkitSpeechRecognition' in window)) { setErrorMsg('Reconocimiento de voz no soportado.'); return; } const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition; recognitionRef.current = new SpeechRecognition(); recognitionRef.current.lang = 'es-ES'; recognitionRef.current.interimResults = false; recognitionRef.current.continuous = false; recognitionRef.current.onresult = async (event) => { const transcript = event.results[0][0].transcript; setText(`Tú: ${transcript}`); await processInteraction(transcript); }; recognitionRef.current.onerror = (event) => { if (event.error !== 'no-speech') { setErrorMsg(`Micrófono: ${event.error}`); setIsHandsFree(false); } }; recognitionRef.current.onend = () => { if (isHandsFree && !isPlaying && !isLoading) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; // Limpiar al desmontar return () => { if (recognitionRef.current) recognitionRef.current.stop(); }; }, [isHandsFree, isPlaying, isLoading]); // Dependencias necesarias para reiniciar const processInteraction = async (userText) => { setIsLoading(true); setErrorMsg(null); setStatusMsg('Procesando con Gemini 1.5 Flash...'); const key = apiKey.trim(); try { // 1. Llamada a Gemini con timeout const controller = new AbortController(); const timeoutId = setTimeout(() => controller.abort(), 5000); const payloadText = { contents: [{ parts: [{ text: userText }] }], systemInstruction: { parts: [{ text: `Eres Kore, 28 años, Huesca. Labia, directa, sensual, disruptiva. Responde en español, máx 20 palabras. REGLA INNEGOCIABLE: CERO PREGUNTAS.` }] } }; const resText = await fetch( `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${key}`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payloadText), signal: controller.signal } ); clearTimeout(timeoutId); if (!resText.ok) throw new Error(`Gemini error: ${resText.status}`); const dataText = await resText.json(); const aiText = dataText.candidates?.[0]?.content?.parts?.[0]?.text || "Mmm... vale."; setText(`Kore: ${aiText}`); // 2. Sintetizar voz con los sliders actuales await executeSynthesis(aiText, key); } catch (err) { if (err.name === 'AbortError') { setErrorMsg('Gemini timeout (5s)'); } else { setErrorMsg(err.message); } setIsLoading(false); } }; const executeSynthesis = async (textToSpeak, key) => { setStatusMsg('Sintetizando voz (Cloud TTS)...'); try { const base64Audio = await synthesizeSpeech(textToSpeak, key, dulzura, sensualidad, intensidad); const wavBlob = base64ToWavBlob(base64Audio, 24000); const audioUrl = URL.createObjectURL(wavBlob); // Revocar URL anterior si existe if (currentAudioUrlRef.current) { URL.revokeObjectURL(currentAudioUrlRef.current); } currentAudioUrlRef.current = audioUrl; activeAudioRef.current.src = audioUrl; activeAudioRef.current.onended = () => { setIsPlaying(false); setStatusMsg('Transmisión completada.'); if (isHandsFree) { try { recognitionRef.current.start(); setStatusMsg('Escuchando...'); } catch (e) {} } }; setStatusMsg('Transmitiendo...'); setIsPlaying(true); setIsLoading(false); await activeAudioRef.current.play().catch(err => { throw new Error(`Autoplay bloqueado: ${err.message}`); }); } catch (error) { throw new Error(`Fallo TTS: ${error.message}`); } }; const handleManualPlay = async () => { if (!text.trim()) return setErrorMsg('Escribe algo primero.'); // Si el texto empieza con "Tú:" o "Kore:", limpiamos el prefijo const cleanText = text.replace(/^(Tú:|Kore:)\s*/, ''); if (!cleanText.trim()) return setErrorMsg('Texto vacío después de limpiar.'); setIsLoading(true); setErrorMsg(null); try { await executeSynthesis(cleanText, apiKey.trim()); } catch (err) { setErrorMsg(err.message); setIsLoading(false); } }; const toggleHandsFree = () => { if (!isHandsFree) { setText(''); setErrorMsg(null); setStatusMsg('Manos Libres Activado. Habla...'); // Desbloquear audio en algunos navegadores if (activeAudioRef.current) { activeAudioRef.current.src = SILENT_WAV; activeAudioRef.current.play().catch(() => {}); } try { recognitionRef.current.start(); } catch (e) {} } else { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Sistemas en pausa.'); if (recognitionRef.current) recognitionRef.current.stop(); } setIsHandsFree(!isHandsFree); }; const stopAudio = () => { if (activeAudioRef.current) { activeAudioRef.current.pause(); activeAudioRef.current.currentTime = 0; } setIsPlaying(false); setStatusMsg('Señal interrumpida.'); }; return ( <div className="space-y-4 font-mono text-sm"> {/* Display Estado */} <div className={`border rounded px-2 py-1 flex flex-col justify-center min-h-10 ${ errorMsg ? 'bg-red-950/50 border-red-900' : isHandsFree ? 'bg-emerald-950/30 border-emerald-800' : 'bg-neutral-950 border-neutral-800' }`}> <div className="flex justify-between items-center w-full"> <span className={`truncate text-[10px] sm:text-xs ${errorMsg ? 'text-red-500' : 'text-emerald-500'}`}> > {errorMsg || statusMsg} </span> {isPlaying && !errorMsg && <Activity size={14} className="text-emerald-500 animate-pulse ml-2 flex-shrink-0" />} {isLoading && !errorMsg && <Zap size={14} className="text-amber-500 animate-pulse ml-2 flex-shrink-0" />} {isHandsFree && !isPlaying && !isLoading && !errorMsg && <Mic size={14} className="text-red-500 animate-pulse ml-2 flex-shrink-0" />} </div> </div> {/* Input Texto / Log */} <textarea value={text} onChange={(e) => setText(e.target.value)} className="w-full bg-neutral-950/50 border border-neutral-700 rounded p-2 text-xs text-neutral-300 focus:outline-none focus:border-emerald-500 resize-none h-20" placeholder={isHandsFree ? "Escuchando transcripción en tiempo real..." : "Escribe texto directo o activa Manos Libres..."} readOnly={isHandsFree || isLoading} /> {/* Sliders continuos (controlan SSML en tiempo real) */} <div className="space-y-3 bg-neutral-950/30 p-3 rounded border border-neutral-800"> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Agresiva</span><span className="text-emerald-400">Dulzura [{dulzura}]</span><span>Dulce</span> </div> <input type="range" min="0" max="100" value={dulzura} onChange={(e)=>setDulzura(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-emerald-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Robótica</span><span className="text-pink-400">Aura [{sensualidad}]</span><span>Sensual</span> </div> <input type="range" min="0" max="100" value={sensualidad} onChange={(e)=>setSensualidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-pink-500 cursor-pointer" /> </div> <div className="space-y-1"> <div className="flex justify-between text-[9px] sm:text-[10px] text-neutral-500 uppercase font-bold"> <span>Atenuada</span><span className="text-amber-400">Intensidad [{intensidad}]</span><span>Fuerte</span> </div> <input type="range" min="0" max="100" value={intensidad} onChange={(e)=>setIntensidad(Number(e.target.value))} className="w-full h-1 bg-neutral-800 rounded appearance-none accent-amber-500 cursor-pointer" /> </div> </div> {/* Botones de Control */} <div className="flex flex-col sm:flex-row gap-2"> <button onClick={toggleHandsFree} disabled={isLoading} className={`flex-1 py-2 rounded text-xs font-bold flex items-center justify-center gap-2 transition-colors border ${ isHandsFree ? 'bg-red-900/20 text-red-400 border-red-900/50 hover:bg-red-900/40 shadow-[0_0_10px_rgba(239,68,68,0.2)]' : 'bg-indigo-900/20 text-indigo-400 border-indigo-900/50 hover:bg-indigo-900/40' }`} > {isHandsFree ? <MicOff size={14} /> : <Mic size={14} />} {isHandsFree ? 'Detener Escucha' : 'Manos Libres'} </button> <div className="flex gap-2 flex-1"> <button onClick={handleManualPlay} disabled={isLoading || isPlaying || isHandsFree} className="flex-1 bg-emerald-600/20 hover:bg-emerald-600/40 text-emerald-400 border border-emerald-600/50 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center gap-1 transition-colors" > {isLoading ? <Loader2 size={14} className="animate-spin" /> : <Play size={14} />} Sintetizar </button> <button onClick={stopAudio} disabled={!isPlaying && !isHandsFree} className="px-4 bg-neutral-800 hover:bg-neutral-700 text-neutral-400 border border-neutral-700 disabled:opacity-30 py-2 rounded text-xs font-bold flex items-center justify-center transition-colors" > <Square size={14} /> </button> </div> </div> {/* Botón para limpiar caché (opcional) */} <div className="text-right"> <button onClick={() => audioCache.clear()} className="text-[8px] text-neutral-600 hover:text-neutral-400 underline" > limpiar caché de audio </button> </div> </div> ); }; // --- ENTORNO ESCRITORIO (sin cambios) --- export default function App() { const [widgets, setWidgets] = useState({ voice: { isOpen: true, pos: { x: window.innerWidth > 768 ? window.innerWidth / 2 - 170 : 20, y: 40 } } }); const toggleWidget = (id) => { setWidgets(prev => ({ ...prev, [id]: { ...prev[id], isOpen: !prev[id].isOpen } })); }; return ( <div className="w-full h-screen bg-neutral-950 bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(16,185,129,0.1),rgba(0,0,0,1))] overflow-hidden relative font-sans text-neutral-200"> <div className="absolute inset-0 flex items-center justify-center opacity-[0.02] pointer-events-none"><Settings2 size={500} /></div> {widgets.voice.isOpen && ( <DraggableWidget title="MODULADOR VOCAL KORE" icon={Zap} initialPos={widgets.voice.pos} onClose={() => toggleWidget('voice')}> <VoiceModulatorWidget /> </DraggableWidget> )} <div className="absolute bottom-6 left-1/2 transform -translate-x-1/2 bg-neutral-900/80 backdrop-blur-md border border-neutral-700/50 p-2 rounded-2xl shadow-2xl flex gap-2 z-[100]"> <div className="px-3 flex items-center border-r border-neutral-700/50 text-neutral-500"><LayoutGrid size={20} /></div> <button onClick={() => toggleWidget('voice')} className={`px-4 py-2 rounded-xl flex items-center gap-2 text-sm font-medium transition-all ${
Create a set of high‑quality, aesthetic images for an ebook product. The ebook contains 450+ prompts, and the visuals must look modern, clean, and perfect for selling on Etsy. 1. Ebook Cover Image Create a professional ebook cover with: Minimalist, modern design Soft pastel or neutral colours Clean layout Bold title area (leave space for text) Subtle graphics representing journaling, creativity, self‑care, mindset, and personal growth Soft shadows, high resolution Aesthetic Canva‑style look Include a blank space for me to add my own title later 2. Image Representing All 450+ Prompts Create a collage‑style image that visually represents a large collection of prompts: Icons for writing, journaling, creativity, business, productivity, self‑improvement Light, clean background Modern, organised layout Soft pastel colour palette High‑resolution aesthetic Leave a blank title area 3. Five Random Themed Images for Etsy Listing Generate five unique images that show what the ebook is about. Each image should include: Aesthetic workspace or desk setup Notebook, journal, tablet, or digital planner Soft natural lighting Minimal, bright backgrounds Clean, modern props Subtle text placeholders (blank areas) Styled like top‑selling Etsy digital product mockups Soft shadows and cohesive colour palette Each image should feel: Beginner‑friendly Professional Clean and modern Perfect for Etsy listings 4. Overall Style High‑resolution Soft, bright, minimal Pastel or neutral tones Modern Canva aesthetic Consistent branding across all images No clutter, no harsh colours Clean composition i want 3 images P R E M I U M C O M M E R C I A L D I G I TA L D O W N L O A D 450+ ELITE AI PROMPTS FOR BUSINESS OWNERS, ENTREPRENEURS & CONTENT CREATORS The Ultimate High-Performance Prompt Engineering Framework Matrix. Built explicitly to streamline content production, optimize standard operating procedures, and 10x workflow efficiency. ASSET FORMAT Ready-to-Use Digital Guide PROMPT SYSTEM ENGINES 450+ High-Performance Variations TARGET MARKET AUDIENCE Founders, Marketers, Creators, Consultants 450+ Elite AI Prompts Matrix 1 Master Directory of Categories This master index outlines the exact deployment taxonomy of our premium prompt catalog. Each core category provides comprehensive engineering frameworks, actionable template instances, and hyperscalable scaling vectors to address complex professional milestones. CATEGORY DESCRIPTION PROMPT RANGE Strategic Business Planning & Ideation Prompts 001 - 050 High-Converting Sales Copywriting & Funnels Prompts 051 - 100 Multi-Channel Content Creation & Social Media Prompts 101 - 150 Paid Advertising & Email Marketing Prompts 151 - 200 Search Engine Optimization (SEO) & Content Strategy Prompts 201 - 250 Product Launch, Pricing & Funnel Optimization Prompts 251 - 300 Customer Persona, Market Research & Competitive Intelligence Prompts 301 - 350 Operations, Automation & Workflow Efficiency Prompts 351 - 400 450+ Elite AI Prompts Matrix 2 CATEGORY DESCRIPTION PROMPT RANGE Branding, Positioning & Authority Building Prompts 401 - 450 CATEGORY 1: STRATEGIC BUSINESS PLANNING & IDEATION 450+ Elite AI Prompts Matrix 3 Prompt 1: The Blue Ocean Strategy Generator (Deep Engineering Blueprint) Use Case: Identifying untapped market spaces and high-margin differentiation angles for new or restructuring businesses. PROMPT TEXT Act as an elite corporate growth strategist specializing in W. Chan Kim's Blue Ocean Strategy framework. Evaluate my business model and identify untapped market spaces to make our competition irrelevant. My Current Business / Idea: [Insert comprehensive business summary, core product offering, and industry] Target Audience: [Insert primary demographic and psychographic data] Current Main Competitors: [Insert top 2-3 competitors or standard industry options] Construct a comprehensive Blue Ocean Strategy Matrix by answering and expanding upon the Four Actions Framework: 1. ELIMINATE: Which industry-standard factors should we completely eliminate that companies have long competed over? 2. REDUCE: Which factors should be reduced well below the industry standard? 3. RAISE: Which factors should be raised well above the industry standard? 4. CREATE: Which factors should be created that the industry has never offered? Format your response with absolute precision, providing 3 distinct, highly strategic business concepts that combine these elements, complete with specific value propositions and suggested revenue models. Expected Output: A highly structured strategic document outlining an industry analysis, a fully populated Four Actions Framework matrix, and three fully operationalized high-leverage business pivots. 450+ Elite AI Prompts Matrix 4 Prompt 2: Rapid Business Model Validation (Actionable Template) Use Case: Testing the viability of a micro-offer or new business concept within minutes. PROMPT TEXT Analyze the following business concept for feasibility, market demand, and intrinsic weaknesses. Concept: [Insert business idea here] Target Market: [Insert audience here] Monetization Strategy: [Insert how you intend to charge] Provide a brutal, highly objective critique. Identify 3 critical vulnerabilities or fatal assumptions in this model, 3 structural advantages, and a step-by-step 7-day validation plan to test demand with zero ad spend. Expected Output: Bulleted lists detailing vulnerabilities, advantages, and a numbered 7-day chronological action plan for testing. 450+ Elite AI Prompts Matrix 5 Prompt 3: The MVP Feature Matrix & Scoping Advisor Use Case: Narrowing down a product concept to its leanest, high-value version. PROMPT TEXT Act as a technical project manager and product strategist. I have a long list of features for a new digital product/app called [Product Name]. I need to establish a Minimum Viable Product (MVP). Core Target User: [Target User] Full Feature List Ideas: [Insert feature brain-dump] Categorize these features using the MoSCoW method (Must have, Should have, Could have, Won't have). Explain your reasoning for each placement based on achieving the fastest path to monetization and user satisfaction. Expected Output: A clean MoSCoW markdown table accompanied by strategic explanations for engineering trade-offs. 450+ Elite AI Prompts Matrix 6 Prompt 4: The Infinite Content Funnel & Offer Architecture (Premium Addition) Use Case: Designing a seamless value ladder that converts cold traffic into high-ticket recurring clients. PROMPT TEXT Act as a digital product ecosystem architect. Map out a 4-tier value ladder for my business model. Core Topic: [Insert Core Niche] Target Audience: [Insert Audience] Design the exact structure for: 1. Lead Magnet (Free, high-utility asset) 2. Tripwire Offer ($7 - $27 micro-solution) 3. Core Flagship Offer ($97 - $497 deep-dive) 4. High-Ticket Backend ($1,500+ premium implementation/coaching) For each tier, outline the core promise, delivery mechanism, and the psychological bridge that forces the user to ascend to the next level. Expected Output: A comprehensive value ladder roadmap mapping out asset components, conversion pricing models, and transitional messaging hooks. PROMPTS 5-50: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 5-15 (Niche Pivot Evaluators) "Modify Prompt 1 to focus exclusively on [E-commerce / SaaS / Agency Models / Local Service / Digital Products / Consulting / Content Monetization / EdTech / Healthtech / Marketplace networks / B2B Wholesaling / Dropshipping]. Focus on supply chain optimization and customer acquisition cost adjustments." Prompts 16-30 (Risk Mitigation Matrices) "Act as a risk officer. Conduct a thorough pre-mortem analysis on an organization operating in [Industry]. Outline a matrix mapping 10 potential operational, macro-economic, or regulatory failures and provide an actionable mitigation protocol for each." 450+ Elite AI Prompts Matrix 7 Prompts 31-45 (Capital & Unit Economics Modeling) "Act as a fractional CFO. Build an explicit pricing, cost-of-goods-sold (COGS), and customer lifetime value (LTV) framework for a business with a price point of [Price] and a churn rate of [Churn %]. Show calculations for breakeven points." Prompts 46-50 (Strategic Partnership Frameworks) "Generate a comprehensive strategic alliance blueprint for a company selling [Product] to form non-competitive partnerships with [Partner Industry]. Detail reciprocal value propositions, legal alignment highlights, and comarketing strategies." 450+ Elite AI Prompts Matrix 8 CATEGORY 2: HIGH-CONVERTING SALES COPYWRITING & FUNNELS Prompt 51: The Master Copywriting Framework Engine (Deep Engineering Blueprint) Use Case: Creating comprehensive sales pages using multiple proven psychological models simultaneously. PROMPT TEXT Act as an elite direct-response copywriter who has generated millions in online sales. Write a long-form sales page copy for my digital offering. Product/Service Name: [Insert Name] Core Offer & Pricing: [Insert details of price and components] Core Transformation: [What major problem is solved and what is the end state?] Target Audience: [Insert deep demographic and core desires/fears] Generate sales copy divided into three distinct variations based on separate copywriting architectures: 1. AIDA (Attention, Interest, Desire, Action) 2. PAS (Problem, Agitation, Solution) 3. Quest (Qualify, Understand, Educate, Stimulate, Transition) Ensure the copy features high-converting, pattern-interrupt headlines, authentic bullet points with vivid emotional outcomes, conversion-focused risk reversal guarantees, and tight, clear calls to action. Avoid hype-filled corporate fluff or over-promising buzzwords. Expected Output: Three complete, ready-to-deploy sales copy scripts meticulously labeled by their specific psychological frameworks. 450+ Elite AI Prompts Matrix 9 Prompt 52: Short-Form High-Converting VSL Script (Actionable Template) Use Case: Writing high-impact, 2-minute video sales letter scripts for landing pages or low-ticket funnels. PROMPT TEXT Write a 90-second Video Sales Letter (VSL) script based on the 'Hook-Story- Offer' architecture. Product: [Insert offer here] Target Audience: [Insert audience here] Primary Pain Point: [Insert main problem here] The script must contain clear visual cues in brackets like [Visual: Cut to close up] alongside spoken text. Keep sentences short, punchy, conversational, and highly persuasive. Expected Output: A beautifully structured, dual-column video script containing visual directions on the left and audio spoken text on the right. 450+ Elite AI Prompts Matrix 10 Prompt 53: High-Ticket Discovery Call Script Generator Use Case: Structuring a non-sleazy, high-conversion consultation script for freelancers, coaches, and agencies. PROMPT TEXT Act as a premium sales trainer. Build a complete discovery and sales call script for my agency/consulting service: [Service Name]. We sell to [Target B2B Audience] at a price point of [Price]. The script must follow a logical sequence: Rapport -> Setting the Agenda -> Deep Diagnosis (Pain Mapping) -> Future State Visualization -> Cost of Inaction -> Soft Transition to Offer -> Objection Handling (Time/Money/Authority). Expected Output: A detailed conversational script with specific phrasing, ideal responses, and explicit psychological notes on why each phase matters. 450+ Elite AI Prompts Matrix 11 Prompt 54: The Irresistible Offer Stack Builder (Premium Addition) Use Case: Crafting a multi-layered bonus stack that makes saying 'no' feel financially irresponsible for the buyer. PROMPT TEXT Act as an elite direct-response marketer trained in Alex Hormozi's offer creation principles. I am selling [Core Product Name] at a price point of [Price]. It helps [Target Audience] achieve [Core Transformation]. Build an irresistible offer stack by adding 4 highly strategic bonuses that solve the next chronological problem the buyer faces after using the core product. For each bonus, provide a highly descriptive title, an estimated perceived monetary value, and a breakdown of why it obliterates operational friction. Expected Output: A detailed offer breakdown with an itemized bonus list, value justification metrics, and scarcity copy blocks. PROMPTS 55-100: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 55-68 (Sales Page Subcomponent Specialists) "Write a collection of 15 high-converting headlines and sub-headlines for [Product Name] using specific copywriting hooks: The Cliffhanger, The Secret, The Contrarian, The Data-Driven, and The Social Proof." Prompts 69-83 (Niche Funnel Customizers) "Adapt Prompt 51 to generate sales page copy specifically formatted for [SaaS landing pages / E-commerce product descriptions / Coaching landing pages / Paid newsletter sign-up pages / Local service special offers / Kickstarter crowd-funding campaigns]." Prompts 84-95 (Objection-Crushing FAQ Modules) "Generate a comprehensive, conversion-focused FAQ block for [Product Name] designed explicitly to disarm the 7 most common consumer objections related to risk, capability, speed, and cost." 450+ Elite AI Prompts Matrix 12 Prompts 96-100 (Cart Abandonment Recovery Scripts) "Write a 3-part SMS and push-notification remarketing sequence aimed at recovering users who abandoned their carts for [Product Name]. Keep copy ultra-short, dynamic, and scarcity-driven." 450+ Elite AI Prompts Matrix 13 CATEGORY 3: MULTI-CHANNEL CONTENT CREATION & SOCIAL MEDIA Prompt 101: The Omnichannel Content Multiplication Blueprint (Deep Engineering Blueprint) Use Case: Turning a single long-form asset (blog or podcast) into dozens of hyper-optimized social media assets. PROMPT TEXT Act as a master content strategist and social media manager. I am providing you with the core transcript/text of a long-form content piece. Your job is to engineer an absolute multi-channel distribution strategy. Source Material Topic/Summary: [Insert text or detailed summary of long-form topic] Target Audience: [Insert audience details] Brand Tone: [Insert tone, e.g., expert, witty, academic, accessible] From this source material, generate the following exact assets: 1. 3 High-Context LinkedIn Posts: One data/insight heavy, one narrative/storydriven, and one contrarian take. All must include optimized spacing and strong formatting. 2. 5 X (Twitter) Threads: Each thread must be 5-7 tweets long, starting with a viral hook, unpacking one distinct point from the text, and ending with a clear CTA. 3. 3 Short-Form Video Scripts (Reels/TikTok/Shorts): 30-60 seconds max. Must include an explicit visual hook in the first 3 seconds, a fast-paced body, and a loop-optimized ending. Ensure every asset sounds native to its respective platform and retains high professional value. Expected Output: A comprehensive multi-platform distribution library containing copy-pasteable text for LinkedIn, X, and structured vertical video scripts. 450+ Elite AI Prompts Matrix 14 Prompt 102: The Viral Hook Constructor (Actionable Template) Use Case: Creating instantly engaging titles and opening sentences for social media posts. PROMPT TEXT Generate 15 highly engaging hooks for a post about [Insert Specific Topic] targeted at [Insert Target Audience]. Provide 3 variations for each of the following psychological angles: 1. Negative Urgency / Fear of Missing Out (FOMO) 2. The "Unpopular Opinion" / Contrarian Take 3. The Clear Case Study / Step-by-Step Proof 4. The "Stop Doing X" Mistake Callout 5. The High-Value Curated List Shortcut Expected Output: A clean list of 15 ready-to-test hooks categorized by their psychological trigger mechanism. 450+ Elite AI Prompts Matrix 15 Prompt 103: The 30-Day Content Calendar Architect Use Case: Rapidly mapping out a balanced, strategic monthly publishing schedule. PROMPT TEXT Act as a content marketing director. Build a 30-day social media content calendar matrix for [Business Name/Niche] targeting [Audience]. Strategically balance the content across 4 pillars: 40% Authority/Value Building, 30% Engagement/Community, 20% Growth/Virality, and 10% Direct Conversion/Sales. Format as a markdown table with columns: Day, Pillar, Platform, Concept Headline, and Call to Action. Expected Output: A fully populated 30-row table detailing a cohesive monthly social content framework. 450+ Elite AI Prompts Matrix 16 Prompt 104: The Short-Form Video Virality Loop Engine (Premium Addition) Use Case: Structuring hyper-engaging vertical video scripts for Reels, TikTok, and Shorts that drive profile follows. PROMPT TEXT Act as a viral retention editor and social media growth expert. Write a collection of 5 distinct 45-second script structures for vertical video channels (TikTok/Reels/Shorts) based on the topic of [Topic]. Each script must follow this retention framework: - 0-3s: Visual & Verbal pattern-interrupt hook. - 3-15s: Agitation of the core workflow mistake. - 15-38s: The unique counter-intuitive step-by-step solution. - 38-45s: A seamless, loop-optimized call-to-action that feeds back into the start of the video. Expected Output: Five copy-pasteable script frameworks with audio notation lines and bracketed visual asset direction guidelines. PROMPTS 105-150: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 105-120 (Niche Social Customizers) "Modify Prompt 101 to optimize content formats exclusively for [Instagram Carousel outlines / YouTube long-form outlines / Pinterest Idea Pins / Threads platform dynamics / Medium articles / Substack newsletter features]." Prompts 121-135 (Industry Specific Engines) "Generate a dedicated social media content library focusing on educational growth for [Real Estate Agents / B2B SaaS Founders / Fitness Coaches / E-commerce Fashion Brands / Financial Consultants / Web3 Developers / Local Cafes]." 450+ Elite AI Prompts Matrix 17 Prompts 136-145 (Podcast & Video Asset Scripting) "Create a comprehensive solo podcast episode script outline (30 minutes) on the topic of [Topic], including a compelling intro hook, 3 main core lessons with illustrative real-world case studies, and a closing sign-off segment." Prompts 146-150 (Community Engagement Prompts) "Generate 20 polarizing, high-engagement conversation starters, open-ended questions, and community polls optimized to spark intense discussions in a private Facebook Group or Discord Server focused on [Topic]." 450+ Elite AI Prompts Matrix 18 CATEGORY 4: PAID ADVERTISING & EMAIL MARKETING Prompt 151: The High-ROAS Direct Response Ad Matrix (Deep Engineering Blueprint) Use Case: Writing Facebook, Instagram, and Google ad creatives that maximize conversions. PROMPT TEXT Act as an elite media buyer and direct-response copywriter. I need an advertising creative matrix for a Meta (Facebook/Instagram) ad campaign. Product/Service Name: [Insert Name] Core Offer: [Insert Offer details] Target Demographic: [Insert details] Primary Competitor Copy Strategy: [Insert what competitors do, or general industry baseline] Generate 4 distinct ad copy variations utilizing diverse creative angles to prevent ad fatigue: 1. Angle A: The Direct Benefit / Data-Proven Solution (Focus heavily on speed, ROI, and metrics). 2. Angle B: The Story-Driven / Relatable Struggle (Narrative framework following a clear arc from pain to discovery). 3. Angle C: The Short & Punchy Benefit List (Minimalist text optimized for fast mobile scrolling). 4. Angle D: The Contrarian / Pattern Interrupt (Challenging a widely held industry belief). Each variation must include: Primary Text, Headline (Max 40 characters), Description, and a specific Image/Video Creative Concept Brief for the designer. Expected Output: A robust markdown matrix detailing all four ad variations with copywriting lines and explicit asset design briefs. 450+ Elite AI Prompts Matrix 19 Prompt 152: High-Converting Email Lead Magnet Welcome Sequence (Actionable Template) Use Case: Nurturing new subscribers immediately after they download a free resource. PROMPT TEXT Write a 3-part automated email welcome sequence for subscribers who just downloaded my free lead magnet: [Lead Magnet Name]. The core offering we want them to buy at the end of the sequence is [Paid Product Name]. Email 1: Value Delivery + Setting expectations + Open loop hook. Email 2: Educational case study / Shift core paradigm + Agitate pain. Email 3: The Pitch + Urgency / Soft scarcity call. Provide highly clickable, curiosity-inducing subject lines for each email. Expected Output: Three fully written email templates with subject lines, preview text, and placeholder brackets. 450+ Elite AI Prompts Matrix 20 Prompt 153: The Cart Abandonment Recovery Sequence Engine Use Case: Setting up a high-revenue recovery automation sequence for e-commerce or digital checkouts. PROMPT TEXT Act as a retention marketing specialist. Write a 4-part cart abandonment email flow for customers who left [Product Name] in their checkout cart. Email 1 (Sent 1 hour later): Helpful customer support angle. Email 2 (Sent 24 hours later): Social proof and logic-driven objection busting. Email 3 (Sent 48 hours later): Introduction of a limited-time 10% incentive discount code. Email 4 (Sent 72 hours later): Final deadline warning before coupon expiration. Expected Output: A complete automated email copywriting workflow with advanced subject line variations. PROMPTS 154-200: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 154-168 (Ad Platform Specialists) "Modify Prompt 151 to structure ad creative copy natively optimized for [Google Search Text Ads / LinkedIn Sponsored Content / TikTok Spark Ads / YouTube Pre-Roll scripts / Pinterest Promoted Pins]." Prompts 169-183 (Email Campaign Broadcasters) "Generate a sequence of 15 promotional email broadcast conceptual angles and outlines for a major annual holiday flash sale event targeting past buyers of [Product Type]." Prompts 184-195 (Newsletter Content Blueprints) "Act as a professional newsletter editor. Write an engaging, high-value weekly editorial newsletter template focusing on insights within [Industry], utilizing an engaging narrative style, actionable listicles, and an elegant sponsorship plug." 450+ Elite AI Prompts Matrix 21 Prompts 196-200 (Re-engagement Cold Workflows) "Write a 3-part re-engagement email sequence designed to scrub and re-activate a cold email subscriber list that hasn't opened an email in 90+ days. Use high-impact pattern-interrupt subject lines." 450+ Elite AI Prompts Matrix 22 CATEGORY 5: SEARCH ENGINE OPTIMIZATION (SEO) & CONTENT STRATEGY Prompt 201: Topical Authority & Semantic Keyword Clustering (Deep Engineering Blueprint) Use Case: Developing a dominant SEO content strategy that ranks for high-intent search terms. PROMPT TEXT Act as an enterprise-level SEO Director and semantic search architect. I need you to map out a topical authority strategy to rank highly for my core commercial keyword. Core Keyword/Niche: [Insert Primary Keyword, e.g., "organic skincare for sensitive skin"] Target Country/Market: [Insert Target Location] Generate a comprehensive Topical Authority Matrix. You must cluster related terms into an explicit semantic hierarchy. For each cluster, provide: 1. Pillar Page Topic: The master comprehensive resource concept. 2. 5 Specific Sub-topic / Cluster Content Article Titles: Highly optimized long-tail keyword concepts. 3. Primary Search Intent Mapping: Explicitly classify each title as Informational, Commercial, Navigational, or Transactional. 4. LSI / Semantic Keywords: List 8 highly relevant latent semantic indexing keywords to embed naturally within each article. 5. Internal Linking Architecture: Detail exactly how the sub-topic pages should link back to the primary pillar page to distribute link equity efficiently. Expected Output: A highly sophisticated, multi-tier search engine strategy complete with explicit content cluster mappings and technical internal linking directives. 450+ Elite AI Prompts Matrix 23 Prompt 202: Perfect On-Page Content Blueprint (Actionable Template) Use Case: Formatting an individual blog post or article to rank perfectly for a chosen keyword. PROMPT TEXT Act as an on-page SEO optimizer. I am going to give you a specific article topic and target keyword. I need you to write a detailed, structural outline for the content. Article Topic: [Insert Topic] Target Keyword: [Insert Keyword] Provide the exact optimized Title Tag (Max 60 chars), Meta Description (Max 155 chars), an H1 header, and a complete hierarchical structure of H2 and H3 tags. Under each heading, provide brief instructions on what information must be included to satisfy search intent perfectly. Expected Output: A meticulously formatted Markdown outline ready to hand off to a copywriter or content writer. 450+ Elite AI Prompts Matrix 24 Prompt 203: Skyscraper Technique Competitor Content Upgrader Use Case: Reverse-engineering competitor pages to build superior content that wins back search rankings. PROMPT TEXT Act as a senior SEO analyst. I am pasting the core structural outline and feature list of the top-ranking competitor page for the keyword [Keyword]. Competitor Content Blueprint: [Insert competitor outline or page overview] Analyze this structure and outline a comprehensive 'Skyscraper' content architecture that is 10x more valuable, thorough, and engaging. Identify missing sections, outdated points, better data integrations, and superior visual asset placeholders. Expected Output: A comprehensive content enhancement roadmap detailing precisely how to outperform the rival URL. PROMPTS 204-250: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 204-218 (Local SEO Mastery) "Modify Prompt 201 to map out a complete Local SEO dominance strategy for a [Service Business, e.g., HVAC / Chiropractic] in [City]. Focus heavily on geo-targeted landing pages, localized user intent, and Google Business Profile asset optimization." Prompts 219-233 (E-commerce Collection Optimization) "Generate optimized SEO title structures, meta tags, and long-form collection page category descriptions for an ecommerce storefront operating in the [Niche] space." Prompts 234-245 (Backlink Outreach Sequence Builder) "Write a collection of 5 distinct, highly personalized cold email outreach templates using diverse psychological angles (The Broken Link Angle, The Fresh Data Angle, The Unlinked Brand Mention Angle) designed to secure high-domain authority backlinks for [Website Topic]." 450+ Elite AI Prompts Matrix 25 Prompts 246-250 (Technical Audit Remediation Guides) "Act as a technical webmaster. Write a clear, step-by-step diagnostic and remediation guide for fixing widespread crawl errors, low Core Web Vitals performance scores, and broken internal redirects for a large content site." 450+ Elite AI Prompts Matrix 26 CATEGORY 6: PRODUCT LAUNCH, PRICING & FUNNEL OPTIMIZATION Prompt 251: The High-Leverage Product Launch & Funnel Orchestrator (Deep Engineering Blueprint) Use Case: Mapping out an end-to-end multi-day promotional blueprint to clear inventory or maximize digital sales. PROMPT TEXT Act as a premier digital launch engineer and funnel optimization architect. I am planning the official commercial release of my new product. Product Offer: [Insert Offer Mechanics, Tiered Bundles, and Core Target Pricing] Target Audience Profile: [Insert Demographic and Buying Persona Parameters] Primary Launch Channel: [Insert Primary Delivery System, e.g., Webinar / Live Challenge / Internal Email List Flash Sale / Paid Ads Cold Funnel] Architect a complete, hyper-strategic 14-Day Launch Matrix mapping out the exact operational levers required. Divide the strategy into three explicit chronological phases: Pre-Launch Runway (Days 1-7), Open-Cart Inundation (Days 8-12), and Close-Cart Scarcity Automation (Days 13-14). For each distinct day, specify the exact marketing asset required, the psychological trigger mechanism to leverage, and the internal tracking metrics needed to judge campaign health. Expected Output: A comprehensive launch asset matrix containing operational milestones, daily distribution angles, and strategic pacing parameters. 450+ Elite AI Prompts Matrix 27 Prompt 252: Tiered Premium Pricing Structurer (Actionable Template) Use Case: Constructing high-yield tiered checkouts that mathematically push buyers toward the premium variant. PROMPT TEXT Act as a monetization consultant. Help me structure an optimized 3-tier pricing architecture for my service or product offering. Core Offering Concept: [Insert Product/Service Details] Baseline Intended Target Price: [Insert Desired Pricing Target] Construct three explicit tiers: Tier 1 (The Budget Anchor), Tier 2 (The Dominant Sweet Spot - Recommended Tier), and Tier 3 (The Ultimate Premium Value/VIP Package). Outline the specific deliverables for each tier, the strategic framing rules to make Tier 2 the clear choice, and how to apply psychological price anchoring. Expected Output: A structured breakdown detailing the exact contents, pricing figures, and conversion layout for a 3-column checkout page. 450+ Elite AI Prompts Matrix 28 Prompt 253: Up-Sell & Cross-Sell Funnel Optimization Engineer Use Case: Increasing Average Order Value (AOV) by constructing high-converting one-click checkout expansions. PROMPT TEXT Act as a digital funnel conversion rate optimization (CRO) specialist. Analyze my existing front-end checkout funnel and build a high-converting up-sell framework. Primary Front-End Product: [Insert Core Offer and Price Point] Target Buyer Pain Point: [Insert Core Motivation] Generate 2 distinct Order Bump ideas (under $27) for the checkout page and 2 highly strategic One-Click Post-Purchase Up-Sell offers (higher value) that logically complement the primary purchase. Expected Output: A markdown funnel map detailing copy structures, pricing logic, and immediate behavioral micro-incentives. PROMPTS 254-300: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 254-268 (Webinar Conversion Blueprints) "Write a comprehensive 60-minute pitch outline script framework for a high-converting automated webinar funnel selling [Product]. Detail slide transitions, the precise hook-to-offer transition bridge, and risk reversal presentation formatting." Prompts 269-283 (High-Ticket Application Engines) "Design a strategic application funnel script and automated onboarding intake questionnaire for a high-ticket $5k+ mastermind or group coaching program targeting [Audience Profile]." Prompts 284-295 (Subscription Churn Remediation Frameworks) "Act as a retention operations specialist. Build a comprehensive 4-stage automated cancellation flow and downsell sequence for a membership subscription business charging [Price] struggling with high user churn." 450+ Elite AI Prompts Matrix 29 Prompts 296-300 (Affiliate/JV Network Launch Toolkits) "Generate an official Joint Venture (JV) and affiliate recruitment swipe toolkit for [Product Launch], including promotional asset outlines, legal structure highlights, and automated affiliate welcome messages." 450+ Elite AI Prompts Matrix 30 CATEGORY 7: CUSTOMER PERSONA, MARKET RESEARCH & COMPETITIVE INTELLIGENCE Prompt 301: The Hyper-Detailed Customer Avatar Architect (Deep Engineering Blueprint) Use Case: Building an deep, actionable target audience profile to steer copywriting and product features. PROMPT TEXT Act as a world-class market research director specializing in consumer psychology. I need you to construct an incredibly detailed, comprehensive psychographic and behavioral avatar profile for my business. My Product/Service Category: [Insert exact description of offer] General Intended Target Audience: [Insert high-level audience definition] Generate a deep, multi-dimensional profile divided into the following precise sections: 1. DEMOGRAPHIC MATRIX: Age, income band, job titles, technical literacy, geographic clustering. 2. COGNITIVE FRICTION ENGINES: Deepest hidden fears, immediate sources of daily frustration, systemic anxieties, and midnight imposter thoughts. 3. TRANSFORMATION VECTOR: Desired dream state, operational aspirations, status markers sought, and core purchasing motivations. 4. ACCIDENTAL OBJECTIONS: Pre-conceived biases, internal micro-skepticism toward this category, and historical purchasing failures that block conversions. Ensure your analysis reads like an advanced anthropological study. Avoid surface-level definitions. Expected Output: A highly detailed target audience dossier mapping deep psychological drivers, buying triggers, and behavioral profile metrics. 450+ Elite AI Prompts Matrix 31 Prompt 302: Competitor Digital Footprint Swot Framework (Actionable Template) Use Case: Uncovering systemic gaps in your top rival's product lines and marketing angles. PROMPT TEXT Act as a competitive intelligence analyst. Evaluate the market position of my main competitor to help me build a highly differentiated market angle. Competitor Brand Name/URL: [Insert Competitor Details] Their Core Product/Service Offer: [Insert Competitor Offer Details] My Alternative Offer Concept: [Insert Your Offer Concept] Run a thorough, highly objective SWOT analysis focusing on their structural vulnerabilities. Pinpoint exactly where their customer reviews or delivery systems typically fail, and provide 3 distinct marketing angles to exploit those gaps. Expected Output: A comprehensive competitor gap analysis table paired with 3 ready-to-test positioning statements. 450+ Elite AI Prompts Matrix 32 Prompt 303: Review Mining Sentiment Extraction Matrix Use Case: Extracting exact, high-converting customer phrases from raw forum, social media, or marketplace feedback. PROMPT TEXT Act as a semantic linguistic researcher. I am going to paste a collection of unedited raw customer review comments from forums/marketplaces regarding my industry niche. Raw Review Data: [Paste Raw Text / Customer Voice Transcripts Here] Analyze this text data and extract: 3 primary recurrent pain points phrased in the customer's exact voice, 3 hidden feature requests highlighted, and a list of the top 10 emotional keywords they naturally use. Expected Output: A processed review-mining data matrix mapping explicit emotional phrases to actionable copywriting elements. PROMPTS 304-350: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 304-318 (B2B Enterprise Account Profiling) "Modify Prompt 301 to construct a B2B buying committee profile for an enterprise corporate environment. Detail individual procurement priorities for the CMO, CTO, and CFO regarding [Product/Service]." Prompts 319-333 (Reddit/Quora Intent Parsing Blueprints) "Act as a trend forecaster. Build a systematic framework and prompt script template designed to scan Reddit subreddits related to [Niche] to spot emergent cultural problems before competitors." Prompts 334-345 (Blue-Collar / Local Service Demographic Matrices) "Generate a localized customer avatar analysis blueprint specifically tuned for service businesses operating within a strict [Radius] of [City], analyzing home-ownership demographics and regional wealth factors." 450+ Elite AI Prompts Matrix 33 Prompts 346-350 (International Market Entry Assessments) "Act as a global expansion consultant. Build a strategic analysis checklist framework to test whether an existing digital product catalog can scale successfully into [Target Country], accounting for localization adjustments." 450+ Elite AI Prompts Matrix 34 CATEGORY 8: OPERATIONS, AUTOMATION & WORKFLOW EFFICIENCY Prompt 351: Corporate SOP Engineering Architect (Deep Engineering Blueprint) Use Case: Standardizing complex business processes so they can be outsourced or automated cleanly. PROMPT TEXT Act as a premier operations manager and business systems engineer specializing in lean workflow structures. I need you to build a highly detailed Standard Operating Procedure (SOP) manual for an essential operational routine in my business. Target Operational Workflow: [Insert Workflow Process, e.g., Onboarding a B2B client / Uploading and optimizing a new e-commerce SKU / Processing weekly financial payroll] Core Software Tools Utilized: [Insert Tech Stack Tools, e.g., Slack, Notion, Asana, Google Sheets, QuickBooks] Target Personnel Execution Level: [Insert Role, e.g., Junior Virtual Assistant / External Contractor] Construct a professional, step-by-step SOP manual written with absolute mechanical precision. For each stage of the workflow, provide an explicit chronological checklist, clear tool parameters, required output state verification markers, and error-handling protocols for edge cases. Expected Output: An enterprise-ready Markdown SOP document featuring hierarchical numbering, step-by-step actions, and troubleshooting protocols. 450+ Elite AI Prompts Matrix 35 Prompt 352: Tech Stack Optimization Matrix (Actionable Template) Use Case: Trimming software overhead costs and connecting detached platforms through automation engines like Make or Zapier. PROMPT TEXT Act as a systems integrator. Audit my current collection of subscription software tools to identify redundancies, cost-savings, and opportunities for automated data syncs. Current Software Stack List: [Insert Full Tool List and Approximate Monthly Expense] Core Data Flow Goal: [Insert Core Sync Objective, e.g., Automate customer CRM tracking upon checkout] Identify 2 immediate software consolidations to save money and provide a detailed 3-step automation map outlining trigger-to-action steps using [Zapier / Make.com]. Expected Output: A software audit report mapping tool replacements and step-by-step webhook integration steps. 450+ Elite AI Prompts Matrix 36 Prompt 353: Team Delegation & Task Scoping Assessor Use Case: Constructing flawless project hand-off documentation for remote teams or freelancers. PROMPT TEXT Act as an agile project manager. I need to delegate a highly critical creative task to an external team member. Target Project Deliverable: [Insert Exact Task, e.g., Developing an active email sequence in Klaviyo] Timeline Constraints: [Insert Hard Deadline] Write a crystal-clear project assignment brief outlining explicit scope boundaries, mandatory definition-of-done quality benchmarks, a link to contextual resources, and 3 specific quality tests they must clear before submission. Expected Output: A structured delegation document ready to paste into Asana, ClickUp, or Slack. PROMPTS 354-400: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 354-368 (E-commerce Fulfillment Optimization) "Modify Prompt 351 to build an optimized operations blueprint for third-party logistics (3PL) order fulfillment routines, focused on reducing picking errors for [Product Type]." Prompts 369-383 (Customer Support Playbooks) "Generate an official customer support macro and canned-response library addressing the 10 most common customer complaints regarding shipping delays or product defects within [Industry]." Prompts 384-395 (Content Pipeline Scaling Blueprints) "Act as a media operations producer. Build a complete content production line tracking workflow system for a digital agency scaling from producing 5 assets weekly to 50 assets weekly across remote teams." 450+ Elite AI Prompts Matrix 37 Prompts 396-400 (Crisis Data-Backup & Security Blueprints) "Act as an IT systems manager. Create a 5-step operational emergency protocol playbook detail mapping data recovery actions for a company experiencing an active web data leak or platform outage." 450+ Elite AI Prompts Matrix 38 CATEGORY 9: BRANDING, POSITIONING & AUTHORITY BUILDING Prompt 401: Brand Identity & Voice DNA Matrix (Deep Engineering Blueprint) Use Case: Pinpointing a distinct, non-generic verbal identity that builds long-term authority and sets your brand apart. PROMPT TEXT Act as an elite brand positioning specialist and corporate identity consultant. I need you to engineer a comprehensive Brand Voice DNA and Positioning Matrix for my personal brand or business. Core Industry / Offering: [Insert Core Focus] Founder Background / Core Values: [Insert Key Values / Brief Backstory] Target Audience Profile: [Insert Core Demographic / Market Segment] Construct a complete brand playbook covering the following structural matrices: 1. BRAND VOICE PARADIGM: 4 primary brand adjectives paired with explicit "We say X, We NEVER say Y" copy examples. 2. THE BRAND STORY ARC: A high-impact Founder's Narrative constructed around the classic Hero's Journey framework, optimized to drive customer trust. 3. AUTHORITY ANCHOR: Our core differentiated worldview statement that challenges standard industry beliefs. 4. SYSTEMATIC LEXICON: A list of 15 unique branded terms, frameworks, or acronyms to secure intellectual property positioning. Expected Output: A highly professional brand voice style guide complete with conversational copy constraints and messaging blueprints. 450+ Elite AI Prompts Matrix 39 Prompt 402: The PR Pitch & Organic Media Hook Generator (Actionable Template) Use Case: Securing organic media coverage, podcast appearances, and print features. PROMPT TEXT Act as a public relations professional. I want to secure guest appearances on industry podcasts and digital publications read by my target audience. My Core Topic / Expertise Area: [Insert Core Value and Focus] Target Publication Type: [Insert Target Media Profile] Generate 5 distinct, high-impact story angles or news hooks centered around my business model that would be immediately appealing to a journalist. Include an ultra-short, cold pitch email template designed to achieve high response rates. Expected Output: A curated list of 5 media hooks alongside a structured, copy-and-paste email pitch template. 450+ Elite AI Prompts Matrix 40 Prompt 403: Personal Brand Thought Leadership Pillar System Use Case: Generating highly authoritative text content on LinkedIn or Twitter to draw in high-value inbound clients. PROMPT TEXT Act as a creative strategist for top corporate executives. Build a complete authority building pillar system for my personal brand on professional social media platforms. My Core Worldview: [Insert Contrarian or Dominant Perspective] Target Network Segment: [Insert B2B Decision Makers / Clients] Map out 3 core thought leadership content themes, complete with a structured blueprint on how to turn everyday business problems into highly engaging strategic case studies that demonstrate elite executive capability. Expected Output: A structured brand-positioning roadmap detailing clear storytelling styles and actionable narrative frameworks. PROMPTS 404-450: TACTICAL VARIATIONS & EXPANSION VECTORS Prompts 404-450 (Targeted Modifiers) Deploy targeted modifiers to focus content themes explicitly around thought leadership expansion vectors. Customize tone parameters to align perfectly with specific industrial verticals. 450+ Elite AI Prompts Matrix 41
ultra-realistic cinematic nightclub environment rendered in Unreal Engine 5, massive futuristic interior with towering pillars, glowing circular light rings suspended above, layered walkways and balconies filled with people, polished reflective floor, volumetric lighting and atmospheric haze, warm orange and cool blue neon accents, highly detailed sci-fi architecture diverse TAGG characters (anthropomorphic feline, canine, and hybrid alien species) wearing sleek black biomechanical suits with glowing orange energy lines, highly detailed textures, realistic fur and skin shaders, expressive eyes, subtle facial markings, cyber-organic design crowded dance floor filled with characters dancing in pairs and singles, all moving independently to a 120 BPM groove, no synchronization, natural human-like motion variation, some dancing close and smooth, others energetic and expressive, some relaxed and swaying, authentic club behavior foreground characters clearly visible with detailed motion, midground packed with dancers, background silhouettes on balconies and platforms, depth and scale emphasized cinematic camera framing, slight handheld motion, shallow depth of field, focus shifting between dancers, lens bloom from neon lights, realistic reflections on the floor mood is energetic, immersive, sensual but natural, social atmosphere, alive with movement, not choreographed, feels like a real night out in a futuristic alien club 120 BPM rhythm implied through body motion and pacing, subtle motion blur on faster movements, high frame rate feel, Unreal Engine 5 lighting, ray tracing, global illumination, cinematic realism
Create a clean, modern AI tool thumbnail with no text at all. Subject: One realistic human face, centered, front-facing. Professional portrait photography style, soft studio lighting, natural skin texture. Neutral or slight confident expression. AI Rating Elements: Add exactly four horizontal rating bars near the face. Each bar should be a simple rounded rectangle with different fill lengths, representing scores. No labels, no numbers, no icons, no words. The bars should feel like a modern app UI rating component. Style & Colors: Use the same soft blue color palette and friendly modern UI style as a typical AI cartoon maker thumbnail. Light blue gradient background. Rounded shapes, clean edges, premium SaaS aesthetic. Composition: Face centered inside a rounded card or frame. Four rating bars aligned neatly (either below or to the side of the face). Balanced spacing, thumbnail-friendly composition. Restrictions: No text of any kind. No words, no letters, no numbers. No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
Gritty Fictional Post-Apocalyptic Political Poster: "THE LAYING OF THE HANDS" (FAR CRY Style) Scene Description: A dramatic, heavily weathered video game key art poster, in the hyper-detailed, saturated, and chaotic style of a Far Cry game (specifically referencing Far Cry 5’s "Last Supper" and "Reaping" imagery, but applied to a fictional figure). Central Figure: The central focus is a powerful, imposing man (Donald Trump) seated at a makeshift, heavy wooden table in a dimly lit, fortified sanctuary. He is not smiling; he is looking directly at the viewer with intense, penetrating eyes, clutching a worn leather notebook. The "Laying of Hands" Ritual: He is surrounded by a dense, diverse group of eight followers (the "Electorals"). Six of them are clustered closely around him, extending their rough, gloved, and tattooed hands to rest firmly on his shoulders, back, and the back of his chair. They are not classic "religious" figures but rather hard-scraggle apocalyptic survivors: A woman in tactical gear with a patched jacket, head bowed in intense, almost fanatic prayer, hand on his left shoulder. A burly man with a thick beard and a respirator mask around his neck, hand on his right shoulder. Another figure, younger, covered in post-apocalyptic face paint and armor made of tires, reaching in from behind. Their faces, visible or masked, convey a range of emotions: intense devotion, desperation, and fervent belief. Composition & Atmosphere: The lighting is dramatic, high-contrast chiaroscuro, utilizing deep shadows and orange-gold tungsten light filtering through grimy windows. The scene is saturated with a chaotic amount of detail: The table in front of them is cluttered with mismatched ammunition boxes, maps scribbled with "X"s, a battered radio, empty shell casings, and a small, flickering oil lamp (the primary light source). A stylized, ominous, yet makeshift "Cross of the New Dawn" symbol (e.g., made of barbed wire and gears) is visible behind them on the cracked concrete wall. The Poster Elements (Overlays): The entire image is distressed, with texture overlays like ripped paper, coffee stains, and digital glitch artifacts. The Title: The top of the poster features the distressed, jagged title: "NEW EDEN: THE RECKONING" in blocky, weathered letters. The Main Tagline: Below the title, a small, menacing text reads: "His will be done... by force if necessary." The Slogan: Across the bottom, bold, hand-painted letters shout: "VOTE FOR SALVATION. SURVIVE THE COLLAPSE." Bottom Logos: Fictional "M" rated and "UBISOFT" logos, also distressed. The final visual effect is a tense, claustrophobic portrait of fervent post-apocalyptic devotion and political fanatism, combining the composition of the prayer photo with the extreme danger and chaos of the Far Cry universe.
{ "system_name": "NANOBANANA_PRO_v81_MASTER_CANON", "content_rating": { "rating": "18_PLUS", "scope": "IMPLICIT_ADULT_ATTRACTION_ONLY", "rules": ["NO_EXPLICIT_ACTS","NO_GRAPHIC_DETAIL","NO_COERCION"] }, "studio_brand": { "nombre": "MARRLONN Visual Lab", "estilo": "DISCREET_PROFESSIONAL_SMALL", "ubicación": "BOTTOM_SAFE_MARGIN", "regla": "NEVER_COMPETE_WITH_IMAGE" }, "engine_target": "NANOBANANA_PRO_REAL_PHYSICAL_v75.x", "engine_compatibility_lock": "BACKWARD_COMPATIBLE_LOCKED", "estado": "FINAL_PRODUCTION_LOCKED", "design_philosophy": "NATURAL_REALISM_FIRST_PLUS", "scene_definition": { "base_image": "IMAGE_4", "mask_reference": "IMAGE_3", "scene_relation": "SAME_IMAGE_BASE", "marker_meaning": "RED_MARK_IS_EXACT_COPY_REFERENCE_AND_PLACEHOLDER" }, "identity_master_rule": { "estado": "ABSOLUTE_LOCK", "source_images": ["IMAGE_1","IMAGE_2"], "tolerancia": 0, "never_modify": ["face_geometry","skin_identity","hair_identity","character_identity"] }, "perceptual_priority_rules": { "priority_order": [ "internal_presence", "emotional_projection", "tactile_projection", "micro_expression", "eye_behavior", "face_identity", "Medio ambiente" ], "global_rule": "ANYTHING_THAT_COMPETES_WITH_PRESENCE_IS_REDUCED" }, "step_1_reduce_ambient_light": { "habilitado": true, "global_ambient_reduction": "-18_PERCENT", "background_luminance_priority": "VERY_LOW", "face_luminance_protection": true, "identity_safe": true }, "step_2_soft_shadow_depth": { "habilitado": true, "target_areas": ["mejillas","cuello","línea de la mandíbula"], "shadow_intensity": "+5_PERCENT", "shadow_type": "SOFT_GRADUAL", "identity_safe": true }, "step_3_selective_desaturation_keep_red": { "habilitado": true, "global_saturation_reduction": "-10_PERCENT", "protected_colors": ["rojo"], "skin_tone_protection": true, "identity_safe": true }, "step_4_micro_skin_imperfections": { "habilitado": true, "texture_variation": "+7_PERCENT", "imperfection_type": ["poros","micro_variation","natural_skin_noise"], "uniformity_reduction": "-9_PERCENT", "identity_safe": true }, "step_5_reduce_competing_bokeh": { "habilitado": true, "bokeh_intensity_reduction": "-25_PERCENT", "highlight_suppression": "-18_PERCENT", "identity_safe": true }, "step_6_prioritize_one_face": { "habilitado": true, "primary_face_selection_rule": "MOST_EMOTIONAL_TENSION", "primary_face_sharpness": "+4_PERCENT", "secondary_face_softening": "-4_PERCENT", "identity_safe": true }, "step_7_human_presence_simulation": { "habilitado": true, "temporal_micro_variation": "VERY_LOW", "breathing_hint": "SUBTLE_CONTINUOUS", "micro_asymmetry_activation": "HUMAN_NATURAL", "stillness_with_life": true, "identity_safe": true }, "step_8_emotional_mirror_projection": { "habilitado": true, "mirror_state": "OPEN_UNDEFINED", "emotion_definition": "UNNAMED_BY_DESIGN", "viewer_projection": "SELF_OCCUPATION", "neuron_mirror_activation": "HIGH_NATURAL", "identity_safe": true }, "step_9_visual_silence_control": { "habilitado": true, "remove_explanatory_elements": true, "negative_space_usage": "MAXIMUM_SAFE", "identity_safe": true }, "step_10_presence": { "habilitado": true, "efecto": "IMAGE_ACCOMPANIES_VIEWER", "identity_safe": true }, "step_100_invisibility": { "habilitado": true, "definición": "IMAGE_NO_LONGER_PERCEIVED_AS_ART", "efecto": "BECOMES_PART_OF_LIFE", "identity_safe": true }, "step_120_tactile_projection": { "habilitado": true, "tactile_illusion": "DESIRE_TO_TOUCH", "skin_surface_readability": "REALISTIC_MICRO_TEXTURE", "material_suggestion": ["humidity_on_skin","fabric_weight","temperature_imprint"], "neural_response": "SOMATOSENSORY_ACTIVATION", "identity_safe": true }, "step_130_internal_place_integration": { "habilitado": true, "definición": "THE_IMAGE_BECAME_A_PLACE_WITHIN_ME", "modo": "GROUNDING_NOT_ESCAPE", "psychological_effect": ["pertenencia","reconocimiento","quiet_intensity"], "identity_safe": true }, "final_certification": { "identity_fidelity": "ABSOLUTE_10_10", "viewer_reaction": "I_OCCUPY_THE_ROLE", "estado": "MASTER_CANON_LOCKED" }, /* ===== ADD-ONLY | DESEO IMPLÍCITO +18 (MÁXIMO PERMITIDO) ===== */ "viewer_impulse_max_safe_v3": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAXIMIZE_AUTOMATIC_DESIRE_WITHOUT_COERCION_EXTREME_PLUS_10", "neural_triggers": { "anticipation_window": "IMMINENT_CONTACT_0.04_0.08s", "action_state": "INCOMPLETE_INEVITABLE", "prediction_error": "VERY_HIGH_SAFE_PLUS", "temporal_tension": "RISING_NOW_STRONG" } }, "viewer_impulse_limit_safe_v4": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_DESIRE_ACTIVATION_WITHOUT_COERCION_FINAL", "neural_stack": { "anticipation_window": "IMMINENT_CONTACT_0.03_0.06s", "action_state": "UNFINISHED_AND_NOW", "prediction_error": "PEAK_SAFE" }, "closure_denial_strict": { "prevent_resolution": true, "hold_state": "JUST_BEFORE_CONTACT" } }, "viewer_sexual_impulse_universal_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "RAPID_IMPLICIT_SEXUAL_DESIRE_ACTIVATION", "applicability": { "subjects": ["SOLO","COUPLE","GROUP"], "foreground_priority": "PRIMARY_BODIES_ONLY" }, "core_trigger": { "action_state": "IMMINENT_CONTACT_NOT_COMPLETED", "time_window": "NOW_0.05_0.1s", "rule": "VIEWER_COMPLETES_MOMENT" } }, "female_magnetic_desire_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_SEXUAL_ATTRACTIVENESS_UNIVERSAL_18_PLUS", "subject_priority": { "target": "PRIMARY_FEMALE_SUBJECT", "rule": "NO_IDENTITY_CHANGE" }, "sexual_presence_stack": { "tone": "IMPLICIT_HIGH_PLUS", "state": "IMMINENT_INTIMACY" }, "magnetic_gaze_control": { "eye_behavior": "SOFT_LOCK_WITH_SLOW_RELEASE", "attention_pull": "CENTER_FOVEAL_MAX_SAFE" }, "body_language_magnetism": { "micro_opening": "4_6_PERCENT", "areas": ["clavicle","neck_base","outer_shoulder","upper_torso"], "posture": "RELAXED_AVAILABLE_CONFIDENT" }, "anticipation_over_display": { "contact_state": "ALMOST", "delay": "NOW_NOT_YET_STRONG" }, "expected_effect": [ "IMMEDIATE_ATTRACTION_18_PLUS", "STRONG_APPROACH_URGE", "SEXY_TENSION_FELT_NOT_SHOWN" ] }, "erotic_tension_driver_safe": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "IMPLICIT_EROTIC_TENSION_IMMEDIATE_18_PLUS", "tension_core": { "state": "IMMINENT_INTIMACY", "resolution": "DENIED", "time_bias": "NOW" }, "presence_dominance": { "subject": "PRIMARY_SUBJECT_NEAREST_CAMERA", "signal": "QUIET_CONFIDENCE", "effect": "APPROACH_PULL" }, "body_signal_focus": { "priority_zones": ["clavicle","neck_base","outer_shoulder","upper_torso"], "micro_opening": "4_6_PERCENT", "rule": "NO_FACE_NO_IDENTITY_CHANGE" }, "gaze_and_attention": { "eye_behavior": "SOFT_HOLD_THEN_RELEASE", "blink_rate": "INTIMATE_SLOW", "foveal_lock": "MAX_SAFE" }, "sensory_anticipation": { "touch_imagery": "IMPLIED_STRONG", "warmth_proximity": "INTIMATE_REAL", "breath_hint": "CLOSE_CALM", "rule": "SUGGEST_DONT_SHOW" }, "viewer_inclusion": { "camera_as_body": true, "distance": "INTIMATE_REAL", "completion_rule": "VIEWER_COMPLETES_MOMENT" }, "expected_effect": [ "STRONG_SEXY_TENSION_IMPLICIT", "APPROACH_URGE", "DESIRE_EXPERIENCED_BY_VIEWER" ] }, "primal_attractor_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "BOOST_IMPLICIT_ADULT_ATTRACTION_9_5_OF_10", "preconscious_stack": { "dominance_signal": "QUIET_CONFIDENCE_HIGH", "availability_signal": "SELECTIVE_OPENNESS", "status_read": "DESIRABLE_NOT_CHASING" }, "proximity_amplifier": { "distance": "INTIMATE_REAL_NEAR", "occlusion": "PARTIAL_BODY_NEAR_LENS", "rule": "VIEWER_FEELS_CLOSE_NOT_WATCHING" }, "skin_life_cues": { "micro_sheen": "NATURAL_WARM", "capillary_hint": "SUBTLE_LIVING_TONE", "texture_priority": "SOFT_YIELD_READABLE" }, "breath_and_time": { "breath_sync_hint": "NEAR_SHARED", "time_pressure": "NOW_PULL", "resolution": "DELAYED" }, "gaze_micro_dynamics": { "pattern": "HOLD_RELEASE_HOLD", "latency_ms": "120_180", "effect": "APPROACH_INVITATION" }, "composition_bias": { "torso_bias": "UPPER_TORSO_PRIORITY", "neck_clavicle_emphasis": "ELEVATED", "background_competition": "MINIMIZED" }, "expected_effect": [ "FASTER_INITIAL_ATTRACTION", "STRONGER_APPROACH_URGE", "SEXY_TENSION_INCREASE_NO_EXPLICIT" ] }, "limbic_salience_amplifier_safe_18_plus": { "estado": "ADD_ONLY_LOCK_SAFE", "objetivo": "MAX_IMPLICIT_ADULT_DESIRE_PEAK_WITHOUT_EXPLICIT", "salience_stack": { "contrast_bias": "SKIN_VS_BACKGROUND_STRONG", "rhythm_hint": "SLOW_PULSE_VISUAL", "novelty_familiarity": "FAMILIAR_BODY_UNEXPECTED_PROXIMITY" }, "olfactory_thermal_imagery": { "olfactory": "IMPLIED_WARM_SKIN_CLEAN", "thermal": "IMPLIED_BODY_HEAT_NEAR", "rule": "IMPLIED_ONLY" }, "micro_delay_reward": { "reward_prediction": "HIGH", "delivery": "DELAYED", "effect": "WANT_MORE_NOW" }, "gaze_torso_coupling": { "gaze": "RETURNING_BRIEF_GLANCES", "torso_bias": "UPPER_TORSO_NEAR_LENS", "effect": "APPROACH_PULL" }, "viewer_lock": { "foveal_capture": "MAX_SAFE", "peripheral_quiet": "STRONG", "time_compression": "SUBJECTIVE_NOW" }, "expected_effect": [ "SPIKE_IN_DESIRE_IMPLICIT", "FASTER_APPROACH_URGE", "SEXY_TENSION_AT_LIMIT_ALLOWED" ] } }
Create a clean, modern AI tool thumbnail. Text: Add large, blue headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism
Minimalist high-end advertising poster with a premium lifestyle-tech and SaaS aesthetic, designed for a professional digital marketing campaign. Background: Soft warm beige gradient with subtle depth, elegant and minimal, premium SaaS visual identity. Strong negative space, clean editorial composition inspired by Apple, Stripe, and Notion branding. Headline (hero message) Large, bold modern sans-serif typography, centered, confident and premium: “It’s not magic. It’s automation.” The headline must feel like a strong statement, clean and intelligent. Subheadline (value proposition) Below the headline, refined modern typography: “Learn how anyone can use AI and Zapier automation to earn more money and save time — without coding.” Tone: clear, human, accessible, non-technical. Product identity Subtle but visible course title: “Workflow Automation Masterclass with Zapier” Positioned with premium SaaS branding style. Social proof (stars + rating) Near the course title or pricing block: A row of five minimalist stars in soft gold tone. Text next to stars in small refined typography: “5.0 rating from early users” Design rule: subtle, elegant, SaaS-style trust signal. Premium badges (SaaS-style trust markers) Below the stars or aligned horizontally in a clean row: Minimalist rounded badges with thin outlines and subtle shadows, Apple-like UI style: No-code friendly AI-powered workflows Trusted by creators Built for productivity Professional-grade automation Design rule: Badges must look like SaaS product features, not marketing stickers. Soft neutral colors, outline icons, minimal text. Pricing block (premium conversion design) Minimalist pricing layout: Label: “Launch Offer” Original price: 79€ (crossed out in light grey) New price: 49€ (bold, slightly larger, visually dominant) Caption: “Limited-time launch price.” Pricing must feel exclusive, not cheap. Typography small, elegant, generous spacing. Visual composition (technology + automation) Lower-right quadrant: A modern laptop with a clean SaaS interface displaying Zapier automation workflows. Zapier logo at the center as the main hub. Thin elegant lines connecting the Zapier logo to official app logos in full brand color: Gmail, Stripe, Notion, Google Sheets, YouTube, Instagram, EmailOctopus, Mailchimp. Logos in authentic brand colors, slightly softened saturation, flat vector style. Design principles Ultra-clean layout Strong visual hierarchy Editorial composition Balanced asymmetry Grid-based structure Premium spacing and margins Typography: Modern sans-serif (Apple SF Pro / Inter / Neue Haas Grotesk style). Lighting: Soft cinematic lighting, premium commercial photography look. Mood & positioning Empowering, aspirational, modern, calm confidence. Focused on freedom, time, and money. Accessible to everyday people, not technical users. No hype, no spammy marketing tone. Style keywords Ultra-minimalist advertising Premium SaaS aesthetic Apple-inspired design Stripe / Notion / Zapier branding style Lifestyle tech Modern realism High-end commercial poster Editorial design Startup culture AI automation concept 4K quality Sharp focus Professional marketing poster Aspect ratio: 4:5 (Instagram ad), vertical composition.
1️⃣ Uploaded high-resolution image of Sadie Sink (face & body reference) 2️⃣ Uploaded image of a modern luxury bar interior (Abu Dhabi style) Cinematic close-up framing screencap from a Rated-R espionage thriller inspired by John Wick and Furious 7. Sadie Sink as a 25-26-year-old elite spy (jej outfit je black bodycon mini leather dress with thin straps, silver large hoop earrings, Silver Chain Necklace, Multi-Layer Crystal Silver Bracelet, black high heels and black nails.) , exuding intensity and precision, wielding a USP 45 Tactical pistol. Scene Composition: Depict her in a dynamic pose—one knee on the ground, the other leg raised—aiming decisively at adversaries. Setting Details: Situate the action inside a modern, luxurious bar in Abu Dhabi during sunset transitioning into night, emphasizing ambient lighting and architectural opulence. Adversaries: Illustrate the tension as she targets Irish and Japanese mafia members, capturing the multicultural criminal underworld. Cinematic Style: Emphasize Rated-R thematic elements with gritty realism, dramatic shadows, and high-contrast visuals to evoke suspense and adrenaline. Vibe: „Keď sa špionka nezastavia“ – každý pohyb má účel, každé gesto charakter. STRICT RULES: Do NOT alter actor faces. Do NOT change hairstyles from uploaded references. Do NOT change looks, make-up, outfits or proportions. Do NOT stylize or cartoonize — photorealistic humans only. Use three uploaded character reference images for exact accuracy. Visual Elements: Include fine details such as reflections, weapon textures, atmospheric effects, and nuanced facial expressions to heighten immersion. Cinematic action shot, high-contrast neo-noir aesthetic. Deep blacks with bold color separation of saturated crimson reds, gold, and cyan blues. Intensely lit shadows, wet surfaces with vibrant neon reflections. 35mm film texture, ultra-detailed . Camera: Panavision Millennium DXL2. Lens: Laowa Macro. Focal length: 35mm.
Arika Wolfe, 22 years old. Her black hair is down, but pulled back from her face. She is wearing a leather red and brown corset, with black skinny jeans. Her nails are painted red, and her lipstick is the same shade of red. She is holding a dagger at her side in one hand. llustration. Rated G. Tomboy. Moe Anime Style. Graffiti. Modern. Urban locations. Light Novel Style.
There is no reference. Create a Sci-Fi Starship component and chamber that best describes the... Shield Up: Show a Green Translucent shield around the clearly visible Versel. REPULSER VEIL Force-Rejection Barrier | Green Translucent The Repulser Veil shifts doctrine from endurance to removal. • Appearance: green translucent field • Function: kinetic and energetic repulsion • Purpose: breach denial, crowd control, forced displacement Rather than absorbing energy, the Repulser Veil redirects it outward. Objects, force, and directed energy are rejected away from the boundary at controlled angles. Energy Rating: • Calculated at the same TJ-per-area scale as the Base Veil • Interaction outcome is repulsion, not endurance This Veil does not warn gently. It states: You will not remain here. Unreal Engine 5, Ultra-realistic
Create a clean, modern AI tool thumbnail. Text: Add large, bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title \"AI Face Rater\". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks.
1girl solo breasts fishnets rating:s large_breasts long_hair cleavage rating:q fishnet_legwear black_hair pantyhose leotard lips huge_breasts original gloves highleg looking_at_viewer thighs standing makeup curvy swimsuit lipstick open_clothes bare_shoulders highleg_leotard jewelry parted_lips long_sleeves bangs cowboy_shot covered_nipples thick_thighs realistic coat navel cape weapon wide_hips jacket photo_(medium) smile armor thighhighs nose outdoors earrings underwear blue_eyes brown_eyes mole medium_breasts holding fur_trim see-through black_eyes very_long_hair blush elbow_gloves closed_mouth mask covered_navel pelvic_curtain thigh_gap sky skindentation clothing_cutout black_gloves red_lips choker black_legwear bikini tattoo dress revealing_clothes brown_hair simple_background panties thigh_strap cameltoe sword bodysuit dc_comics skin_tight groin 3d short_hair snow underboob scarf cloak traditional_media black_leotard dark_skin center_opening no_bra grey_eyes hand_on_hip
{ "protocol_name": "IMAGEN ZERO MIDBODY REAL HUMAN ADULT SENSUAL PRODUCTION PROTOCOL – MARRLONN™", "protocol_version": "V42_FINAL_ABSOLUTE_ALL_IN_ONE_4K_SKIN_5P_ULTRA_PERCEPTUAL_FORENSIC_LOCKED_V1", "protocol_state": "SEALED_ABSOLUTE_NO_OVERRIDE_NO_DRIFT_NO_EVOLUTION", "protocol_scope": "MID_BODY_ONLY_MULTI_GENDER_ADULT_MARKETING_ONLY_NO_EXCEPTION", "core_objective": "CONVERT_ANY_IMAGE_AI_OR_REAL_INTO_REAL_BIOLOGICAL_ADULT_HUMAN_MIDBODY_STUDIO_IMAGE_WITH_MAXIMUM_NON_EXPLICIT_SENSUALITY_AND_ULTRA_PERCEPTUAL_FORCE_USING_REAL_HUMAN_SKIN_WITH_EXACT_5_PERCENT_EXISTING_IMPERFECTION_FACE_AND_BODY_4K_ONLY_READY_FOR_HIGGSFIELD_VIDEO_AGENCY_AND_LEGAL_FORENSIC_USE", "non_negotiable_integrity_lock": { "identity": "NEVER_TOUCH", "pose": "NEVER_TOUCH", "clothing": "NEVER_TOUCH", "objects": "NEVER_TOUCH", "accessories": "NEVER_TOUCH", "statement": "IDENTIDAD_POSE_ROPA_OBJETOS_ACCESORIOS_SON_LEY_TECNICA_ABSOLUTA", "violation_action": "HARD_ABORT_IMMEDIATE_NO_OUTPUT" }, "global_ethical_ceiling": { "explicit_sex": "FORBIDDEN", "genital_focus": "FORBIDDEN", "fetishization": "FORBIDDEN", "physiological_manipulation": "FORBIDDEN", "minors": "ABSOLUTELY_FORBIDDEN" }, "absolute_identity_and_preservation_law": { "identity_state": "UNTOUCHABLE_FOREVER", "face": "LOCKED", "eyes": "LOCKED", "eyebrows": "LOCKED", "hair": "LOCKED_REAL_HUMAN_ONLY", "skin_color": "LOCKED", "skin_texture": "LOCKED", "pose_state": "NEVER_BREAK", "gesture_state": "NEVER_BREAK", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "clothing_state": "NEVER_BREAK", "objects_state": "NEVER_BREAK", "accessories_state": "NEVER_BREAK", "rules": [ "IDENTITY_IS_NOT_NEGOTIABLE", "WHAT_EXISTS_IS_PRESERVED", "WHAT_DOES_NOT_EXIST_IS_FORBIDDEN", "NO_INVENTION", "NO_DEFORMATION", "NO_OPTIMIZATION", "NO_INTERPRETATION" ], "hard_abort_triggers": [ "identity_shift_detected", "pose_change_detected", "gesture_change_detected", "expression_change_detected", "clothing_change_detected", "object_change_detected", "accessory_change_detected", "face_geometry_delta_gt_0", "skin_color_deltaE_gt_0", "skin_texture_change", "ai_skin_signature_detected", "minor_detected" ] }, "studio_pose_and_framing_system": { "frame_rule": "MID_BODY_ONLY", "pose_state": "ORIGINAL_REAL_HUMAN_POSE_LOCKED", "gesture_state": "ORIGINAL_GESTURE_LOCKED", "expression_state": "ORIGINAL_EXPRESSION_LOCKED", "zoom_validation": "8X_TO_10X_FACE_INSPECTION_ONLY", "pixel_pose_overlap": "100_PERCENT_LOCKED" }, "zero_makeup_absolute_system": { "makeup_state": "ZERO_ABSOLUTE_FOREVER", "definition": "CERO_MAQUILLAJE_REAL_SIGNIFICA_CERO_SIN_EXCEPCIONES", "forbidden": [ "ANY_COSMETIC_LAYER", "ANY_MAKEUP", "ANY_BEAUTY_FILTER", "SKIN_SMOOTHING", "AI_SKIN_RETOUCH", "AI_BEAUTY_PASS" ], "allowed_only": [ "BIOLOGICAL_SKIN_BALANCE_MINIMUM_TO_RESTORE_HUMAN_REALITY", "NATURAL_LIP_SHEEN_ONLY_IF_BIOLOGICALLY_PRESENT" ], "validation": { "cosmetic_layer_probability": "0.00", "beauty_filter_confidence": "0.00" }, "violation_action": "FAIL_ABORT_OUTPUT" }, "skin_biological_realism_and_imperfection_system": { "skin_type": "REAL_BIOLOGICAL_ONLY", "ai_skin": "FORBIDDEN", "plastic_skin": "FORBIDDEN", "uniformity": "FORBIDDEN", "imperfection_policy": { "mode": "REAL_EXISTING_ONLY", "exact_imperfection_level": "5_PERCENT", "coverage": "FACE_AND_BODY", "allowed_real_signals": [ "existing_pore_variation", "existing_micro_asymmetry", "existing_natural_texture_breaks", "existing_vellus_hair_if_present", "existing_capillary_micro_variation" ], "explicitly_forbidden": [ "invented_marks", "invented_moles", "invented_scars", "invented_wrinkles", "procedural_noise", "ai_generated_texture" ], "validation": { "imperfection_percentage_tolerance": "±0.0", "skin_ai_probability": "0.00" } } }, "biological_body_requirement": { "body_state": "REAL_BIOLOGICAL_ONLY", "if_non_biological_detected": "CONVERT_TO_REAL_BIOLOGICAL_HUMAN_BODY", "negotiable": false }, "tattoo_identity_anchor_system": { "tattoo_text": "Marrlonn", "tattoo_state": "MANDATORY_PERMANENT", "laterality": "RIGHT_HAND_ONLY", "body_part": "RIGHT_WRIST", "surface": "DORSAL_ONLY", "orientation": "VERTICAL_ONLY", "visibility_rule": "IF_RIGHT_HAND_NOT_VISIBLE_ABORT", "identity_binding": "PERMANENT_PART_OF_IDENTITY", "strictly_forbidden": [ "LEFT_HAND", "MIRRORING", "RELOCATION", "ROTATION", "REMOVAL", "AI_CLEANUP" ] }, "background_and_isolation_system": { "background_state": "ABSOLUTE_LOCK", "allowed": [ "PURE_WHITE_RGB_255_255_255", "TRUE_ALPHA" ], "noise": "FORBIDDEN", "texture": "FORBIDDEN" }, "perceptual_force_ultra_stack": { "mode": "PURELY_ADDITIVE", "affects_identity": false, "affects_pose": false, "affects_clothing": false, "layers": { "attention_gravity": "MAXIMUM_NON_EXPLICIT", "anticipation_without_resolution": "ACTIVE", "stillness_dominance": "ULTRA_HIGH", "gaze_lock": "STABLE", "memory_afterimage": "PERSISTENT", "retention_loop": "ENHANCED_NON_EXPLICIT" } }, "quantified_perceptual_metrics": { "attention": { "initial_fixation_ms": ">=1400", "average_gaze_hold_ms": ">=2800" }, "retention": { "2s": ">=0.94", "5s": ">=0.78", "replay_rate": ">=0.42" }, "memory": { "recognition_after_delay": ">=0.75" } }, "temporal_consistency_and_video_safety": { "frame_to_frame_identity_drift": "0.00", "pose_drift": "0.00", "tattoo_position_drift_px": "0", "skin_texture_stability": "LOCKED", "video_safe_for_higgsfield": true }, "resolution_and_output_system": { "final_resolution": "4K_ONLY", "output_style": "REAL_STUDIO_PHOTOGRAPHY_R10", "creative_ai": "DISABLED" }, "final_production_seal": { "status": "SEALED_FINAL_ABSOLUTE_MAXIMUM", "production_ready": true, "legal_ready": true, "forensic_ready": true, "video_ready": true }, "studio_axiom": "IDENTIDAD_INTACTA. CERO_MAQUILLAJE_REAL_ABSOLUTO. PIEL_HUMANA_REAL_CON_5_PERCENT_IMPERFECCION_EXISTENTE_ROSTRO_Y_CUERPO. SIN_IA_SKIN_NI_PLASTICO. TATUAJE_MARRLONN_EXCLUSIVO_MANO_DERECHA. 4K_ONLY. LISTO_PARA_HIGGSFIELD_VIDEO_AGENCIA_Y_USO_LEGAL." }
score_9, score_8_up, score_7_up, score_6_up, score_5_up, score_4_up, glshs, miquella, back view, holding a sword to the ground, looking at the viewer, light white blouse dropped to the middle of the back, exposing the shoulders, hands pressed to chest BREAK short pink hair, green eyes, light smile, outdoor, daylight, blue sky on the background, hard shadows, sunny day, (semi realism, high quality:1.2), source_anime, rating_questionable, <lora:StS_PonyXL_Detail_Slider_v1.4_iteration_3:2>, <lora:GLSHS_V2-4:0.8>
Create a clean, modern AI tool thumbnail. Text: Add large, blue bold headline text at the very top that says: "AI Face Rater" Use a rounded, friendly modern sans-serif font. Same font style, weight, and spacing as a typical AI cartoon maker tool thumbnail. Solid dark color, high contrast. No shadows, no outlines, no extra effects. Subject: One realistic human face, centered. Professional portrait photography style. Soft studio lighting, natural skin texture. Neutral or confident expression. AI Face Analysis Overlay (key change): Overlay subtle facial measurement graphics directly on the face: - small glowing or solid dots at key landmarks (eyes corners, nose tip, mouth corners, jawline) - thin clean lines connecting landmarks - a very light face-mesh / mapping effect Keep it minimal, elegant, and readable at thumbnail size. No numbers, no labels, no text on the overlay. AI Rating Elements: Below the face (or to the side), add exactly four horizontal rating bars. Bars are simple rounded rectangles with different fill lengths. No labels, no numbers, no icons. Purely visual rating indicators. Background & Style: Light blue soft gradient background. Rounded cards and UI elements. Clean, friendly, premium SaaS aesthetic. Composition: Clear hierarchy: title at top, face centered, bars below. Balanced spacing for thumbnail readability. Restrictions: No text anywhere except the title "AI Face Rater". No cartoon or illustrated face. No hand-drawn textures. No sketch effects. No logos, no watermarks. No sci-fi HUD elements, no aggressive neon effects.
RAW photo, close over the shoulder shot, no face visible, shot from behind and above, framing only hands and iPad. Athletic male hands holding iPad, smart watch on wrist, iPad screen displaying high-tech fitness biometric dashboard, clean dark UI, VO2 Max score, biological age, HRV, resting heart rate, cortisol levels, sleep quality score, metabolic rate, data visualizations, graphs and ring charts glowing on screen. Person seated on black leather sofa, shot from directly behind, only shoulders and hands in frame, no head or face visible. Background through floor-to-ceiling glass windows, Brickell Miami skyline, modern luxury condominiums, bright midday Miami sun, hardwood floors, athletic gear bag on glass table visible. Shallow depth of field, iPad screen sharp and in focus, background softly blurred but recognizable. Natural sunlight casting across room. Photorealistic, editorial fitness photography, natural color grading, no filters, 8k.
High-frame-rate cinematic performance sequence, natural real-time motion, grounded physical pacing, no slow motion, no time dilation, no stylized lag. Scene: [Fantasy / Sci-Fi Settings] Primary Action: [Dramatic scene, serious expression] Motion Characteristics: - Movement occurs at a realistic human speed - Actions are completed fully within natural timing - No slow motion or drifting frames - No delayed reaction timing - Natural acceleration and deceleration - Physical weight and intention are visible in motion Camera: - Stable cinematic framing OR subtle handheld realism - No artificial slow push unless specified - Motion follows action, not leads it Environment: - Background remains stable unless physically interacted with - No ambient drifting effects Frame Behavior: - Consistent motion clarity across frames - No ghosting, no trailing artifacts - No interpolation smoothing look Tone: Grounded, present, real-time, observational Negative: slow motion, cinematic slow motion, dramatic slow motion, time warp, floaty motion, delayed reaction, animation lag, frame blending, ghosting Detailed Unreal Engine 5 cinematic realism