/* =============================================================
   Calik X · ElevenLabs-style Showcase Carousel + Screenshots
   3-Slide Multi-AI Feature Showcase · App Screenshot Section
   ============================================================= */

/* ── SHOWCASE WRAPPER ── */
.cx-showcase-wrap {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.cx-showcase-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(10,132,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 100%, rgba(191,90,242,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.cx-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.cx-showcase-eyebrow {
    font-size: 11px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    display: block;
}
.cx-showcase-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
}
.cx-showcase-lead {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── CAROUSEL FRAME ── */
.cx-showcase-carousel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 60px;
}

/* SLIDE TABS */
.cx-showcase-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}
.cx-showcase-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cx-showcase-tab:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.cx-showcase-tab.is-active {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.cx-showcase-tab-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.cx-showcase-tab.is-active .cx-showcase-tab-dot {
    background: #0a84ff;
    box-shadow: 0 0 8px rgba(10,132,255,0.8);
}
.cx-showcase-tab:nth-child(2).is-active .cx-showcase-tab-dot { background: #bf5af2; box-shadow: 0 0 8px rgba(191,90,242,0.8); }
.cx-showcase-tab:nth-child(3).is-active .cx-showcase-tab-dot { background: #30d158; box-shadow: 0 0 8px rgba(48,209,88,0.8); }

/* ── SLIDE CONTAINER ── */
.cx-showcase-slides {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,14,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    min-height: 440px;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.cx-showcase-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
    transform: translateX(40px);
}
.cx-showcase-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    position: relative;
}
.cx-showcase-slide.is-exiting {
    opacity: 0;
    transform: translateX(-40px);
}

/* SLIDE LEFT PANEL (text + controls) */
.cx-slide-left {
    flex: 0 0 42%;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.cx-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    width: fit-content;
}
.cx-slide-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #0a84ff;
    animation: cx-pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes cx-pulse-dot {
    0%,100% { opacity:1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.6); }
}
.cx-slide-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 14px;
}
.cx-slide-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0 0 28px;
}
.cx-slide-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: all 0.3s ease;
    width: fit-content;
}
.cx-slide-action:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateX(3px);
}
.cx-slide-action svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* SLIDE RIGHT PANEL (animation) */
.cx-slide-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

/* ==============================
   SLIDE 1 — IMAGE GENERATION
   ============================== */
.cx-imggen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 0;
}

/* Prompt box */
.cx-imggen__prompt {
    width: 100%;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
}
.cx-imggen__prompt-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}
.cx-imggen__prompt-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-family: 'SF Mono', 'Fira Code', monospace;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #0a84ff;
    animation: cx-type-cursor 1s step-end infinite;
}
@keyframes cx-type-cursor { 0%,100% { border-color: #0a84ff; } 50% { border-color: transparent; } }

.cx-imggen__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    width: 100%;
}
.cx-imggen__status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #0a84ff;
    box-shadow: 0 0 8px #0a84ff;
    animation: cx-pulse-dot 1s ease-in-out infinite;
}

