.fv-hero-cinematic.hero-section {
    background: radial-gradient(circle at 70% 40%, #1B2A49 0%, #0B1020 60%, #05070F 100%);
    min-height: var(--viewport-min-height, 100vh);
    display: flex;
    align-items: center;
    padding: var(--space-5, 32px) var(--space-4, 24px);
    isolation: isolate;
    overflow: hidden;
}

/* FlameVerse Hero Parallax v1 - GPU hints (desktop only) */
@media (min-width: 1024px) {
    .fv-hero-cinematic .hero-bg {
        will-change: transform;
        transform: translate3d(0, 0, 0);
    }
    .fv-hero-cinematic .hero__visual,
    .fv-hero-cinematic .fv-hero-visual-wrap {
        will-change: transform;
        transform: translate3d(0, 0, 0);
    }
}

/* Subtle vignette overlay - depth, no click impact */
.fv-hero-cinematic .vignette {
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.22) 100%) !important;
    opacity: 1 !important;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT & CONTAINER
   ═══════════════════════════════════════════════════════════ */

.fv-hero-cinematic .hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    column-gap: 56px;
    row-gap: 32px;
    position: relative;
    z-index: 5;
}

/* Neural network background layer - subtle AI data-infrastructure aesthetic */
.fv-hero-cinematic .hero-neural-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.fv-hero-cinematic #neuralCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Radial fade overlay - Theme v2: Deep Night tint */
.fv-hero-cinematic .hero-neural-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        transparent 25%,
        rgba(11, 16, 32, 0.4) 70%,
        rgba(5, 7, 15, 0.85) 100%
    );
    pointer-events: none;
}


@media (prefers-reduced-motion: reduce) {
    .fv-hero-cinematic.hero-section::before,
    .fv-hero-cinematic.hero-section::after {
        animation: none;
    }
    .fv-hero-cinematic .fv-hero-line1::after {
        animation: none;
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   TEXT CONTENT - Typography hierarchy
   ═══════════════════════════════════════════════════════════ */

.fv-hero-cinematic .hero__copy {
    max-width: 580px;
    position: relative;
}

/* Soft haze behind text - Theme v2: violet accent */
.fv-hero-cinematic .hero__copy::before {
    content: '';
    position: absolute;
    inset: -20% -10% -20% -15%;
    background: radial-gradient(
        ellipse 80% 100% at 20% 50%,
        rgba(139, 92, 246, 0.05) 0%,
        transparent 60%
    );
    filter: blur(40px);
    -webkit-filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

/* Line 1 - Main headline - Theme v2: Soft Ice #EAF0FF */
.fv-hero-cinematic .fv-hero-line1 {
    font-family: var(--font-primary, 'Manrope', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #EAF0FF;
    margin: 0 0 0.6rem 0;
    letter-spacing: -0.5px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 0 20px rgba(139, 92, 246, 0.04);
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    animation: fv-hero-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fv-hero-cinematic .fv-hero-line1::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    animation-delay: 3s;
}

/* Emphasis on "Αόρατα" - color, letter-spacing, bold */
.fv-hero-cinematic .fv-hero-emphasis {
    color: #8B5CF6;
    letter-spacing: 0.12em;
    font-weight: 700;
}

/* Line 2 - Statement - Theme v2: Muted Slate #9AA4C3 */
.fv-hero-cinematic .fv-hero-line2 {
    font-family: var(--font-primary, 'Manrope', sans-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 600;
    line-height: 1.65;
    color: #9AA4C3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0 0 1.25rem 0;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    animation: fv-hero-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Line 3 - Combined statement - Theme v2: Muted Slate #9AA4C3 */
.fv-hero-cinematic .fv-hero-line3 {
    font-family: var(--font-primary, 'Manrope', sans-serif);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.7;
    color: #9AA4C3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0 0 1.75rem 0;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    animation: fv-hero-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fv-hero-reveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Skip cinematic - instant reveal */
.fv-hero-cinematic.fv-hero-skip-anim .fv-hero-line1,
.fv-hero-cinematic.fv-hero-skip-anim .fv-hero-line2,
.fv-hero-cinematic.fv-hero-skip-anim .fv-hero-line3 {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fv-hero-cinematic .fv-hero-line1,
    .fv-hero-cinematic .fv-hero-line2,
    .fv-hero-cinematic .fv-hero-line3 {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */

.fv-hero-cinematic .fv-hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fv-hero-reveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.fv-hero-cinematic .fv-hero-chips {
    opacity: 0;
    transform: translateY(12px);
    animation: fv-hero-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

.fv-hero-cinematic.fv-hero-skip-anim .fv-hero-cta-wrap,
.fv-hero-cinematic.fv-hero-skip-anim .fv-hero-chips {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fv-hero-cinematic .fv-hero-cta-wrap,
    .fv-hero-cinematic .fv-hero-chips {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Primary CTA - Theme v2: Electric Violet gradient */
.fv-hero-cinematic .fv-hero-cta,
.fv-hero-cinematic .fv-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-primary, 'Manrope', sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, #8B5CF6, #5B21B6);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.35);
}

.fv-hero-cinematic .fv-hero-cta:hover,
.fv-hero-cinematic .fv-hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5) !important;
}

/* Secondary CTA - Theme v2: transparent, violet border */
.fv-hero-cinematic .fv-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.25rem;
    font-family: var(--font-primary, 'Manrope', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: #EAF0FF;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.55);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.fv-hero-cinematic .fv-hero-cta-secondary:hover {
    border-color: rgba(139, 92, 246, 0.8);
    background: rgba(139, 92, 246, 0.12);
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.2);
    color: #EAF0FF;
}

/* ═══════════════════════════════════════════════════════════
   CHIPS (below CTA, rounded pills, subtle glow)
   ═══════════════════════════════════════════════════════════ */

.fv-hero-cinematic .fv-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.fv-hero-cinematic .fv-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.75rem;
    font-family: var(--font-primary, 'Manrope', sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    color: #9AA4C3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.fv-hero-cinematic .fv-hero-chip:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.06);
}

/* ═══════════════════════════════════════════════════════════
   FLAMEY (float, glow pulse, light network lines)
   ═══════════════════════════════════════════════════════════ */

.fv-hero-cinematic .hero__visual,
.fv-hero-cinematic .fv-hero-visual-wrap {
    position: relative;
    height: clamp(320px, 45vh, 480px);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 100%;
}

/* Flamey - Theme v2: subtle violet glow only */
.fv-hero-cinematic .fv-hero-visual-inner {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.3));
    animation: fv-hero-flamey-float 4s ease-in-out infinite;
}

@keyframes fv-hero-flamey-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Bokeh dust - μόνο κοντά στον Flamey */
.fv-hero-cinematic .fv-hero-bokeh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fv-hero-cinematic .fv-bokeh-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(57, 242, 255, 0.25);
    animation: fv-hero-bokeh-float 8s ease-in-out infinite;
}

.fv-hero-cinematic .fv-bokeh-1 { left: 72%; top: 35%; animation-delay: 0s; }
.fv-hero-cinematic .fv-bokeh-2 { left: 78%; top: 55%; animation-delay: 2s; }
.fv-hero-cinematic .fv-bokeh-3 { left: 68%; top: 48%; animation-delay: 4s; }
.fv-hero-cinematic .fv-bokeh-4 { left: 82%; top: 42%; animation-delay: 1s; }

@keyframes fv-hero-bokeh-float {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    50% { transform: translate(3px, -4px); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
    .fv-hero-cinematic .fv-hero-visual-inner {
        animation: none;
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.3));
    }
    .fv-hero-cinematic .fv-bokeh-dot {
        animation: none;
        opacity: 0.15;
    }
}

/* ═══════════════════════════════════════════════════════════
   SKIP CINEMATIC LINK
   ═══════════════════════════════════════════════════════════ */

.fv-hero-skip-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    color: rgba(200, 210, 255, 0.5);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    z-index: 10;
}

.fv-hero-skip-link:hover {
    color: rgba(229, 233, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .fv-hero-cinematic.hero-section {
        min-height: auto;
        padding: 2rem 1.25rem 2.5rem;
    }

    .fv-hero-cinematic .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        row-gap: 24px;
    }

    .fv-hero-cinematic .hero__copy {
        max-width: 100%;
    }

    .fv-hero-cinematic .hero__visual {
        order: 1;
        height: clamp(220px, 35vh, 320px);
        justify-content: center;
    }

    .fv-hero-cinematic .fv-hero-visual-inner {
        background-position: center;
    }

    .fv-hero-cinematic .fv-hero-cta-wrap {
        display: flex;
        justify-content: center;
    }

    .fv-hero-cinematic .fv-hero-chips {
        justify-content: center;
    }

    .fv-hero-skip-link {
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .fv-hero-cinematic .fv-hero-chip {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }
    /* Theme v2: crisp contrast on mobile */
    .fv-hero-cinematic .fv-hero-line1 {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35), 0 0 24px rgba(139, 92, 246, 0.05);
    }
    .fv-hero-cinematic .fv-hero-line2,
    .fv-hero-cinematic .fv-hero-line3 {
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }
}