/* Generated images */
.cx-imggen__images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    width: 100%;
    flex: 1;
}
.cx-imggen__img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    animation: cx-img-appear 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
    opacity: 0;
    transform: scale(0.85);
}
.cx-imggen__img:nth-child(1) { animation-delay: 0.5s; }
.cx-imggen__img:nth-child(2) { animation-delay: 0.8s; }
.cx-imggen__img:nth-child(3) { animation-delay: 1.1s; }
@keyframes cx-img-appear {
    to { opacity: 1; transform: scale(1); }
}
.cx-imggen__img:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.7);
    z-index: 1;
}
.cx-imggen__img-inner {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
    display: flex;
    align-items: flex-end;
}
/* AMAZON RAINFOREST - CSS art */
.cx-imggen__img--forest .cx-imggen__img-inner {
    background:
        radial-gradient(ellipse at 50% -20%, rgba(255,200,50,0.6) 0%, transparent 50%),
        linear-gradient(180deg, #0a3d1a 0%, #1a6b2a 25%, #2d8a3e 50%, #1a6b2a 75%, #0a2d0f 100%);
}
.cx-imggen__img--forest .cx-imggen__img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='180'%3E%3Cellipse cx='20' cy='180' rx='12' ry='60' fill='%23084' opacity='0.8'/%3E%3Cellipse cx='50' cy='180' rx='14' ry='80' fill='%23062' opacity='0.9'/%3E%3Cellipse cx='80' cy='180' rx='10' ry='50' fill='%23094' opacity='0.7'/%3E%3Cellipse cx='100' cy='180' rx='15' ry='70' fill='%23052' opacity='0.8'/%3E%3Cellipse cx='20' cy='100' rx='28' ry='20' fill='%230a5' opacity='0.6'/%3E%3Cellipse cx='70' cy='80' rx='32' ry='22' fill='%230a6' opacity='0.5'/%3E%3Cellipse cx='100' cy='110' rx='24' ry='18' fill='%230b4' opacity='0.6'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 120px 180px;
}
/* LOGO DESIGN - CSS art */
.cx-imggen__img--logo .cx-imggen__img-inner {
    background: linear-gradient(135deg, #0a0a1a 0%, #0d0d2b 50%, #0a0a1a 100%);
    align-items: center; justify-content: center;
}
.cx-imggen__img--logo .cx-imggen__img-inner::before {
    content: '';
    position: absolute;
    width: 70%; height: 70%;
    border-radius: 20%;
    background: linear-gradient(135deg, #0a84ff 0%, #bf5af2 50%, #ff375f 100%);
    box-shadow: 0 0 40px rgba(10,132,255,0.5), 0 0 80px rgba(191,90,242,0.3);
    animation: cx-logo-spin 8s linear infinite;
}
@keyframes cx-logo-spin {
    0% { transform: rotate(0deg) scale(0.9); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(0.9); }
}
.cx-imggen__img--logo .cx-imggen__img-inner::after {
    content: 'AI';
    position: absolute;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
    z-index: 1;
    letter-spacing: -0.05em;
}
/* GAMING FACE - CSS art */
.cx-imggen__img--face .cx-imggen__img-inner {
    background: linear-gradient(180deg, #120820 0%, #1a0d30 40%, #0d1520 100%);
    align-items: center; justify-content: center;
    overflow: hidden;
}
.cx-imggen__img--face .cx-imggen__img-inner::before {
    content: '';
    position: absolute;
    width: 75%; height: 90%;
    border-radius: 38% 38% 30% 30%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0,200,255,0.4) 0%, transparent 40%),
        linear-gradient(180deg, #1a3a5c 0%, #0d2040 50%, #07111e 100%);
    box-shadow:
        0 0 30px rgba(0,200,255,0.3),
        inset 0 0 20px rgba(0,100,200,0.3);
}
.cx-imggen__img--face .cx-imggen__img-inner::after {
    content: '';
    position: absolute;
    width: 35%; height: 12%;
    top: 38%;
    border-radius: 50%;
    background: rgba(0,220,255,0.7);
    box-shadow: 0 0 20px rgba(0,200,255,0.9), 0 0 40px rgba(0,180,255,0.5);
    animation: cx-face-glow 2s ease-in-out infinite alternate;
}
@keyframes cx-face-glow {
    0% { opacity: 0.6; transform: scaleX(0.9); }
    100% { opacity: 1; transform: scaleX(1.1); }
}

.cx-imggen__img-label {
    position: relative;
    z-index: 2;
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    padding: 6px 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
}

/* ==============================
   SLIDE 2 — MULTI AGENT
   ============================== */
.cx-agents-canvas {
    width: 100%; height: 100%;
    position: relative;
    min-height: 340px;
}
/* Central orchestrator */
.cx-agent-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a84ff, #bf5af2);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 8px rgba(10,132,255,0.15), 0 0 0 16px rgba(10,132,255,0.07);
    animation: cx-hub-pulse 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes cx-hub-pulse {
    0%,100% { box-shadow: 0 0 0 8px rgba(10,132,255,0.15), 0 0 0 16px rgba(10,132,255,0.07); }
    50% { box-shadow: 0 0 0 14px rgba(10,132,255,0.2), 0 0 0 28px rgba(10,132,255,0.1); }
}
.cx-agent-hub svg { width: 28px; height: 28px; fill: #fff; }
.cx-agent-hub-label {
    position: absolute;
    bottom: -20px;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

/* Agent nodes */
.cx-agent-node {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(20,20,28,0.9);
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 2px;
    cursor: default;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    animation: cx-agent-appear 0.6s cubic-bezier(0.22,1,0.36,1) backwards;
}
.cx-agent-node.is-active {
    border-color: rgba(10,132,255,0.7);
    box-shadow: 0 0 20px rgba(10,132,255,0.4);
    transform: scale(1.15);
}
.cx-agent-node-icon { width: 20px; height: 20px; }
.cx-agent-node-icon svg { width: 100%; height: 100%; stroke: rgba(255,255,255,0.7); stroke-width: 1.5; fill: none; }
.cx-agent-node-label {
    font-size: 8px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    position: absolute;
    bottom: -16px;
    white-space: nowrap;
}
/* Connection lines */
.cx-agent-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
/* Message bubbles */
.cx-agent-msg {
    position: absolute;
    padding: 4px 9px;
    border-radius: 10px;
    font-size: 10px;
    color: rgba(255,255,255,0.85);
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    animation: cx-msg-fly 3s ease-in-out infinite;
    z-index: 3;
}
.cx-agent-msg--blue { background: rgba(10,132,255,0.3); border: 1px solid rgba(10,132,255,0.4); }
.cx-agent-msg--purple { background: rgba(191,90,242,0.3); border: 1px solid rgba(191,90,242,0.4); }
.cx-agent-msg--green { background: rgba(48,209,88,0.3); border: 1px solid rgba(48,209,88,0.4); }
@keyframes cx-msg-fly {
    0% { opacity: 0; transform: translateY(8px) scale(0.8); }
    20%,70% { opacity: 1; transform: none; }
    100% { opacity: 0; transform: translateY(-8px) scale(0.8); }
}

/* Output card */
.cx-agent-output {
    position: absolute;
    bottom: 16px; right: 16px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(10,10,20,0.9);
    border: 1px solid rgba(48,209,88,0.3);
    box-shadow: 0 0 20px rgba(48,209,88,0.15);
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    animation: cx-output-appear 1s cubic-bezier(0.22,1,0.36,1) 3s both;
    z-index: 4;
}
@keyframes cx-output-appear {
    from { opacity: 0; transform: translateY(12px) scale(0.9); }
    to { opacity: 1; transform: none; }
}
.cx-agent-output-title {
    font-size: 10px;
    color: #30d158;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* ==============================
   SLIDE 3 — TEXT TO SPEECH
   ============================== */
.cx-tts-demo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 8px 0;
}
.cx-tts-prompt {
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 16px;
}
.cx-tts-prompt-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 7px;
}
.cx-tts-prompt-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.cx-tts-voice-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.cx-tts-voice-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a84ff, #bf5af2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cx-tts-voice-avatar svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; fill: none; }
.cx-tts-voice-info { flex: 1; }
.cx-tts-voice-name { font-size: 13px; font-weight: 600; color: #fff; }
.cx-tts-voice-type { font-size: 11px; color: rgba(255,255,255,0.45); }
.cx-tts-play-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a84ff, #bf5af2);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.cx-tts-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(10,132,255,0.6);
}
.cx-tts-play-btn svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2; fill: none; }

/* Waveform */
.cx-tts-waveform {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 16px;
    position: relative;
}
.cx-tts-waveform-bar {
    flex: 1;
    max-width: 4px;
    border-radius: 999px;
    background: rgba(10,132,255,0.6);
    transition: height 0.1s ease;
    transform-origin: center;
}
.cx-tts-waveform.is-playing .cx-tts-waveform-bar {
    animation: cx-wave 0.8s ease-in-out infinite alternate;
}
@keyframes cx-wave {
    0% { height: 4px; }
    100% { height: var(--wave-h, 32px); }
}

.cx-tts-models {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.cx-tts-model {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.2s ease;
}
.cx-tts-model:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.cx-tts-model.is-active { background: rgba(10,132,255,0.12); border-color: rgba(10,132,255,0.3); }
.cx-tts-model-name { font-size: 12px; font-weight: 600; color: #fff; }
.cx-tts-model-desc { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── NAV ARROWS ── */
.cx-showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(20,20,28,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: rgba(255,255,255,0.7);
}
.cx-showcase-arrow:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}
.cx-showcase-arrow--left { left: 8px; }
.cx-showcase-arrow--right { right: 8px; }
.cx-showcase-arrow svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ── DOTS INDICATOR ── */
.cx-showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.cx-showcase-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}
.cx-showcase-dot.is-active {
    background: #fff;
    width: 24px;
    border-radius: 3px;
}

/* ============================================
   APP SCREENSHOTS SECTION
   ============================================ */
.cx-screenshots-section {
    padding: 80px 0 100px;
    position: relative;
}
.cx-screenshots-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 30% 50%, rgba(191,90,242,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cx-screenshots-header {
    max-width: 1100px;
    margin: 0 auto 48px;
    padding: 0 40px;
}
.cx-screenshots-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cx-screenshot-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    background: rgba(10,10,15,0.8);
    /* Hardware-accelerated hover transform */
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform;
    aspect-ratio: 16/10;
}
.cx-screenshot-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.18);
    z-index: 2;
}
.cx-screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.cx-screenshot-card:hover img {
    transform: scale(1.03);
}
.cx-screenshot-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.cx-screenshot-card:hover .cx-screenshot-card__overlay { opacity: 1; }
.cx-screenshot-card__label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}
.cx-screenshot-card__sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ── FULLSCREEN VIEWER ── */
#cx-img-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
#cx-img-viewer.is-open {
    opacity: 1;
    pointer-events: auto;
}
#cx-img-viewer img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.9);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#cx-img-viewer.is-open img { transform: scale(1); }
#cx-img-viewer-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    transition: all 0.2s ease;
}
#cx-img-viewer-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .cx-showcase-slide { flex-direction: column; }
    .cx-slide-left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 28px 24px 20px;
    }
    .cx-slide-right { min-height: 260px; }
    .cx-screenshots-grid { grid-template-columns: 1fr; }
    .cx-showcase-carousel { padding: 0 48px; }
    .cx-showcase-tabs { flex-wrap: wrap; }
}
@media (max-width: 560px) {
    .cx-showcase-wrap { padding: 56px 0 72px; }
    .cx-screenshots-section { padding: 56px 0 72px; }
    .cx-screenshots-grid, .cx-screenshots-header { padding: 0 20px; }
    .cx-showcase-carousel { padding: 0 40px; }
}
